Enum GpuOptimizerType
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Enumerates the types of GPU-optimized optimizers available.
public enum GpuOptimizerType
Fields
Adagrad = 4Adagrad optimizer with accumulated squared gradients.
Adam = 1Adam optimizer with adaptive learning rates.
AdamW = 2AdamW optimizer with decoupled weight decay.
Lamb = 7Layer-wise Adaptive Moments optimizer.
Lars = 6Layer-wise Adaptive Rate Scaling.
Nag = 5Nesterov Accelerated Gradient with lookahead.
RmsProp = 3RMSprop optimizer with moving average of squared gradients.
Sgd = 0Simple SGD with optional momentum.