"removedelay" and predicting
31 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I trained narx network for training data.
Net : trained network
Nets : removedelay(Net)
Ys = net(Nets, ...)
If I apply removedelay network to test data, all results(Ys) are predicted value from trained network(Net) ?
What is the difference between "net(Net, testdata)" and "net(Nets, testdata)" ???
0 commentaires
Réponses (1)
Raunak Gupta
le 27 Mai 2020
Hi,
From the documentation of removedelay I can see that the prediction on Nets in question will result in output of one-time step ahead. It is clearly mentioned that for original network if the output is y(t) then removed delay network will return y(t+1). So, both predictions will be same but in the removed delay network one extra prediction will be there because the time delay is not present. You may try the example given in the documentation to confirm the same.
0 commentaires
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox 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!