package schemas
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed trait LoopState extends AnyRef
- case class SWALoopState(model: TensorList, optimizer: TensorList, epoch: Int, lastValidationLoss: Option[Double], minValidationLoss: Option[Double], numberOfAveragedModels: Int, averagedModels: Option[TensorList], learningCurve: List[(Int, Double, Option[Double])]) extends LoopState with Product with Serializable
- case class SimpleLoopState(model: TensorList, optimizer: TensorList, epoch: Int, lastValidationLoss: Option[Double], minValidationLoss: Option[Double], minValidationLossModel: Option[(Int, TensorList)], learningCurve: List[(Int, Double, Option[Double], Option[Double])]) extends LoopState with Product with Serializable
- case class SimpleThenSWALoopState(simple: SimpleLoopState, swa: Option[SWALoopState]) extends LoopState with Product with Serializable
- case class TensorDescriptor(dims: Seq[Long], dataType: Byte, byteOffset: Long, byteLength: Long) extends Product with Serializable
- case class TensorList(tensors: Seq[TensorDescriptor], location: String, byteOffset: Long, byteLength: Long) extends Product with Serializable
Value Members
- object LoopState
- object TensorDescriptor extends Serializable
- object TensorList extends Serializable