Package

org.deeplearning4j.scalnet

models

Permalink

package models

Visibility
  1. Public
  2. All

Type Members

  1. abstract class Model extends AnyRef

    Permalink

    Abstract base class for neural net architectures.

  2. class NeuralNet extends Model

    Permalink

    Simple DL4J-style sequential neural net architecture with one input node and one output node for each node in computational graph.

    Simple DL4J-style sequential neural net architecture with one input node and one output node for each node in computational graph.

    Wraps DL4J MultiLayerNetwork. Enforces DL4J model construction pattern: adds preprocessing layers automatically but requires user to specify output layer explicitly.

  3. class Sequential extends Model

    Permalink

    Class for keras-style simple sequential neural net architectures with one input node and one output node for each node in computational graph.

    Class for keras-style simple sequential neural net architectures with one input node and one output node for each node in computational graph.

    Wraps DL4J MultiLayerNetwork. Enforces keras model construction pattern: preprocessing (reshaping) layers should be explicitly provided by the user, while last layer is treated implicitly as an output layer.

Ungrouped