Uses of Interface
deepnetts.net.loss.LossFunction
Packages that use LossFunction
Package
Description
Neural network architectures with their corresponding builders.
Commonly used loss functions, which are used to calculate error during the training as a difference between predicted and target output.
-
Uses of LossFunction in deepnetts.net
Methods in deepnetts.net that return LossFunctionModifier and TypeMethodDescriptionNeuralNetwork.getLossFunction()
Returns a loss function of this network, which is used to calculate total network error during the training.Methods in deepnetts.net with parameters of type LossFunctionModifier and TypeMethodDescriptionvoid
NeuralNetwork.setLossFunction
(LossFunction lossFunction) Sets a loss function of this network, which is used to calculate total network error during the training. -
Uses of LossFunction in deepnetts.net.loss
Classes in deepnetts.net.loss that implement LossFunctionModifier and TypeClassDescriptionclass
Cross Entropy Loss is a loss function used for binary classification tasks (two classes, single output which represents probability ).class
Average Cross Entropy Loss function commonly used for multi class classification problems.final class
Mean Squared Error Loss function.