Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats
- 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
Statistics computed for datasets used for reinforcement learning.
Instance Attribute Summary collapse
-
#preference_dataset_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DatasetStats
Statistics computed over a tuning dataset.
-
#prompt_dataset_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DatasetStats
Statistics computed over a tuning dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats
constructor
A new instance of GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats
Returns a new instance of GoogleCloudAiplatformV1beta1ReinforcementLearningDataStats.
23307 23308 23309 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23307 def initialize(**args) update!(**args) end |
Instance Attribute Details
#preference_dataset_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DatasetStats
Statistics computed over a tuning dataset.
Corresponds to the JSON property preferenceDatasetStats
23300 23301 23302 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23300 def preference_dataset_stats @preference_dataset_stats end |
#prompt_dataset_stats ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DatasetStats
Statistics computed over a tuning dataset.
Corresponds to the JSON property promptDatasetStats
23305 23306 23307 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23305 def prompt_dataset_stats @prompt_dataset_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23312 23313 23314 23315 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23312 def update!(**args) @preference_dataset_stats = args[:preference_dataset_stats] if args.key?(:preference_dataset_stats) @prompt_dataset_stats = args[:prompt_dataset_stats] if args.key?(:prompt_dataset_stats) end |