ContinuousParameter: ContinuousParameter Class

ContinuousParameterR Documentation

ContinuousParameter Class

Description

A class for representing hyperparameters that have a continuous range of possible values.

Super class

sagemaker.mlcore::ParameterRange -> ContinuousParameter

Public fields

.name

Helps to categorise Class

Methods

Public methods

Inherited methods

Method new()

Initialize a ContinuousParameter

Usage
ContinuousParameter$new(
  min_value,
  max_value,
  scaling_type = c("Auto", "Linear", "Logarithmic", "ReverseLogarithmic")
)
Arguments
min_value

(float): The minimum value for the range.

max_value

(float): The maximum value for the range.

scaling_type

(str): The scale used for searching the range during tuning (default: 'Auto'). Valid values: 'Auto', 'Linear', Logarithmic' and 'ReverseLogarithmic'.


Method format()

format class

Usage
ContinuousParameter$format()

Method clone()

The objects of this class are cloneable with this method.

Usage
ContinuousParameter$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.


DyfanJones/sagemaker-r-mlcore documentation built on May 3, 2022, 10:08 a.m.