Table of Contents

Class HyperParameters

Namespace
Glitch9.AIDevKit

The hyperparameters used for the fine-tuning job.

public class HyperParameters
Inheritance
object
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.

public int BatchSize { get; set; }

Property Value

int

LearningRateMultiplier

Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.

public float LearningRateMultiplier { get; set; }

Property Value

float

NEpochs

The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.

public int NEpochs { get; set; }

Property Value

int