What's the meaning of the parameter, "input delay", in Neural network toolkit?

1 visualización (últimos 30 días)
for example, the prototype of 'newlin' is: net = newlin(P,S,ID,LR), where the ID is refered as "input delay", and in help manual we can see the example code as following:
net = newlin([-1 1],1,[0 1],0.01);
P1 = {0 -1 1 1 0 -1 1 0 0 1};
Y = sim(net,P1)
T1 = {0 -1 0 2 1 -1 0 1 0 1};
[net,Y,E,Pf] = adapt(net,P1,T1); Y
But I still can't understand the funcional use for ID, why in sim and adapt we don't need the ID parameter since it's a part of the network architecture?
What is ID indeed mean?

Respuestas (1)

Greg Heath
Greg Heath el 9 de Ag. de 2015
ID = [0:1} means
y(t+1) = f1(x(t+ID)) = f2(x(t+1),x(t))
Hope this helps.
Greg

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