Class: Google::Apis::LanguageV1::XpsTablesTrainResponse
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::XpsTablesTrainResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1/classes.rb,
lib/google/apis/language_v1/representations.rb,
lib/google/apis/language_v1/representations.rb
Instance Attribute Summary collapse
-
#model_structure ⇒ Google::Apis::LanguageV1::XpsTablesModelStructure
A description of Tables model structure.
-
#prediction_sample_rows ⇒ Array<Google::Apis::LanguageV1::XpsRow>
Sample rows from the dataset this model was trained.
-
#tables_model_column_info ⇒ Array<Google::Apis::LanguageV1::XpsTablesModelColumnInfo>
Output only.
-
#train_cost_milli_node_hours ⇒ Fixnum
The actual training cost of the model, expressed in milli node hours, i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsTablesTrainResponse
constructor
A new instance of XpsTablesTrainResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsTablesTrainResponse
Returns a new instance of XpsTablesTrainResponse.
4242 4243 4244 |
# File 'lib/google/apis/language_v1/classes.rb', line 4242 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model_structure ⇒ Google::Apis::LanguageV1::XpsTablesModelStructure
A description of Tables model structure.
Corresponds to the JSON property modelStructure
4222 4223 4224 |
# File 'lib/google/apis/language_v1/classes.rb', line 4222 def model_structure @model_structure end |
#prediction_sample_rows ⇒ Array<Google::Apis::LanguageV1::XpsRow>
Sample rows from the dataset this model was trained.
Corresponds to the JSON property predictionSampleRows
4227 4228 4229 |
# File 'lib/google/apis/language_v1/classes.rb', line 4227 def prediction_sample_rows @prediction_sample_rows end |
#tables_model_column_info ⇒ Array<Google::Apis::LanguageV1::XpsTablesModelColumnInfo>
Output only. Auxiliary information for each of the input_feature_column_specs,
with respect to this particular model.
Corresponds to the JSON property tablesModelColumnInfo
4233 4234 4235 |
# File 'lib/google/apis/language_v1/classes.rb', line 4233 def tables_model_column_info @tables_model_column_info end |
#train_cost_milli_node_hours ⇒ Fixnum
The actual training cost of the model, expressed in milli node hours, i.e. 1,
000 value in this field means 1 node hour. Guaranteed to not exceed the train
budget.
Corresponds to the JSON property trainCostMilliNodeHours
4240 4241 4242 |
# File 'lib/google/apis/language_v1/classes.rb', line 4240 def train_cost_milli_node_hours @train_cost_milli_node_hours end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4247 4248 4249 4250 4251 4252 |
# File 'lib/google/apis/language_v1/classes.rb', line 4247 def update!(**args) @model_structure = args[:model_structure] if args.key?(:model_structure) @prediction_sample_rows = args[:prediction_sample_rows] if args.key?(:prediction_sample_rows) @tables_model_column_info = args[:tables_model_column_info] if args.key?(:tables_model_column_info) @train_cost_milli_node_hours = args[:train_cost_milli_node_hours] if args.key?(:train_cost_milli_node_hours) end |