Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningDataStats
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningDataStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
The tuning data statistic values for TuningJob.
Instance Attribute Summary collapse
-
#distillation_data_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationDataStats
Statistics computed for datasets used for distillation.
-
#supervised_tuning_data_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
Tuning data statistics for Supervised Tuning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningDataStats
constructor
A new instance of GoogleCloudAiplatformV1beta1TuningDataStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningDataStats
Returns a new instance of GoogleCloudAiplatformV1beta1TuningDataStats.
41101 41102 41103 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41101 def initialize(**args) update!(**args) end |
Instance Attribute Details
#distillation_data_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationDataStats
Statistics computed for datasets used for distillation.
Corresponds to the JSON property distillationDataStats
41094 41095 41096 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41094 def distillation_data_stats @distillation_data_stats end |
#supervised_tuning_data_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedTuningDataStats
Tuning data statistics for Supervised Tuning.
Corresponds to the JSON property supervisedTuningDataStats
41099 41100 41101 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41099 def supervised_tuning_data_stats @supervised_tuning_data_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
41106 41107 41108 41109 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41106 def update!(**args) @distillation_data_stats = args[:distillation_data_stats] if args.key?(:distillation_data_stats) @supervised_tuning_data_stats = args[:supervised_tuning_data_stats] if args.key?(:supervised_tuning_data_stats) end |