Reverse Engineering traingd in ANN?

I am sort of trying to reverse engineer traingd algorithm. dWB = param.lr * gWB is the equation shown in traingd.m, would like to understand how gWB is calculated. Any reference/example/sourcecode/backpaper in this regard is much appreciated. Thanks in advance!

回答 (1 件)

Greg Heath
Greg Heath 2014 年 3 月 20 日

0 投票

type traingd
% Initialize
startTime = clock;
original_net = net;
[perf,vperf,tperf,gWB,gradient] = nntraining.perfs_grad(net,data,fcns);
...
...
% Gradient Descent
dWB = param.lr * gWB;
WB = WB + dWB;
net = setwb(net,WB);
[perf,vperf,tperf,gWB,gradient] = nntraining.perfs_grad(net,data,fcns);
>> help nntraining
Neural Network Toolbox Utility Functions
This directory contains utility functions. It is recommended these functions not be used as they may be removed or altered in future versions of this software.
So, search for the directory containing utility functions
Hope this help.
Thank you for formally accepting my answer
Greg

4 件のコメント

Kannan
Kannan 2014 年 3 月 28 日
編集済み: Kannan 2014 年 3 月 28 日
Had a hard time going through utility functions, in vain. Anyway, Thanks a lot. By the way, have you ever tried it yourself?
Greg Heath
Greg Heath 2014 年 3 月 28 日
No.
Kannan
Kannan 2014 年 3 月 28 日
Hurray! Successfully calculated 'change in weight/bias' for the output layer. Moving on to hidden layer now.
Greg Heath
Greg Heath 2014 年 3 月 28 日
Good Luck

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeDeep Learning Toolbox についてさらに検索

質問済み:

2014 年 3 月 19 日

コメント済み:

2014 年 3 月 28 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by