Uses of Class
de.jungblut.classification.nn.TrainingType
-
Packages that use TrainingType Package Description de.jungblut.classification.nn -
-
Uses of TrainingType in de.jungblut.classification.nn
Fields in de.jungblut.classification.nn declared as TrainingType Modifier and Type Field Description TrainingTypeMultilayerPerceptronCostFunction.NetworkConfiguration. trainingTypeMethods in de.jungblut.classification.nn that return TrainingType Modifier and Type Method Description static TrainingTypeTrainingType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TrainingType[]TrainingType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.jungblut.classification.nn with parameters of type TrainingType Modifier and Type Method Description MultilayerPerceptron.MultilayerPerceptronBuilderMultilayerPerceptron.MultilayerPerceptronBuilder. trainingType(TrainingType type)Sets the training type, it defaults to CPU- so only use if you want to use the GPU.RBM.RBMBuilderRBM.RBMBuilder. trainingType(TrainingType type)Sets the training type, it defaults to CPU- so only use if you want to use the GPU.Constructors in de.jungblut.classification.nn with parameters of type TrainingType Constructor Description RBMCostFunction(de.jungblut.math.DoubleVector[] currentTrainingSet, int batchSize, int numThreads, int numHiddenUnits, ActivationFunction activationFunction, TrainingType type, double lambda, long seed, boolean stochastic)
-