Class ReinforcementHyperparameters.EvalInterval
-
- All Implemented Interfaces:
public final class ReinforcementHyperparameters.EvalInterval
The number of training steps between evaluation runs.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
ReinforcementHyperparameters.EvalInterval.Visitor
An interface that defines how to map each variant of EvalInterval to a value of type T.
-
Method Summary
Modifier and Type Method Description final Optional<JsonValue>
auto()
final Optional<Long>
integer()
final Boolean
isAuto()
final Boolean
isInteger()
final JsonValue
asAuto()
final Long
asInteger()
final Optional<JsonValue>
_json()
final <T extends Any> T
accept(ReinforcementHyperparameters.EvalInterval.Visitor<T> visitor)
final ReinforcementHyperparameters.EvalInterval
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ReinforcementHyperparameters.EvalInterval
ofAuto()
final static ReinforcementHyperparameters.EvalInterval
ofInteger(Long integer)
-
-
Method Detail
-
accept
final <T extends Any> T accept(ReinforcementHyperparameters.EvalInterval.Visitor<T> visitor)
-
validate
final ReinforcementHyperparameters.EvalInterval validate()
-
ofAuto
final static ReinforcementHyperparameters.EvalInterval ofAuto()
-
ofInteger
final static ReinforcementHyperparameters.EvalInterval ofInteger(Long integer)
-
-
-
-