Show / Hide Table of Contents

Class VanillaTrainingConfig

The Vanilla training method hyperparameters.

Inheritance
object
TrainingConfig
VanillaTrainingConfig
Inherited Members
TrainingConfig.TotalTrainingEpochs
TrainingConfig.LearningRate
TrainingConfig.TrainingBatchSize
TrainingConfig.EarlyStoppingPatience
TrainingConfig.EarlyStoppingThreshold
TrainingConfig.LogModelMetricsIntervalInSteps
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class VanillaTrainingConfig : TrainingConfig

Properties

NumOfLastLayers

Declaration
[JsonProperty(PropertyName = "numOfLastLayers")]
public int? NumOfLastLayers { get; set; }
Property Value
Type Description
int?

The number of last layers to be fine-tuned.

In this article
Back to top