Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationSet
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationSet
- 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
EvaluationSet is a collection of related EvaluationItems that are evaluated together.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Required.
-
#evaluation_items ⇒ Array<String>
Required.
-
#metadata ⇒ Object
Optional.
-
#name ⇒ String
Identifier.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1EvaluationSet
constructor
A new instance of GoogleCloudAiplatformV1EvaluationSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1EvaluationSet
Returns a new instance of GoogleCloudAiplatformV1EvaluationSet.
10055 10056 10057 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10055 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when this item was created.
Corresponds to the JSON property createTime
10027 10028 10029 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10027 def create_time @create_time end |
#display_name ⇒ String
Required. The display name of the EvaluationSet.
Corresponds to the JSON property displayName
10032 10033 10034 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10032 def display_name @display_name end |
#evaluation_items ⇒ Array<String>
Required. The EvaluationItems that are part of this dataset.
Corresponds to the JSON property evaluationItems
10037 10038 10039 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10037 def evaluation_items @evaluation_items end |
#metadata ⇒ Object
Optional. Metadata for the EvaluationSet.
Corresponds to the JSON property metadata
10042 10043 10044 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10042 def @metadata end |
#name ⇒ String
Identifier. The resource name of the EvaluationSet. Format: projects/project
/locations/location/evaluationSets/evaluation_set`
Corresponds to the JSON propertyname`
10048 10049 10050 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10048 def name @name end |
#update_time ⇒ String
Output only. Timestamp when this item was last updated.
Corresponds to the JSON property updateTime
10053 10054 10055 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10053 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10060 10061 10062 10063 10064 10065 10066 10067 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10060 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @evaluation_items = args[:evaluation_items] if args.key?(:evaluation_items) @metadata = args[:metadata] if args.key?(:metadata) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |