Uses of Interface
org.deeplearning4j.optimize.api.TrainingListener
-
-
Uses of TrainingListener in org.deeplearning4j.nn.api
Methods in org.deeplearning4j.nn.api that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>Layer. getListeners()Get the iteration listeners for this layer.Methods in org.deeplearning4j.nn.api with parameters of type TrainingListener Modifier and Type Method Description voidModel. addListeners(TrainingListener... listener)This method ADDS additional TrainingListener to existing listenersvoidLayer. setListeners(TrainingListener... listeners)Set theTrainingListeners for this model.voidModel. setListeners(TrainingListener... listeners)Set the trainingListeners for the ComputationGraph (and all layers in the network)Method parameters in org.deeplearning4j.nn.api with type arguments of type TrainingListener Modifier and Type Method Description voidLayer. setListeners(Collection<TrainingListener> listeners)Set theTrainingListeners for this model.voidModel. setListeners(Collection<TrainingListener> listeners)Set the trainingListeners for the ComputationGraph (and all layers in the network) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers
Method parameters in org.deeplearning4j.nn.conf.layers with type arguments of type TrainingListener Modifier and Type Method Description LayerActivationLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerAutoEncoder. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerBatchNormalization. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerCenterLossOutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerCnn3DLossLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerCnnLossLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerConvolution1DLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerConvolution3D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> iterationListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerConvolutionLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerDeconvolution2D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerDeconvolution3D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerDenseLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerDepthwiseConvolution2D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerDropoutLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerEmbeddingLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerEmbeddingSequenceLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerGlobalPoolingLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerGravesBidirectionalLSTM. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)Deprecated.LayerGravesLSTM. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)Deprecated.abstract LayerLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerLocalResponseNormalization. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerLossLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerLSTM. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerOutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerPReLULayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerRnnLossLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerRnnOutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSeparableConvolution2D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSpaceToBatchLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSpaceToDepthLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSubsampling1DLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSubsampling3DLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> iterationListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSubsamplingLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerUpsampling1D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerUpsampling2D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerUpsampling3D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> iterationListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerZeroPadding1DLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerZeroPadding3DLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> iterationListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerZeroPaddingLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.convolutional
Method parameters in org.deeplearning4j.nn.conf.layers.convolutional with type arguments of type TrainingListener Modifier and Type Method Description LayerCropping1D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerCropping2D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerCropping3D. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> iterationListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.misc
Method parameters in org.deeplearning4j.nn.conf.layers.misc with type arguments of type TrainingListener Modifier and Type Method Description LayerElementWiseMultiplicationLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerFrozenLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerFrozenLayerWithBackprop. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerRepeatVector. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.objdetect
Method parameters in org.deeplearning4j.nn.conf.layers.objdetect with type arguments of type TrainingListener Modifier and Type Method Description LayerYolo2OutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.recurrent
Method parameters in org.deeplearning4j.nn.conf.layers.recurrent with type arguments of type TrainingListener Modifier and Type Method Description LayerBidirectional. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerLastTimeStep. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSimpleRnn. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerTimeDistributed. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.samediff
Method parameters in org.deeplearning4j.nn.conf.layers.samediff with type arguments of type TrainingListener Modifier and Type Method Description abstract LayerAbstractSameDiffLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSameDiffLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerSameDiffOutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.util
Method parameters in org.deeplearning4j.nn.conf.layers.util with type arguments of type TrainingListener Modifier and Type Method Description LayerMaskLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)LayerMaskZeroLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.layers.variational
Method parameters in org.deeplearning4j.nn.conf.layers.variational with type arguments of type TrainingListener Modifier and Type Method Description LayerVariationalAutoencoder. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.conf.ocnn
Method parameters in org.deeplearning4j.nn.conf.ocnn with type arguments of type TrainingListener Modifier and Type Method Description LayerOCNNOutputLayer. instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType) -
Uses of TrainingListener in org.deeplearning4j.nn.graph
Methods in org.deeplearning4j.nn.graph that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>ComputationGraph. getListeners()Get the trainingListeners for the ComputationGraphMethods in org.deeplearning4j.nn.graph with parameters of type TrainingListener Modifier and Type Method Description voidComputationGraph. addListeners(TrainingListener... listeners)This method ADDS additional TrainingListener to existing listenersvoidComputationGraph. setListeners(TrainingListener... listeners)Set the trainingListeners for the ComputationGraph (and all layers in the network)Method parameters in org.deeplearning4j.nn.graph with type arguments of type TrainingListener Modifier and Type Method Description voidComputationGraph. setListeners(Collection<TrainingListener> listeners)Set the trainingListeners for the ComputationGraph (and all layers in the network) -
Uses of TrainingListener in org.deeplearning4j.nn.layers
Fields in org.deeplearning4j.nn.layers with type parameters of type TrainingListener Modifier and Type Field Description protected Collection<TrainingListener>AbstractLayer. trainingListenersMethods in org.deeplearning4j.nn.layers that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>AbstractLayer. getListeners()Methods in org.deeplearning4j.nn.layers with parameters of type TrainingListener Modifier and Type Method Description voidAbstractLayer. addListeners(TrainingListener... listeners)This method ADDS additional TrainingListener to existing listenersvoidAbstractLayer. setListeners(TrainingListener... listeners)Method parameters in org.deeplearning4j.nn.layers with type arguments of type TrainingListener Modifier and Type Method Description voidAbstractLayer. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.nn.layers.normalization
Fields in org.deeplearning4j.nn.layers.normalization with type parameters of type TrainingListener Modifier and Type Field Description protected List<TrainingListener>BatchNormalization. listenersMethods in org.deeplearning4j.nn.layers.normalization that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>BatchNormalization. getListeners()Methods in org.deeplearning4j.nn.layers.normalization with parameters of type TrainingListener Modifier and Type Method Description voidBatchNormalization. setListeners(TrainingListener... listeners) -
Uses of TrainingListener in org.deeplearning4j.nn.layers.recurrent
Methods in org.deeplearning4j.nn.layers.recurrent that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>BidirectionalLayer. getListeners()Methods in org.deeplearning4j.nn.layers.recurrent with parameters of type TrainingListener Modifier and Type Method Description voidBidirectionalLayer. addListeners(TrainingListener... listener)voidBidirectionalLayer. setListeners(TrainingListener... listeners)Method parameters in org.deeplearning4j.nn.layers.recurrent with type arguments of type TrainingListener Modifier and Type Method Description voidBidirectionalLayer. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.nn.layers.variational
Fields in org.deeplearning4j.nn.layers.variational with type parameters of type TrainingListener Modifier and Type Field Description protected Collection<TrainingListener>VariationalAutoencoder. trainingListenersMethods in org.deeplearning4j.nn.layers.variational that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>VariationalAutoencoder. getListeners()Methods in org.deeplearning4j.nn.layers.variational with parameters of type TrainingListener Modifier and Type Method Description voidVariationalAutoencoder. addListeners(TrainingListener... listeners)This method ADDS additional TrainingListener to existing listenersvoidVariationalAutoencoder. setListeners(TrainingListener... listeners)Method parameters in org.deeplearning4j.nn.layers.variational with type arguments of type TrainingListener Modifier and Type Method Description voidVariationalAutoencoder. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.nn.layers.wrapper
Methods in org.deeplearning4j.nn.layers.wrapper that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>BaseWrapperLayer. getListeners()Methods in org.deeplearning4j.nn.layers.wrapper with parameters of type TrainingListener Modifier and Type Method Description voidBaseWrapperLayer. addListeners(TrainingListener... listener)voidBaseWrapperLayer. setListeners(TrainingListener... listeners)Method parameters in org.deeplearning4j.nn.layers.wrapper with type arguments of type TrainingListener Modifier and Type Method Description voidBaseWrapperLayer. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.nn.multilayer
Fields in org.deeplearning4j.nn.multilayer with type parameters of type TrainingListener Modifier and Type Field Description protected Collection<TrainingListener>MultiLayerNetwork. trainingListenersMethods in org.deeplearning4j.nn.multilayer that return types with arguments of type TrainingListener Modifier and Type Method Description Collection<TrainingListener>MultiLayerNetwork. getListeners()Get theTrainingListeners set for this network, if anyCollection<TrainingListener>MultiLayerNetwork. getTrainingListeners()Deprecated.Methods in org.deeplearning4j.nn.multilayer with parameters of type TrainingListener Modifier and Type Method Description voidMultiLayerNetwork. addListeners(TrainingListener... listeners)This method ADDS additional TrainingListener to existing listenersvoidMultiLayerNetwork. setListeners(TrainingListener... listeners)Method parameters in org.deeplearning4j.nn.multilayer with type arguments of type TrainingListener Modifier and Type Method Description voidMultiLayerNetwork. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.optimize
Methods in org.deeplearning4j.optimize with parameters of type TrainingListener Modifier and Type Method Description Solver.BuilderSolver.Builder. listener(TrainingListener... listeners)Method parameters in org.deeplearning4j.optimize with type arguments of type TrainingListener Modifier and Type Method Description Solver.BuilderSolver.Builder. listeners(Collection<TrainingListener> listeners)voidSolver. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.optimize.api
Classes in org.deeplearning4j.optimize.api that implement TrainingListener Modifier and Type Class Description classBaseTrainingListenerclassIterationListenerDeprecated.Method parameters in org.deeplearning4j.optimize.api with type arguments of type TrainingListener Modifier and Type Method Description voidConvexOptimizer. setListeners(Collection<TrainingListener> listeners) -
Uses of TrainingListener in org.deeplearning4j.optimize.listeners
Classes in org.deeplearning4j.optimize.listeners that implement TrainingListener Modifier and Type Class Description classCheckpointListenerclassCollectScoresIterationListenerclassCollectScoresListenerclassComposableIterationListenerDeprecated.classEvaluativeListenerclassFailureTestingListenerclassPerformanceListenerclassScoreIterationListenerclassSleepyTrainingListenerclassTimeIterationListenerConstructors in org.deeplearning4j.optimize.listeners with parameters of type TrainingListener Constructor Description ComposableIterationListener(TrainingListener... TrainingListener)Deprecated.Constructor parameters in org.deeplearning4j.optimize.listeners with type arguments of type TrainingListener Constructor Description ComposableIterationListener(Collection<TrainingListener> listeners)Deprecated. -
Uses of TrainingListener in org.deeplearning4j.optimize.solvers
Fields in org.deeplearning4j.optimize.solvers with type parameters of type TrainingListener Modifier and Type Field Description protected Collection<TrainingListener>BaseOptimizer. trainingListenersMethod parameters in org.deeplearning4j.optimize.solvers with type arguments of type TrainingListener Modifier and Type Method Description voidBaseOptimizer. setListeners(Collection<TrainingListener> listeners)Constructor parameters in org.deeplearning4j.optimize.solvers with type arguments of type TrainingListener Constructor Description BaseOptimizer(NeuralNetConfiguration conf, StepFunction stepFunction, Collection<TrainingListener> trainingListeners, Model model)ConjugateGradient(NeuralNetConfiguration conf, StepFunction stepFunction, Collection<TrainingListener> trainingListeners, Model model)LBFGS(NeuralNetConfiguration conf, StepFunction stepFunction, Collection<TrainingListener> trainingListeners, Model model)LineGradientDescent(NeuralNetConfiguration conf, StepFunction stepFunction, Collection<TrainingListener> trainingListeners, Model model)StochasticGradientDescent(NeuralNetConfiguration conf, StepFunction stepFunction, Collection<TrainingListener> trainingListeners, Model model)
-