Class: Google::Apis::BigqueryV2::IterationResult
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::IterationResult
- 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
Overview
Information about a single iteration of the training run.
Instance Attribute Summary collapse
-
#arima_result ⇒ Google::Apis::BigqueryV2::ArimaResult
(Auto-)arima fitting result.
-
#cluster_infos ⇒ Array<Google::Apis::BigqueryV2::ClusterInfo>
Information about top clusters for clustering models.
-
#duration_ms ⇒ Fixnum
Time taken to run the iteration in milliseconds.
-
#eval_loss ⇒ Float
Loss computed on the eval data at the end of iteration.
-
#index ⇒ Fixnum
Index of the iteration, 0 based.
-
#learn_rate ⇒ Float
Learn rate used for this iteration.
-
#principal_component_infos ⇒ Array<Google::Apis::BigqueryV2::PrincipalComponentInfo>
The information of the principal components.
-
#training_loss ⇒ Float
Loss computed on the training data at the end of iteration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IterationResult
constructor
A new instance of IterationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IterationResult
Returns a new instance of IterationResult.
4173 4174 4175 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#arima_result ⇒ Google::Apis::BigqueryV2::ArimaResult
(Auto-)arima fitting result. Wrap everything in ArimaResult for easier
refactoring if we want to use model-specific iteration results.
Corresponds to the JSON property arimaResult
4136 4137 4138 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4136 def arima_result @arima_result end |
#cluster_infos ⇒ Array<Google::Apis::BigqueryV2::ClusterInfo>
Information about top clusters for clustering models.
Corresponds to the JSON property clusterInfos
4141 4142 4143 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4141 def cluster_infos @cluster_infos end |
#duration_ms ⇒ Fixnum
Time taken to run the iteration in milliseconds.
Corresponds to the JSON property durationMs
4146 4147 4148 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4146 def duration_ms @duration_ms end |
#eval_loss ⇒ Float
Loss computed on the eval data at the end of iteration.
Corresponds to the JSON property evalLoss
4151 4152 4153 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4151 def eval_loss @eval_loss end |
#index ⇒ Fixnum
Index of the iteration, 0 based.
Corresponds to the JSON property index
4156 4157 4158 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4156 def index @index end |
#learn_rate ⇒ Float
Learn rate used for this iteration.
Corresponds to the JSON property learnRate
4161 4162 4163 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4161 def learn_rate @learn_rate end |
#principal_component_infos ⇒ Array<Google::Apis::BigqueryV2::PrincipalComponentInfo>
The information of the principal components.
Corresponds to the JSON property principalComponentInfos
4166 4167 4168 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4166 def principal_component_infos @principal_component_infos end |
#training_loss ⇒ Float
Loss computed on the training data at the end of iteration.
Corresponds to the JSON property trainingLoss
4171 4172 4173 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4171 def training_loss @training_loss end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4178 def update!(**args) @arima_result = args[:arima_result] if args.key?(:arima_result) @cluster_infos = args[:cluster_infos] if args.key?(:cluster_infos) @duration_ms = args[:duration_ms] if args.key?(:duration_ms) @eval_loss = args[:eval_loss] if args.key?(:eval_loss) @index = args[:index] if args.key?(:index) @learn_rate = args[:learn_rate] if args.key?(:learn_rate) @principal_component_infos = args[:principal_component_infos] if args.key?(:principal_component_infos) @training_loss = args[:training_loss] if args.key?(:training_loss) end |