Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCustomTuningModel
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCustomTuningModel
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Metadata that describes a custom tuned model.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Timestamp the Model was created at.
-
#display_name ⇒ String
The display name of the model.
-
#metrics ⇒ Hash<String,Float>
The metrics of the trained model.
-
#model_state ⇒ String
The state that the model is in (e.g.
TRAINING
orTRAINING_FAILED
). -
#model_version ⇒ Fixnum
The version of the model.
-
#name ⇒ String
Required.
-
#training_start_time ⇒ String
Timestamp the model training was initiated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaCustomTuningModel
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaCustomTuningModel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaCustomTuningModel
Returns a new instance of GoogleCloudDiscoveryengineV1alphaCustomTuningModel.
5572 5573 5574 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5572 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Timestamp the Model was created at.
Corresponds to the JSON property createTime
5537 5538 5539 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5537 def create_time @create_time end |
#display_name ⇒ String
The display name of the model.
Corresponds to the JSON property displayName
5542 5543 5544 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5542 def display_name @display_name end |
#metrics ⇒ Hash<String,Float>
The metrics of the trained model.
Corresponds to the JSON property metrics
5547 5548 5549 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5547 def metrics @metrics end |
#model_state ⇒ String
The state that the model is in (e.g.TRAINING
or TRAINING_FAILED
).
Corresponds to the JSON property modelState
5552 5553 5554 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5552 def model_state @model_state end |
#model_version ⇒ Fixnum
The version of the model.
Corresponds to the JSON property modelVersion
5557 5558 5559 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5557 def model_version @model_version end |
#name ⇒ String
Required. The fully qualified resource name of the model. Format: projects/
project_number/locations/
location/collections/
collection/dataStores/
data_store/customTuningModels/
custom_tuning_model`model must be an alpha-
numerical string with limit of 40 characters.
Corresponds to the JSON property
name`
5565 5566 5567 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5565 def name @name end |
#training_start_time ⇒ String
Timestamp the model training was initiated.
Corresponds to the JSON property trainingStartTime
5570 5571 5572 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5570 def training_start_time @training_start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5577 5578 5579 5580 5581 5582 5583 5584 5585 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5577 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @metrics = args[:metrics] if args.key?(:metrics) @model_state = args[:model_state] if args.key?(:model_state) @model_version = args[:model_version] if args.key?(:model_version) @name = args[:name] if args.key?(:name) @training_start_time = args[:training_start_time] if args.key?(:training_start_time) end |