Reference to "adaptwb" function in Neural Network toolbox.
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
Greg Heath
le 17 Août 2015
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 commentaires
Alvaro Macias
le 15 Nov 2018
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
le 16 Nov 2018
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
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!