What's the meaning of the parameter, "input delay", in Neural network toolkit?
이전 댓글 표시
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?
답변 (1개)
Greg Heath
2015년 8월 9일
ID = [0:1} means
y(t+1) = f1(x(t+ID)) = f2(x(t+1),x(t))
Hope this helps.
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!