case class TrainingHelper[Out, State, OutShape](input: Out, sequenceLengths: Output[Int], timeMajor: Boolean = false, name: String = "RNNDecoderTrainingHelper")(implicit evOutputStructure: OutputStructure[Out], evOutputToShapeOut: Aux[Out, OutShape], evZeroOut: Aux[Out, OutShape]) extends Helper[Out, Out, State] with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TrainingHelper
- Serializable
- Serializable
- Product
- Equals
- Helper
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
val
batchSize: Output[Int]
- Definition Classes
- TrainingHelper → Helper
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
initialize(): (Output[Boolean], Out)
- Definition Classes
- TrainingHelper → Helper
- val input: Out
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val name: String
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
next(time: Output[Int], input: Out, state: State, sample: Out): (Output[Boolean], Out, State)
- Definition Classes
- TrainingHelper → Helper
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
sample(time: Output[Int], input: Out, state: State): Out
- Definition Classes
- TrainingHelper → Helper
- val sequenceLengths: Output[Int]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val timeMajor: Boolean
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
zeroSample(batchSize: Output[Int], name: String = "ZeroSample"): Out
- Definition Classes
- TrainingHelper → Helper