Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TuningDataStats

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TuningDataStats

Returns a new instance of GoogleCloudAiplatformV1beta1TuningDataStats.



35112
35113
35114
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35112

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#distillation_data_statsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationDataStats

Statistics computed for datasets used for distillation. Corresponds to the JSON property distillationDataStats



35100
35101
35102
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35100

def distillation_data_stats
  @distillation_data_stats
end

#reinforcement_learning_data_statsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats

Statistics computed for datasets used for reinforcement learning. Corresponds to the JSON property reinforcementLearningDataStats



35105
35106
35107
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35105

def reinforcement_learning_data_stats
  @reinforcement_learning_data_stats
end

#supervised_tuning_data_statsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SupervisedTuningDataStats

Tuning data statistics for Supervised Tuning. Corresponds to the JSON property supervisedTuningDataStats



35110
35111
35112
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35110

def supervised_tuning_data_stats
  @supervised_tuning_data_stats
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



35117
35118
35119
35120
35121
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35117

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