You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OPENThis issue is currently unattended (e.g. without an associated code branch).questionIssue for evaluation. Can evolve into a confirmed bug, defect, new feature, etc.
The text was updated successfully, but these errors were encountered:
PauloCarvalhoRJ
added
question
Issue for evaluation. Can evolve into a confirmed bug, defect, new feature, etc.
OPEN
This issue is currently unattended (e.g. without an associated code branch).
labels
May 6, 2022
OPENThis issue is currently unattended (e.g. without an associated code branch).questionIssue for evaluation. Can evolve into a confirmed bug, defect, new feature, etc.
Correct implementation of gradient descent:
temp0 = Var0 - alpha*d/dVar0(function);
temp1 = Var1 - alpha*d/dVar1(function);
Var0 = temp0;
Var1 = temp1;
The text was updated successfully, but these errors were encountered: