How can I modify this Elman Recurrent Neural Network into 3 layer 6-6-1 Network, i.e. one input layer with 6 nodes, one hidden layer with 6 nodes and 1 output node? And then how to add a new layer to the hidden layer, like in DRNN. Thank You!!!
3 ビュー (過去 30 日間)
古いコメントを表示
[X,T] = simpleseries_dataset; net = elmannet(1:2,10); [Xs,Xi,Ai,Ts] = preparets(net,X,T); net = train(net,Xs,Ts,Xi,Ai); view(net) Y = net(Xs,Xi,Ai); perf = perform(net,Ts,Y)
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Modeling and Prediction with NARX and Time-Delay Networks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!