I am trying to train ANN and it gives following error:Input data size does not match net.inputs{1}.size...Someone plz help me. Its been days correcting the error
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
amna batool
el 14 de En. de 2019
Comentada: amna batool
el 16 de En. de 2019
net10 = newff([0 1;0 1;1 6],[5 2],{'tansig' 'purelin'});
net10.trainParam.epochs = 50;
net10.trainParam.goal=0;
net10 = train(net10,p,t);
Y = sim(net10,p);
e=t-Y;
plot(p,t,p,Y,'o')
0 comentarios
Respuesta aceptada
Israr Haq
el 15 de En. de 2019
Hello.
Seems like dimensions of net10 and p are not the same. They must be the same before simulating the network.
Más respuestas (0)
Ver también
Categorías
Más información sobre Sequence and Numeric Feature Data Workflows en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!