Interface ParameterRanges.Builder

    • Method Detail

      • integerParameterRanges

        ParameterRanges.Builder integerParameterRanges​(Collection<IntegerParameterRange> integerParameterRanges)

        The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        integerParameterRanges - The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • integerParameterRanges

        ParameterRanges.Builder integerParameterRanges​(IntegerParameterRange... integerParameterRanges)

        The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        integerParameterRanges - The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • continuousParameterRanges

        ParameterRanges.Builder continuousParameterRanges​(Collection<ContinuousParameterRange> continuousParameterRanges)

        The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        continuousParameterRanges - The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • continuousParameterRanges

        ParameterRanges.Builder continuousParameterRanges​(ContinuousParameterRange... continuousParameterRanges)

        The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        continuousParameterRanges - The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • categoricalParameterRanges

        ParameterRanges.Builder categoricalParameterRanges​(Collection<CategoricalParameterRange> categoricalParameterRanges)

        The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        categoricalParameterRanges - The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • categoricalParameterRanges

        ParameterRanges.Builder categoricalParameterRanges​(CategoricalParameterRange... categoricalParameterRanges)

        The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.

        Parameters:
        categoricalParameterRanges - The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • autoParameters

        ParameterRanges.Builder autoParameters​(Collection<AutoParameter> autoParameters)

        A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.

        Parameters:
        autoParameters - A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • autoParameters

        ParameterRanges.Builder autoParameters​(AutoParameter... autoParameters)

        A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.

        Parameters:
        autoParameters - A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • autoParameters

        ParameterRanges.Builder autoParameters​(Consumer<AutoParameter.Builder>... autoParameters)

        A list containing hyperparameter names and example values to be used by Autotune to determine optimal ranges for your tuning job.

        This is a convenience method that creates an instance of the AutoParameter.Builder avoiding the need to create one manually via AutoParameter.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #autoParameters(List).

        Parameters:
        autoParameters - a consumer that will call methods on AutoParameter.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #autoParameters(java.util.Collection)