I'm going to build up a narx model using two inputs with different input delays for each input. How should i put different input delays in to my network?
Ältere Kommentare anzeigen
inputsarray=[dlngold;day1]; inputs1=con2seq(inputsarray)
target=con2seq(aspilnreturn)
inputSeries = inputs1; targetSeries = target;
inputDelays = 1:1; feedbackDelays = 1:3; hiddenLayerSize = 2; net = narxnet(inputDelays,feedbackDelays,hiddenLayerSize);
[inputs,inputStates,layerStates,targets] = preparets(net,inputSeries,{},targetSeries);
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!