How to built time delay network for time series prediction ?

조회 수: 1 (최근 30일)
Ahmed Al Ali
Ahmed Al Ali 2013년 3월 9일
댓글: Xunbi Ji 2021년 3월 24일
Hi all
I have input p 5x101 cell and target t 1x101 cell. I want to use timedelaynet function to predict this time series. I write this script:
net = timedelaynet(1:8,10);
[Ps,Pi,Ai,Ts] = preparets(net,p,t);
The following error occurred:
Error using preparets (line 161) The number of input signals does not match network's non-feedback inputs.
Error in TimeSeriesPreduction (line 9)
[Ps,Pi,Ai,Ts] = preparets(net,p,t);
  댓글 수: 1
pradeep
pradeep 2013년 8월 22일
Hi every one,
Can any one please guide me how to divide and prepare input and target cell from the raw data... can u please tell me what is the procedure for time series prediction... starting from beginning...??
please help me out...

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

채택된 답변

Greg Heath
Greg Heath 2013년 3월 10일
The created net does not know it is going to have a 5-dimensional input.
view(net)
Therefore, tell it by using CONFIGURE (help/doc) .
view(net) % Checking
Hope this helps.
Thank you for formally accepting my answer
Greg
  댓글 수: 7
Mirko Job
Mirko Job 2019년 9월 25일
And what about if I have multiple time sequences on which i want to train my network?
Xunbi Ji
Xunbi Ji 2021년 3월 24일
Maybe this can help https://www.mathworks.com/help/deeplearning/ug/multiple-sequences-with-dynamic-neural-networks.html

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by