Trait

io.github.mandar2812.dynaml.models.neuralnets

NeuralNet

Related Doc: package neuralnets

Permalink

trait NeuralNet[Data, BaseGraph, Input, Output, Graph <: NeuralGraph[BaseGraph, Input, Output]] extends ParameterizedLearner[Data, Graph, Input, Output, Stream[(Input, Output)]]

Linear Supertypes
ParameterizedLearner[Data, Graph, Input, Output, Stream[(Input, Output)]], Model[Data, Input, Output], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NeuralNet
  2. ParameterizedLearner
  3. Model
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val g: Data

    Permalink

    The training data

    The training data

    Attributes
    protected
    Definition Classes
    Model
  2. abstract def initParams(): Graph

    Permalink
    Definition Classes
    ParameterizedLearner
  3. abstract def learn(): Unit

    Permalink

    Learn the parameters of the model.

    Learn the parameters of the model.

    Definition Classes
    ParameterizedLearner
  4. abstract val numPoints: Int

    Permalink
  5. abstract val optimizer: RegularizedOptimizer[Graph, Input, Output, Stream[(Input, Output)]]

    Permalink
    Attributes
    protected
    Definition Classes
    ParameterizedLearner
  6. abstract val params: Graph

    Permalink
    Attributes
    protected
    Definition Classes
    ParameterizedLearner
  7. abstract val transform: DataPipe[Data, Stream[(Input, Output)]]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def _neuralStack: Graph

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def data: Data

    Permalink
    Definition Classes
    Model
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def parameters(): Graph

    Permalink

    Get the value of the parameters of the model.

    Get the value of the parameters of the model.

    Definition Classes
    ParameterizedLearner
  18. def predict(point: Input): Output

    Permalink

    Predict the value of the target variable given a point.

    Predict the value of the target variable given a point.

    Definition Classes
    NeuralNetModel
  19. def setBatchFraction(f: Double): NeuralNet.this.type

    Permalink
    Definition Classes
    ParameterizedLearner
  20. def setLearningRate(alpha: Double): NeuralNet.this.type

    Permalink
    Definition Classes
    ParameterizedLearner
  21. def setMaxIterations(i: Int): NeuralNet.this.type

    Permalink
    Definition Classes
    ParameterizedLearner
  22. def setRegParam(r: Double): NeuralNet.this.type

    Permalink
    Definition Classes
    ParameterizedLearner
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def updateParameters(param: Graph): Unit

    Permalink
    Definition Classes
    ParameterizedLearner
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ParameterizedLearner[Data, Graph, Input, Output, Stream[(Input, Output)]]

Inherited from Model[Data, Input, Output]

Inherited from AnyRef

Inherited from Any

Ungrouped