All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.nn.conf.BackpropType Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.nn.conf;

/** Defines the type of backpropagation. 'Standard' setting (default) is used
 * for training most networks (MLP, CNN, etc)
 * In the context of recurrent neural networks, Standard means 
 * @author Alex
 *
 */
public enum BackpropType {
    /** Default option. Used for training most networks, including MLP, DBNs, CNNs etc.*/
    Standard,
    /** Truncated BackPropagation Through Time. Only applicable in context of
     * training networks with recurrent neural network layers such as GravesLSTM
     */
    TruncatedBPTT
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy