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 class
BaseLayer.Builder<T extends BaseLayer.Builder<T>>
Methods in org.deeplearning4j.nn.conf.layers that return BaseLayer.Builder Modifier and Type Method Description BaseLayer.Builder
BaseLayer.Builder. regularization(List<Regularization> regularization)
Set the regularization for the parameters (excluding biases) - for exampleWeightDecay
BaseLayer.Builder
BaseLayer.Builder. regularizationBias(List<Regularization> regularizationBias)
Set the regularization for the biases only - for exampleWeightDecay
BaseLayer.Builder
BaseLayer.Builder. weightDecay(double coefficient)
Add weight decay regularization for the network parameters (excluding biases).
This applies weight decay with multiplying the learning rate - seeWeightDecay
for more details.BaseLayer.Builder
BaseLayer.Builder. weightDecay(double coefficient, boolean applyLR)
Add weight decay regularization for the network parameters (excluding biases).BaseLayer.Builder
BaseLayer.Builder. weightDecayBias(double coefficient)
Weight decay for the biases only - seeweightDecay(double)
for more details.BaseLayer.Builder
BaseLayer.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 class
ElementWiseMultiplicationLayer.Builder
static class
RepeatVector.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 class
SimpleRnn.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 class
VariationalAutoencoder.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 class
OCNNOutputLayer.Builder
-