Class ReinforcementHyperparameters.NEpochs
-
- All Implemented Interfaces:
public final class ReinforcementHyperparameters.NEpochs
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
ReinforcementHyperparameters.NEpochs.Visitor
An interface that defines how to map each variant of NEpochs 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.NEpochs.Visitor<T> visitor)
final ReinforcementHyperparameters.NEpochs
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ReinforcementHyperparameters.NEpochs
ofAuto()
final static ReinforcementHyperparameters.NEpochs
ofInteger(Long integer)
-
-
Method Detail
-
accept
final <T extends Any> T accept(ReinforcementHyperparameters.NEpochs.Visitor<T> visitor)
-
validate
final ReinforcementHyperparameters.NEpochs validate()
-
ofAuto
final static ReinforcementHyperparameters.NEpochs ofAuto()
-
ofInteger
final static ReinforcementHyperparameters.NEpochs ofInteger(Long integer)
-
-
-
-