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