Uses of Interface
de.jungblut.math.loss.LossFunction
-
Packages that use LossFunction Package Description de.jungblut.classification.nn de.jungblut.math.loss -
-
Uses of LossFunction in de.jungblut.classification.nn
Fields in de.jungblut.classification.nn declared as LossFunction Modifier and Type Field Description LossFunctionMultilayerPerceptronCostFunction.NetworkConfiguration. errorMethods in de.jungblut.classification.nn with parameters of type LossFunction Modifier and Type Method Description static MultilayerPerceptron.MultilayerPerceptronBuilderMultilayerPerceptron.MultilayerPerceptronBuilder. create(int[] layer, ActivationFunction[] activations, LossFunction errorFunction, Minimizer minimizer, int maxIteration)Creates a new TrainingConfiguration with the mandatory configurations of the activation functions, the to be used minimizer and the maximum iterations. -
Uses of LossFunction in de.jungblut.math.loss
Classes in de.jungblut.math.loss that implement LossFunction Modifier and Type Class Description classCrossEntropyLossCross entropy error function, for example to be used with theSoftMaxActivationFunction.classHingeLossHinge-loss for linear SVMs.classLogLossLogistic error function implementation.classMeanAbsoluteLossMAE for regression problems.classSquaredLossSquared mean error function for regression problems andLinearActivationFunction.classStepLossCalculates a step error function that can be used forStepActivationFunction.
-