How to built time delay network for time series prediction ?

1 visualización (últimos 30 días)
Ahmed Al Ali
Ahmed Al Ali el 9 de Mzo. de 2013
Comentada: Xunbi Ji el 24 de Mzo. de 2021
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 comentario
pradeep
pradeep el 22 de Ag. de 2013
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...

Iniciar sesión para comentar.

Respuesta aceptada

Greg Heath
Greg Heath el 10 de Mzo. de 2013
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 comentarios
Mirko Job
Mirko Job el 25 de Sept. de 2019
And what about if I have multiple time sequences on which i want to train my network?
Xunbi Ji
Xunbi Ji el 24 de Mzo. de 2021
Maybe this can help https://www.mathworks.com/help/deeplearning/ug/multiple-sequences-with-dynamic-neural-networks.html

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by