Learn R Programming

darch (version 0.12.0)

DArch-class: Class for deep architectures

Description

This class represents a model created, and/or configured, and/or trained with the darch function. It implements deep architectures and provides the ability to train them with a pre training using contrastive divergence and fine tuning with backpropagation, resilient backpropagation and conjugate gradients.

Arguments

Slots

rbmList

A list which contains all RBMs for the pre-training.

layers

A list with the layer information. In the first field are the weights and in the second field is the unit function.

cancel

Boolean value which indicates if the network training is canceled.

cancelMessage

The message when the execution is canceled.

dropoutMasks

List of dropout masks, used internally.

dataSet

'>DataSet instance.

Details

The class inherits all attributes from the class '>Net. User-relevant slots include stats (training statistics), epochs (numer of epoch this model was trained for), and parameters (all parameters passed to darch as well as internal parameters).

See Also

'>Net, '>RBM

Other darch classes: DataSet-class, Net-class, RBM-class