Class ReinforcementHyperparameters.EvalSamples
-
- All Implemented Interfaces:
public final class ReinforcementHyperparameters.EvalSamples
Number of evaluation samples to generate per training step.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
ReinforcementHyperparameters.EvalSamples.Visitor
An interface that defines how to map each variant of EvalSamples 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.EvalSamples.Visitor<T> visitor)
final ReinforcementHyperparameters.EvalSamples
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ReinforcementHyperparameters.EvalSamples
ofAuto()
final static ReinforcementHyperparameters.EvalSamples
ofInteger(Long integer)
-
-
Method Detail
-
accept
final <T extends Any> T accept(ReinforcementHyperparameters.EvalSamples.Visitor<T> visitor)
-
validate
final ReinforcementHyperparameters.EvalSamples validate()
-
ofAuto
final static ReinforcementHyperparameters.EvalSamples ofAuto()
-
ofInteger
final static ReinforcementHyperparameters.EvalSamples ofInteger(Long integer)
-
-
-
-