Uses of Class
org.deeplearning4j.nn.conf.layers.BaseLayer.Builder
-
-
Uses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers
Classes in org.deeplearning4j.nn.conf.layers with type parameters of type BaseLayer.Builder Modifier and Type Class Description static classBaseLayer.Builder<T extends BaseLayer.Builder<T>>Methods in org.deeplearning4j.nn.conf.layers that return BaseLayer.Builder Modifier and Type Method Description BaseLayer.BuilderBaseLayer.Builder. regularization(List<Regularization> regularization)Set the regularization for the parameters (excluding biases) - for exampleWeightDecayBaseLayer.BuilderBaseLayer.Builder. regularizationBias(List<Regularization> regularizationBias)Set the regularization for the biases only - for exampleWeightDecayBaseLayer.BuilderBaseLayer.Builder. weightDecay(double coefficient)Add weight decay regularization for the network parameters (excluding biases).
This applies weight decay with multiplying the learning rate - seeWeightDecayfor more details.BaseLayer.BuilderBaseLayer.Builder. weightDecay(double coefficient, boolean applyLR)Add weight decay regularization for the network parameters (excluding biases).BaseLayer.BuilderBaseLayer.Builder. weightDecayBias(double coefficient)Weight decay for the biases only - seeweightDecay(double)for more details.BaseLayer.BuilderBaseLayer.Builder. weightDecayBias(double coefficient, boolean applyLR)Weight decay for the biases only - seeweightDecay(double)for more detailsConstructors in org.deeplearning4j.nn.conf.layers with parameters of type BaseLayer.Builder Constructor Description BaseLayer(BaseLayer.Builder builder) -
Uses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.misc
Subclasses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.misc Modifier and Type Class Description static classElementWiseMultiplicationLayer.Builderstatic classRepeatVector.Builder<T extends RepeatVector.Builder<T>> -
Uses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.recurrent
Subclasses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.recurrent Modifier and Type Class Description static classSimpleRnn.Builder -
Uses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.variational
Subclasses of BaseLayer.Builder in org.deeplearning4j.nn.conf.layers.variational Modifier and Type Class Description static classVariationalAutoencoder.Builder -
Uses of BaseLayer.Builder in org.deeplearning4j.nn.conf.ocnn
Subclasses of BaseLayer.Builder in org.deeplearning4j.nn.conf.ocnn Modifier and Type Class Description static classOCNNOutputLayer.Builder
-