Class HyperParameters
The hyperparameters used for the fine-tuning job.
public class HyperParameters
- Inheritance
-
objectHyperParameters
Properties
BatchSize
Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.
public string BatchSize { get; set; }
Property Value
- string
LearningRateMultiplier
Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.
public string LearningRateMultiplier { get; set; }
Property Value
- string
NEpochs
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
public string NEpochs { get; set; }
Property Value
- string