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.
23284 23285 23286 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23284 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
23277 23278 23279 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23277 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
23282 23283 23284 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23282 def prompt_dataset_stats @prompt_dataset_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23289 23290 23291 23292 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23289 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 |