How to useParallel in system identification?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Lucas Ferreira-Correia
le 15 Août 2019
Réponse apportée : Rajiv Singh
le 16 Août 2019
Is there a way to use 'useParallel' on the nlarx function in the system identification, like with the train function in the deep learning toolbox? I'm using neuralnet as the nonlinearity. Here's the training section of my script:
%% Training
na = 3;
nb = [3 1 1];
nk = [0 0 0];
net = feedforwardnet(10);
net.trainParam.epochs = 5000;
nonlinearity = neuralnet(net);
sys = nlarx(zt, [na nb nk], nonlinearity);
Any help is greatly appreciated!
0 commentaires
Réponse acceptée
Rajiv Singh
le 16 Août 2019
Currently there is no way to parallelize model estimation in System Identification Toolbox.
0 commentaires
Plus de réponses (0)
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!