Class: Google::Apis::LanguageV1beta2::XpsVideoObjectTrackingTrainResponse
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::XpsVideoObjectTrackingTrainResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#export_model_spec ⇒ Google::Apis::LanguageV1beta2::XpsVideoExportModelSpec
Information of downloadable models that are pre-generated as part of training flow and will be persisted in AutoMl backend.
-
#model_artifact_spec ⇒ Google::Apis::LanguageV1beta2::XpsVideoModelArtifactSpec
The fields below are only populated under uCAIP request scope.
-
#train_cost_node_seconds ⇒ Fixnum
The actual train cost of creating this model, expressed in node seconds, i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsVideoObjectTrackingTrainResponse
constructor
A new instance of XpsVideoObjectTrackingTrainResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsVideoObjectTrackingTrainResponse
Returns a new instance of XpsVideoObjectTrackingTrainResponse.
5289 5290 5291 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#export_model_spec ⇒ Google::Apis::LanguageV1beta2::XpsVideoExportModelSpec
Information of downloadable models that are pre-generated as part of training
flow and will be persisted in AutoMl backend. Upon receiving ExportModel
request from user, AutoMl backend can serve the pre-generated models to user
if exists (by copying the files from internal path to user provided location),
otherwise, AutoMl backend will call xPS ExportModel API to generate the model
on the fly with the requesting format.
Corresponds to the JSON property exportModelSpec
5276 5277 5278 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5276 def export_model_spec @export_model_spec end |
#model_artifact_spec ⇒ Google::Apis::LanguageV1beta2::XpsVideoModelArtifactSpec
The fields below are only populated under uCAIP request scope.
Corresponds to the JSON property modelArtifactSpec
5281 5282 5283 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5281 def model_artifact_spec @model_artifact_spec end |
#train_cost_node_seconds ⇒ Fixnum
The actual train cost of creating this model, expressed in node seconds, i.e.
3,600 value in this field means 1 node hour.
Corresponds to the JSON property trainCostNodeSeconds
5287 5288 5289 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5287 def train_cost_node_seconds @train_cost_node_seconds end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5294 5295 5296 5297 5298 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 5294 def update!(**args) @export_model_spec = args[:export_model_spec] if args.key?(:export_model_spec) @model_artifact_spec = args[:model_artifact_spec] if args.key?(:model_artifact_spec) @train_cost_node_seconds = args[:train_cost_node_seconds] if args.key?(:train_cost_node_seconds) end |