Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check whether the Gradient Descent is using simultaneous updating. #279

Open
PauloCarvalhoRJ opened this issue May 6, 2022 · 0 comments
Labels
OPEN This issue is currently unattended (e.g. without an associated code branch). question Issue for evaluation. Can evolve into a confirmed bug, defect, new feature, etc.

Comments

@PauloCarvalhoRJ
Copy link
Owner

PauloCarvalhoRJ commented May 6, 2022

Correct implementation of gradient descent:
temp0 = Var0 - alpha*d/dVar0(function);
temp1 = Var1 - alpha*d/dVar1(function);
Var0 = temp0;
Var1 = temp1;

@PauloCarvalhoRJ 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
OPEN This issue is currently unattended (e.g. without an associated code branch). question Issue for evaluation. Can evolve into a confirmed bug, defect, new feature, etc.
Projects
None yet
Development

No branches or pull requests

1 participant