I don’t want to use the data from the database directly, the data is raw in the database, and the database tables are designed, not a table of input data.
I want to fetch the data from the database, transform it into the input which is integers and double(can change to float) in memory, queue it in, and pass it to the model.
But i am not familiar with the Dataset and INDArray creation,
if the input is 10 values and the output is 2, where or how to map the data to the those objects/classes
is the first parameter expected an input array with a size of the 10 input values? then the output as an array of 2 values? how to add multiple objects? should it be array[sizeOfEntriesToTrainAtOneTime][10][2] for example, or put INDArray into a dataset? as in the dataset is a collection of INDArrays