I have many csv files that has multiple rows and columns which are mostly floating point numbers (some are categorical but one-hot encoded). Each csv file is the representation of one training example.It contains dependent and independent variables in the same file. (for example, its not like machine learning problem where each row contains all the information and predicts y1, y2,y3 of that row, its like all the rows combined of x1 to x8 will predict all rows combined of y1 to y3. Hence each csv becomes one training example.
representation of one such csv
** The above image is the representation of one of such csv files
Please note that the length/size of each csv varies.
I want to build a simple ann or any other neural net model. I have problem in processing input data. As each csv is one single training example, in which format should i have to store data to pass to a neural net.
Thanks in advance, skw
y1,y2,y3for 8 input attributes :x1-x8- Suraj Subramanian