Package deepnetts.net.train
Enum Class TrainingEvent.Type
- All Implemented Interfaces:
Serializable
,Comparable<TrainingEvent.Type>
,Constable
- Enclosing class:
TrainingEvent
Type of a training event.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies a training epoch finished eventSpecifies a training epoch started eventSpecifies a training iteration for (single data item) finished eventSpecifies a mini batch (batch of items) finished eventSpecifies a training started eventSpecifies a training stopped event -
Method Summary
Modifier and TypeMethodDescriptionstatic TrainingEvent.Type
Returns the enum constant of this class with the specified name.static TrainingEvent.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
STARTED
Specifies a training started event -
STOPPED
Specifies a training stopped event -
EPOCH_STARTED
Specifies a training epoch started event -
EPOCH_FINISHED
Specifies a training epoch finished event -
MINI_BATCH
Specifies a mini batch (batch of items) finished event -
ITERATION_FINISHED
Specifies a training iteration for (single data item) finished event
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-