FineTuneDetails¶
-
class
oci.generative_ai.models.
FineTuneDetails
(**kwargs)¶ Bases:
object
Details about fine-tuning a custom model.
Methods
__init__
(**kwargs)Initializes a new FineTuneDetails object with values from keyword arguments. Attributes
dedicated_ai_cluster_id
[Required] Gets the dedicated_ai_cluster_id of this FineTuneDetails. training_config
Gets the training_config of this FineTuneDetails. training_dataset
[Required] Gets the training_dataset of this FineTuneDetails. -
__init__
(**kwargs)¶ Initializes a new FineTuneDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - training_dataset (oci.generative_ai.models.Dataset) – The value to assign to the training_dataset property of this FineTuneDetails.
- dedicated_ai_cluster_id (str) – The value to assign to the dedicated_ai_cluster_id property of this FineTuneDetails.
- training_config (oci.generative_ai.models.TrainingConfig) – The value to assign to the training_config property of this FineTuneDetails.
-
dedicated_ai_cluster_id
¶ [Required] Gets the dedicated_ai_cluster_id of this FineTuneDetails. The OCID of the dedicated AI cluster this fine-tuning runs on.
Returns: The dedicated_ai_cluster_id of this FineTuneDetails. Return type: str
-
training_config
¶ Gets the training_config of this FineTuneDetails.
Returns: The training_config of this FineTuneDetails. Return type: oci.generative_ai.models.TrainingConfig
-
training_dataset
¶ [Required] Gets the training_dataset of this FineTuneDetails.
Returns: The training_dataset of this FineTuneDetails. Return type: oci.generative_ai.models.Dataset
-