Reference to "adaptwb" function in Neural Network toolbox.
古いコメントを表示
I applied the "adaptwb" function to the implementation of my algorithm. Thus, I want to describe the mechanism of this function in my paper, but the detail of this function is not provided in the technical document of MATLAB. So, I wonder if there are any references to this function.
採用された回答
その他の回答 (1 件)
Greg Heath
2015 年 8 月 17 日
Have you tried the 3 command line documentation sources?
help adapt
doc adapt
type adapt
Hope this helps.
Thank you for formally accepting my answer
Greg
2 件のコメント
Alvaro Macias
2018 年 11 月 15 日
Hi, I have tried those commands and tried to go deeper on the Neural Network Adapt Functions.
In the nnproperty.net_adaptFcn said that the nnadapt just contains adaptwb as the only option. Inside the doc said that adaptwb is a "Sequential order incremental training w/learning functions" if we assume that it is similar to trains, that's mean that the algoritms will be similiar "Each weight and bias is updated according to its learning function after each time step in the input sequence".
I want to know if adaptwb uses the same learning function as trians. In that case the adaptation can be done with all the function listed in nnlearn. Is it that correct?
Best regards,
Alvaro
Alvaro Macias
2018 年 11 月 16 日
Finally I found that adapt uses the learn function learnFcn and train uses the train function trainFcn.
net.biases{i}.learnFcn
This property defines which of the learning functions is used to update the th layer's bias vector (net.b{i}) during training, if the network training function is trainb, trainc, or trainr, or during adapt, if the network adapt function is trains. For a list of functions, type help nnlearn [Matlab].
Hope this helps others
カテゴリ
ヘルプ センター および File Exchange で Deep Learning Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!