Uses of Interface
org.deeplearning4j.nn.conf.dropout.IDropout
-
Packages that use IDropout Package Description org.deeplearning4j.nn.conf org.deeplearning4j.nn.conf.dropout org.deeplearning4j.nn.conf.layers org.deeplearning4j.nn.transferlearning -
-
Uses of IDropout in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf declared as IDropout Modifier and Type Field Description protected IDropout
NeuralNetConfiguration.Builder. idropOut
Methods in org.deeplearning4j.nn.conf with parameters of type IDropout Modifier and Type Method Description NeuralNetConfiguration.Builder
NeuralNetConfiguration.Builder. dropOut(IDropout dropout)
Set the dropout for all layers in this network
Note: values set by this method will be applied to all applicable layers in the network, unless a different value is explicitly set on a given layer. -
Uses of IDropout in org.deeplearning4j.nn.conf.dropout
Classes in org.deeplearning4j.nn.conf.dropout that implement IDropout Modifier and Type Class Description class
AlphaDropout
class
Dropout
class
GaussianDropout
class
GaussianNoise
class
SpatialDropout
Methods in org.deeplearning4j.nn.conf.dropout that return IDropout Modifier and Type Method Description IDropout
GaussianNoise. clone()
IDropout
IDropout. clone()
IDropout
SpatialDropout. clone()
-
Uses of IDropout in org.deeplearning4j.nn.conf.layers
Fields in org.deeplearning4j.nn.conf.layers declared as IDropout Modifier and Type Field Description protected IDropout
Layer.Builder. iDropout
protected IDropout
Layer. iDropout
Methods in org.deeplearning4j.nn.conf.layers with parameters of type IDropout Modifier and Type Method Description T
Layer.Builder. dropOut(IDropout dropout)
Set the dropout for all layers in this networkstatic void
LayerValidation. generalValidation(String layerName, Layer layer, IDropout iDropout, List<Regularization> regularization, List<Regularization> regularizationBias, List<LayerConstraint> allParamConstraints, List<LayerConstraint> weightConstraints, List<LayerConstraint> biasConstraints)
Constructors in org.deeplearning4j.nn.conf.layers with parameters of type IDropout Constructor Description Builder(IDropout dropout)
DropoutLayer(IDropout dropout)
-
Uses of IDropout in org.deeplearning4j.nn.transferlearning
Fields in org.deeplearning4j.nn.transferlearning with type parameters of type IDropout Modifier and Type Field Description protected Optional<IDropout>
FineTuneConfiguration. dropout
Methods in org.deeplearning4j.nn.transferlearning with parameters of type IDropout Modifier and Type Method Description FineTuneConfiguration.Builder
FineTuneConfiguration.Builder. dropout(IDropout dropout)
Set the dropout
-