When creating dataset ,I have a error ' All variables must have same number of rows'. Help me how to resolve this error

1 view (last 30 days)
I am having a Dataset of input of size 23,193 and target variable of size 1,195 for training neural network .How to solve this error

Accepted Answer

Greg Heath
Greg Heath on 5 Feb 2016
For each Input column of dimension I there has to be a corresponding Output target column of dimension O
[ I N ] = size(input);
[ O N ]= size(target);
Hope this helps.
Thank you for formally accepting my answer
Greg

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!