Uses of Class
org.ojalgo.ann.NetworkTrainer
-
Packages that use NetworkTrainer Package Description org.ojalgo.ann -
-
Uses of NetworkTrainer in org.ojalgo.ann
Methods in org.ojalgo.ann that return NetworkTrainer Modifier and Type Method Description NetworkTrainer
NetworkTrainer. activator(int layer, ArtificialNeuralNetwork.Activator activator)
Deprecated.UseNetworkBuilder
andNetworkBuilder.layer(int, Activator)
instead.NetworkTrainer
NetworkTrainer. activators(ArtificialNeuralNetwork.Activator activator)
Deprecated.UseNetworkBuilder
andNetworkBuilder.layer(int, Activator)
instead.NetworkTrainer
NetworkTrainer. activators(ArtificialNeuralNetwork.Activator... activators)
Deprecated.UseNetworkBuilder
andNetworkBuilder.layer(int, Activator)
instead.NetworkTrainer
NetworkTrainer. bias(int layer, int output, double bias)
static NetworkTrainer
ArtificialNeuralNetwork. builder(int numberOfInputNodes, int... nodesPerCalculationLayer)
Deprecated.UseArtificialNeuralNetwork.builder(int)
insteadstatic NetworkTrainer
ArtificialNeuralNetwork. builder(PhysicalStore.Factory<java.lang.Double,?> factory, int numberOfInputNodes, int... nodesPerCalculationLayer)
Deprecated.NetworkTrainer
NetworkTrainer. dropouts()
NetworkTrainer
NetworkTrainer. error(ArtificialNeuralNetwork.Error error)
NetworkTrainer
NetworkTrainer. lasso(double factor)
L1 lasso regularisationNetworkTrainer
ArtificialNeuralNetwork. newTrainer()
With batch size 1NetworkTrainer
ArtificialNeuralNetwork. newTrainer(int batchSize)
Only 1 trainer at the time.NetworkTrainer
NetworkTrainer. rate(double rate)
NetworkTrainer
NetworkTrainer. ridge(double factor)
L2 ridge regularisationNetworkTrainer
NetworkTrainer. weight(int layer, int input, int output, double weight)
-