Problem of neural network prediction

2 vues (au cours des 30 derniers jours)
hariharan mahalingam
hariharan mahalingam le 30 Oct 2014
[Xs,Xi,Ai,Ts]=preparets(net,x,t);
Error using preparets (line 175) Number of output signals does not match number of network's non-feedback outputs.
Error in main (line 50) [Xs,Xi,Ai,Ts]=preparets(net,x,t);

Réponses (2)

Saeed Bello
Saeed Bello le 18 Fév 2020
You will need to convert your data to standard neural network cell array form.
Try this:
inputs = tonndata(inputs,false,false);
target = tonndata(target,false,false);
Then
[Xs,Xi,Ai,Ts]=preparets(net,inputs,target);
Hope this help.

Greg Heath
Greg Heath le 31 Oct 2014
Insufficient info.
Which net?
Size of inputs and targets?
Size of ID and FD?
code?
  1 commentaire
Kishore Kumar
Kishore Kumar le 7 Mai 2015
Hi sir, i am having same problem as mentioned by Hariharan. my input data size is 13X150 and target is 1X150. And i'm using NARX net. Can u Please help me.
Thanks in advance.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Sequence and Numeric Feature Data Workflows dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by