Class: Google::Apis::BigqueryV2::IntHparamSearchSpace
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::IntHparamSearchSpace
- 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
Search space for an int hyperparameter.
Instance Attribute Summary collapse
-
#candidates ⇒ Google::Apis::BigqueryV2::IntCandidates
Discrete candidates of an int hyperparameter.
-
#range ⇒ Google::Apis::BigqueryV2::IntRange
Range of an int hyperparameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IntHparamSearchSpace
constructor
A new instance of IntHparamSearchSpace.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IntHparamSearchSpace
Returns a new instance of IntHparamSearchSpace.
3549 3550 3551 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#candidates ⇒ Google::Apis::BigqueryV2::IntCandidates
Discrete candidates of an int hyperparameter.
Corresponds to the JSON property candidates
3542 3543 3544 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3542 def candidates @candidates end |
#range ⇒ Google::Apis::BigqueryV2::IntRange
Range of an int hyperparameter.
Corresponds to the JSON property range
3547 3548 3549 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3547 def range @range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3554 3555 3556 3557 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3554 def update!(**args) @candidates = args[:candidates] if args.key?(:candidates) @range = args[:range] if args.key?(:range) end |