Uses of Interface
org.deeplearning4j.nn.conf.weightnoise.IWeightNoise
-
Packages that use IWeightNoise Package Description org.deeplearning4j.nn.conf org.deeplearning4j.nn.conf.layers org.deeplearning4j.nn.conf.weightnoise org.deeplearning4j.nn.transferlearning -
-
Uses of IWeightNoise in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf declared as IWeightNoise Modifier and Type Field Description protected IWeightNoise
NeuralNetConfiguration.Builder. weightNoise
Methods in org.deeplearning4j.nn.conf with parameters of type IWeightNoise Modifier and Type Method Description NeuralNetConfiguration.Builder
NeuralNetConfiguration.Builder. weightNoise(IWeightNoise weightNoise)
Set the weight noise (such asDropConnect
andWeightNoise
) for the 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 IWeightNoise in org.deeplearning4j.nn.conf.layers
Fields in org.deeplearning4j.nn.conf.layers declared as IWeightNoise Modifier and Type Field Description protected IWeightNoise
BaseLayer.Builder. weightNoise
Set the weight noise (such asDropConnect
andWeightNoise
) for this layerprotected IWeightNoise
BaseLayer. weightNoise
Methods in org.deeplearning4j.nn.conf.layers with parameters of type IWeightNoise Modifier and Type Method Description T
BaseLayer.Builder. weightNoise(IWeightNoise weightNoise)
Set the weight noise (such asDropConnect
andWeightNoise
) for this layer -
Uses of IWeightNoise in org.deeplearning4j.nn.conf.weightnoise
Classes in org.deeplearning4j.nn.conf.weightnoise that implement IWeightNoise Modifier and Type Class Description class
DropConnect
class
WeightNoise
Methods in org.deeplearning4j.nn.conf.weightnoise that return IWeightNoise Modifier and Type Method Description IWeightNoise
IWeightNoise. clone()
-
Uses of IWeightNoise in org.deeplearning4j.nn.transferlearning
Fields in org.deeplearning4j.nn.transferlearning with type parameters of type IWeightNoise Modifier and Type Field Description protected Optional<IWeightNoise>
FineTuneConfiguration. weightNoise
Methods in org.deeplearning4j.nn.transferlearning with parameters of type IWeightNoise Modifier and Type Method Description FineTuneConfiguration.Builder
FineTuneConfiguration.Builder. weightNoise(IWeightNoise weightNoise)
Set the weight noise (such asDropConnect
andWeightNoise
)
-