Class HyperParameters
The hyperparameters used for the fine-tuning job.
Inherited Members
Namespace: Glitch9.AIDevKit
Assembly: Glitch9.AIDevKit.dll
Syntax
[JsonConverter(typeof(HyperParametersConverter))]
public class HyperParameters
Properties
| Edit this page View SourceBatchSize
Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.
Declaration
[JsonProperty("batch_size")]
public int BatchSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
LearningRateMultiplier
Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.
Declaration
[JsonProperty("learning_rate_multiplier")]
public float LearningRateMultiplier { get; set; }
Property Value
| Type | Description |
|---|---|
| float |
NEpochs
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
Declaration
[JsonProperty("n_epochs")]
public int NEpochs { get; set; }
Property Value
| Type | Description |
|---|---|
| int |