Uses of Interface
org.deeplearning4j.nn.api.layers.LayerConstraint
-
-
Uses of LayerConstraint in org.deeplearning4j.nn.api.layers
Methods in org.deeplearning4j.nn.api.layers that return LayerConstraint Modifier and Type Method Description LayerConstraintLayerConstraint. clone() -
Uses of LayerConstraint in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf with type parameters of type LayerConstraint Modifier and Type Field Description protected List<LayerConstraint>NeuralNetConfiguration.Builder. allParamConstraintsprotected List<LayerConstraint>NeuralNetConfiguration.Builder. biasConstraintsprotected List<LayerConstraint>NeuralNetConfiguration.Builder. weightConstraintsMethods in org.deeplearning4j.nn.conf with parameters of type LayerConstraint Modifier and Type Method Description NeuralNetConfiguration.BuilderNeuralNetConfiguration.Builder. constrainAllParameters(LayerConstraint... constraints)Set constraints to be applied to all layers.NeuralNetConfiguration.BuilderNeuralNetConfiguration.Builder. constrainBias(LayerConstraint... constraints)Set constraints to be applied to all layers.NeuralNetConfiguration.BuilderNeuralNetConfiguration.Builder. constrainWeights(LayerConstraint... constraints)Set constraints to be applied to all layers. -
Uses of LayerConstraint in org.deeplearning4j.nn.conf.constraint
Classes in org.deeplearning4j.nn.conf.constraint that implement LayerConstraint Modifier and Type Class Description classBaseConstraintclassMaxNormConstraintclassMinMaxNormConstraintclassNonNegativeConstraintclassUnitNormConstraint -
Uses of LayerConstraint in org.deeplearning4j.nn.conf.layers
Fields in org.deeplearning4j.nn.conf.layers with type parameters of type LayerConstraint Modifier and Type Field Description protected List<LayerConstraint>Layer.Builder. allParamConstraintsprotected List<LayerConstraint>BatchNormalization.Builder. betaConstraintsSet constraints to be applied to the beta parameter of this batch normalisation layer.protected List<LayerConstraint>Layer.Builder. biasConstraintsprotected List<LayerConstraint>Layer. constraintsprotected List<LayerConstraint>BatchNormalization.Builder. gammaConstraintsSet constraints to be applied to the gamma parameter of this batch normalisation layer.protected List<LayerConstraint>BaseRecurrentLayer.Builder. inputWeightConstraintsSet constraints to be applied to the RNN input weight parameters of this layer.protected List<LayerConstraint>SeparableConvolution2D.Builder. pointWiseConstraintsSet constraints to be applied to the point-wise convolution weight parameters of this layer.protected List<LayerConstraint>BaseRecurrentLayer.Builder. recurrentConstraintsSet constraints to be applied to the RNN recurrent weight parameters of this layer.protected List<LayerConstraint>Layer.Builder. weightConstraintsMethods in org.deeplearning4j.nn.conf.layers with parameters of type LayerConstraint Modifier and Type Method Description TLayer.Builder. constrainAllParameters(LayerConstraint... constraints)Set constraints to be applied to this layer.BatchNormalization.BuilderBatchNormalization.Builder. constrainBeta(LayerConstraint... constraints)Set constraints to be applied to the beta parameter of this batch normalisation layer.TLayer.Builder. constrainBias(LayerConstraint... constraints)Set constraints to be applied to bias parameters of this layer.BatchNormalization.BuilderBatchNormalization.Builder. constrainGamma(LayerConstraint... constraints)Set constraints to be applied to the gamma parameter of this batch normalisation layer.TBaseRecurrentLayer.Builder. constrainInputWeights(LayerConstraint... constraints)Set constraints to be applied to the RNN input weight parameters of this layer.SeparableConvolution2D.BuilderSeparableConvolution2D.Builder. constrainPointWise(LayerConstraint... constraints)Set constraints to be applied to the point-wise convolution weight parameters of this layer.TBaseRecurrentLayer.Builder. constrainRecurrent(LayerConstraint... constraints)Set constraints to be applied to the RNN recurrent weight parameters of this layer.TLayer.Builder. constrainWeights(LayerConstraint... constraints)Set constraints to be applied to the weight parameters of this layer. -
Uses of LayerConstraint in org.deeplearning4j.nn.conf.layers.misc
Method parameters in org.deeplearning4j.nn.conf.layers.misc with type arguments of type LayerConstraint Modifier and Type Method Description voidFrozenLayer. setConstraints(List<LayerConstraint> constraints)voidFrozenLayerWithBackprop. setConstraints(List<LayerConstraint> constraints) -
Uses of LayerConstraint in org.deeplearning4j.nn.transferlearning
Fields in org.deeplearning4j.nn.transferlearning with type parameters of type LayerConstraint Modifier and Type Field Description protected Optional<List<LayerConstraint>>FineTuneConfiguration. constraintsMethod parameters in org.deeplearning4j.nn.transferlearning with type arguments of type LayerConstraint Modifier and Type Method Description FineTuneConfiguration.BuilderFineTuneConfiguration.Builder. constraints(List<LayerConstraint> constraints)Set constraints to be applied to all layers.
-