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