Class: Google::Apis::BigqueryV2::BqmlTrainingRun
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::BqmlTrainingRun
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Defined Under Namespace
Classes: TrainingOptions
Instance Attribute Summary collapse
-
#iteration_results ⇒ Array<Google::Apis::BigqueryV2::BqmlIterationResult>
Deprecated.
-
#start_time ⇒ DateTime
Deprecated.
-
#state ⇒ String
Deprecated.
-
#training_options ⇒ Google::Apis::BigqueryV2::BqmlTrainingRun::TrainingOptions
Deprecated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BqmlTrainingRun
constructor
A new instance of BqmlTrainingRun.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BqmlTrainingRun
Returns a new instance of BqmlTrainingRun.
1265 1266 1267 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1265 def initialize(**args) update!(**args) end |
Instance Attribute Details
#iteration_results ⇒ Array<Google::Apis::BigqueryV2::BqmlIterationResult>
Deprecated.
Corresponds to the JSON property iterationResults
1248 1249 1250 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1248 def iteration_results @iteration_results end |
#start_time ⇒ DateTime
Deprecated.
Corresponds to the JSON property startTime
1253 1254 1255 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1253 def start_time @start_time end |
#state ⇒ String
Deprecated.
Corresponds to the JSON property state
1258 1259 1260 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1258 def state @state end |
#training_options ⇒ Google::Apis::BigqueryV2::BqmlTrainingRun::TrainingOptions
Deprecated.
Corresponds to the JSON property trainingOptions
1263 1264 1265 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1263 def @training_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1270 1271 1272 1273 1274 1275 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1270 def update!(**args) @iteration_results = args[:iteration_results] if args.key?(:iteration_results) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) @training_options = args[:training_options] if args.key?(:training_options) end |