Multiple-inputn Recurrent- Elman Neural Network

조회 수: 3 (최근 30일)
arnaud ensberg
arnaud ensberg 2017년 2월 28일
댓글: arnaud ensberg 2017년 3월 1일
Hello ; Is it possible to use Recurrent neural network, Elman neural network in matlab "elmannet", with Multiple-input for multi-class classification. in the documentations, they present juste an exemple with one input wich represents one class.
[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)

답변 (1개)

Greg Heath
Greg Heath 2017년 2월 28일
It doesn't make any sense to use a timeseries net for classification.
Use patternnet:
help patternnet
doc patternnet
Search Newsgroup and ANSWERS using
greg patternnet
Hope this helps.
Greg
  댓글 수: 1
arnaud ensberg
arnaud ensberg 2017년 3월 1일
i used patternnet to classification, but i want use Recurrent neural network To predict the rest of the sequence among multi sequences .

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by