Uses of Class
io.bhagat.ai.supervised.DataSet
-
Packages that use DataSet Package Description io.bhagat.ai.supervised A package that holds AI algorithms that fall under supervised learning -
-
Uses of DataSet in io.bhagat.ai.supervised
Methods in io.bhagat.ai.supervised that return DataSet Modifier and Type Method Description static DataSetDataSet. create(double[][] inputs, double[][] outputs)creates a dataset from arrays of inputs and outputsMethods in io.bhagat.ai.supervised with parameters of type DataSet Modifier and Type Method Description doubleNeuralNetwork. test(DataSet dataSet)tests the datadoubleNeuralNetwork. test(DataSet dataSet, boolean log)tests the datavoidNeuralNetwork. train(DataSet dataSet)trains the network using all the data points in the data setvoidNeuralNetwork. train(DataSet dataSet, int epoch)trains the network using all the data points in the data set
-