Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TuningDataStats
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TuningDataStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
The tuning data statistic values for TuningJob.
Instance Attribute Summary collapse
-
#distillation_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DistillationDataStats
Statistics computed for datasets used for distillation.
-
#reinforcement_learning_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReinforcementLearningDataStats
Statistics computed for datasets used for reinforcement learning.
-
#supervised_tuning_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SupervisedTuningDataStats
Tuning data statistics for Supervised Tuning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1TuningDataStats
constructor
A new instance of GoogleCloudAiplatformV1TuningDataStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1TuningDataStats
Returns a new instance of GoogleCloudAiplatformV1TuningDataStats.
28355 28356 28357 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#distillation_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DistillationDataStats
Statistics computed for datasets used for distillation.
Corresponds to the JSON property distillationDataStats
28343 28344 28345 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28343 def distillation_data_stats @distillation_data_stats end |
#reinforcement_learning_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReinforcementLearningDataStats
Statistics computed for datasets used for reinforcement learning.
Corresponds to the JSON property reinforcementLearningDataStats
28348 28349 28350 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28348 def reinforcement_learning_data_stats @reinforcement_learning_data_stats end |
#supervised_tuning_data_stats ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SupervisedTuningDataStats
Tuning data statistics for Supervised Tuning.
Corresponds to the JSON property supervisedTuningDataStats
28353 28354 28355 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28353 def supervised_tuning_data_stats @supervised_tuning_data_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28360 28361 28362 28363 28364 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28360 def update!(**args) @distillation_data_stats = args[:distillation_data_stats] if args.key?(:distillation_data_stats) @reinforcement_learning_data_stats = args[:reinforcement_learning_data_stats] if args.key?(:reinforcement_learning_data_stats) @supervised_tuning_data_stats = args[:supervised_tuning_data_stats] if args.key?(:supervised_tuning_data_stats) end |