5 implementations of Process
Microsoft.ML.Core (4)
Environment\HostEnvironmentBase.cs (3)
65public virtual TException Process<TException>(TException ex) 196public override TException Process<TException>(TException ex) 514public override TException Process<TException>(TException ex)
Utilities\Contracts.cs (1)
189public TException Process<TException>(TException ex) where TException : Exception
Microsoft.ML.Data (1)
MLContext.cs (1)
166TException IExceptionContext.Process<TException>(TException ex) => _env.Process(ex);
8 references to Process
Microsoft.ML.Core (3)
Utilities\Contracts.cs (3)
93ex = ectx != null ? ectx.Process(ex) : Mark(ex); 168/// We will run this instances <see cref="IExceptionContext.Process{TException}(TException)"/> first. 192ex = Inner?.Process(ex) ?? ex;
Microsoft.ML.StandardTrainers (5)
Optimizer\L1Optimizer.cs (1)
202throw ch.Process(new PrematureConvergenceException(this, "Directional derivative is zero. You may be sitting on the optimum."));
Optimizer\Optimizer.cs (4)
361throw Ch.Process(new PrematureConvergenceException(this, "ro equals zero. Is your function linear?")); 386throw ch.Process(new PrematureConvergenceException(this, "Directional derivative is zero. You may be sitting on the optimum.")); 508throw ch.Process(new PrematureConvergenceException(this, "Step size interval numerically zero.")); 525throw ch.Process(new PrematureConvergenceException(this, "Step size interval numerically zero."));