Hi i want to train a neural network with a Table in put. The Table is structured as input(rawdata = 111x1 Cell, with each cell a 512x1 Cell) and Response(label = 111x1 Cell). I tried a lot, but it seems to be more compllicated then i thought. I will paste the code Itried so far, but I dont know what to try next.
T = table(rawdata,label);
numObservations = size(T, 1);
numObservationsTrain = floor(0.85*numObservations);
numObservationsTest = numObservations - numObservationsTrain;
idx = randperm(numObservations);
idxTrain = idx(1:numObservationsTrain);
idxTest = idx(numObservationsTrain+1:end);
tblTrain = tabulate(idxTrain,:);
tblTest = tabulate(idxTest,:);
This is from a matlab example.
This is the Table
and this is the input in the cell, with different data but same formats:
Thanks, I am noob btw