newlind() network and adapt() training function
조회 수: 3 (최근 30일)
이전 댓글 표시
Is it possible to add another layer of neurons in newlind()? I'm using adapt() function for training the time series problem without any delay.
If its not possible to add! What other network i can use? Feedforward is throwing error as
--Error using + Matrix dimensions must agree.
Error in nn7.grad2 (line 95) gA{i} = gA{i} + LWderivP' * gLWZ{k,i};
댓글 수: 6
Greg Heath
2018년 1월 12일
Why are you using adapt? The BEST approach is to FIRST try to use as many DEFAULTS as possible. After all, a group of expert developers carefully chose those values for good reasons.
Hope this helps.
Greg
답변 (1개)
Greg Heath
2018년 1월 11일
Use the fitnet defaults.
adapt is not a default.
Greg
댓글 수: 2
Greg Heath
2018년 1월 15일
Yes you can:
By using dimensionality reduction. Do you think that all 960 variables are independent of the others?
The most common technique is PRINCIPAL COMPONENT ANALYSIS (PCA) which uses a smaller number of principal components that are linear combinations of the original inputs.
Another technique is PARTIAL LEAST SQUARES (PLS)which is used infrequently because it is less known ... presumably because it involves transforming both outputs and inputs.
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!