/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the categorical, continuous, and integer hyperparameters, and their
* ranges of tunable values. The range of tunable values determines which values
* that a hyperparameter tuning job can choose for the specified hyperparameter.
* This object is part of the HyperParameterTuningJobConfig
* object.See Also:
AWS
* API Reference
Specifies the tunable range for each categorical hyperparameter.
*/ inline const Aws::VectorSpecifies the tunable range for each categorical hyperparameter.
*/ inline bool CategoricalParameterRangesHasBeenSet() const { return m_categoricalParameterRangesHasBeenSet; } /** *Specifies the tunable range for each categorical hyperparameter.
*/ inline void SetCategoricalParameterRanges(const Aws::VectorSpecifies the tunable range for each categorical hyperparameter.
*/ inline void SetCategoricalParameterRanges(Aws::VectorSpecifies the tunable range for each categorical hyperparameter.
*/ inline ParameterRanges& WithCategoricalParameterRanges(const Aws::VectorSpecifies the tunable range for each categorical hyperparameter.
*/ inline ParameterRanges& WithCategoricalParameterRanges(Aws::VectorSpecifies the tunable range for each categorical hyperparameter.
*/ inline ParameterRanges& AddCategoricalParameterRanges(const CategoricalParameterRange& value) { m_categoricalParameterRangesHasBeenSet = true; m_categoricalParameterRanges.push_back(value); return *this; } /** *Specifies the tunable range for each categorical hyperparameter.
*/ inline ParameterRanges& AddCategoricalParameterRanges(CategoricalParameterRange&& value) { m_categoricalParameterRangesHasBeenSet = true; m_categoricalParameterRanges.push_back(std::move(value)); return *this; } /** *Specifies the tunable range for each continuous hyperparameter.
*/ inline const Aws::VectorSpecifies the tunable range for each continuous hyperparameter.
*/ inline bool ContinuousParameterRangesHasBeenSet() const { return m_continuousParameterRangesHasBeenSet; } /** *Specifies the tunable range for each continuous hyperparameter.
*/ inline void SetContinuousParameterRanges(const Aws::VectorSpecifies the tunable range for each continuous hyperparameter.
*/ inline void SetContinuousParameterRanges(Aws::VectorSpecifies the tunable range for each continuous hyperparameter.
*/ inline ParameterRanges& WithContinuousParameterRanges(const Aws::VectorSpecifies the tunable range for each continuous hyperparameter.
*/ inline ParameterRanges& WithContinuousParameterRanges(Aws::VectorSpecifies the tunable range for each continuous hyperparameter.
*/ inline ParameterRanges& AddContinuousParameterRanges(const ContinuousParameterRange& value) { m_continuousParameterRangesHasBeenSet = true; m_continuousParameterRanges.push_back(value); return *this; } /** *Specifies the tunable range for each continuous hyperparameter.
*/ inline ParameterRanges& AddContinuousParameterRanges(ContinuousParameterRange&& value) { m_continuousParameterRangesHasBeenSet = true; m_continuousParameterRanges.push_back(std::move(value)); return *this; } /** *Specifies the tunable range for each integer hyperparameter.
*/ inline const Aws::VectorSpecifies the tunable range for each integer hyperparameter.
*/ inline bool IntegerParameterRangesHasBeenSet() const { return m_integerParameterRangesHasBeenSet; } /** *Specifies the tunable range for each integer hyperparameter.
*/ inline void SetIntegerParameterRanges(const Aws::VectorSpecifies the tunable range for each integer hyperparameter.
*/ inline void SetIntegerParameterRanges(Aws::VectorSpecifies the tunable range for each integer hyperparameter.
*/ inline ParameterRanges& WithIntegerParameterRanges(const Aws::VectorSpecifies the tunable range for each integer hyperparameter.
*/ inline ParameterRanges& WithIntegerParameterRanges(Aws::VectorSpecifies the tunable range for each integer hyperparameter.
*/ inline ParameterRanges& AddIntegerParameterRanges(const IntegerParameterRange& value) { m_integerParameterRangesHasBeenSet = true; m_integerParameterRanges.push_back(value); return *this; } /** *Specifies the tunable range for each integer hyperparameter.
*/ inline ParameterRanges& AddIntegerParameterRanges(IntegerParameterRange&& value) { m_integerParameterRangesHasBeenSet = true; m_integerParameterRanges.push_back(std::move(value)); return *this; } private: Aws::Vector