Training State
data class TrainingState(val isTraining: Boolean = false, val epochsRemaining: Int = 0, val epochsElapsed: Int = 0, val networks: List<NetworkTrainingState> = emptyList())
Models basic training state and provides a handle to the trainer and network.
Constructors
Link copied to clipboard
constructor(isTraining: Boolean = false, epochsRemaining: Int = 0, epochsElapsed: Int = 0, networks: List<NetworkTrainingState> = emptyList())