Метод | Описание | |
---|---|---|
Optimizer ( |
Initializes a new Optimizer using the default values. Theta to optimize. Maximum number of iterations. Learning Rate (alpha) (Optional). Momentum parameter for use in accelerated methods (Optional). Type of optimization method to use (Optional). An external typed optimization method to use (Optional).
|
|
Run ( ) : void |
Runs the optimization routine for the set number of iterations.
|
|
RunAsync ( ) : System.Threading.Tasks.Task |
Runs the optimization routine for the set number of iterations.
|
|
Step ( ) : void |
Performs a single step of the optimization routine.
|
public Optimizer ( |
||
theta | ||
maxIterations | int | |
learningRate | double | |
momentum | double | |
optimizationMethod | OptimizationMethods | |
optimizer | ||
Результат | System |
public RunAsync ( ) : System.Threading.Tasks.Task | ||
Результат | System.Threading.Tasks.Task |