Show / Hide Table of Contents

Class FineTuneDetails

Details about fine-tuning a custom model.

Inheritance
object
FineTuneDetails
Inherited Members
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 FineTuneDetails

Properties

DedicatedAiClusterId

Declaration
[Required(ErrorMessage = "DedicatedAiClusterId is required.")]
[JsonProperty(PropertyName = "dedicatedAiClusterId")]
public string DedicatedAiClusterId { get; set; }
Property Value
Type Description
string

The OCID of the dedicated AI cluster this fine-tuning runs on.

Remarks

Required

TrainingConfig

Declaration
[JsonProperty(PropertyName = "trainingConfig")]
public TrainingConfig TrainingConfig { get; set; }
Property Value
Type Description
TrainingConfig

TrainingDataset

Declaration
[Required(ErrorMessage = "TrainingDataset is required.")]
[JsonProperty(PropertyName = "trainingDataset")]
public Dataset TrainingDataset { get; set; }
Property Value
Type Description
Dataset
Remarks

Required

In this article
Back to top