-
Notifications
You must be signed in to change notification settings - Fork 504
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
optimizer 1d -- EMA in place (fbgemm part) #3402
base: main
Are you sure you want to change the base?
Conversation
This pull request was exported from Phabricator. Differential Revision: D66015331 |
✅ Deploy Preview for pytorch-fbgemm-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Summary: X-link: facebookresearch/FBGEMM#490 Implement the ema_within_table_rowwise_adagrad ``` Emb_table: ------------------------------------------------- - -- - - Fast part -- Slow part - - (RL) main part -- target part - - -- - ------------------------------------------------- In every "step_ema" step, we perform slow_part += coef_ema * (fast_part - slow_part) ``` It mainly serves the target network purpose in the reinforcement learning framework. Design doc https://fburl.com/gdoc/qyfv7tyi Differential Revision: D66015331
9b7dfa8
to
7ed3bdf
Compare
This pull request was exported from Phabricator. Differential Revision: D66015331 |
7ed3bdf
to
00bc046
Compare
Summary: X-link: facebookresearch/FBGEMM#490 Implement the ema_within_table_rowwise_adagrad ``` Emb_table: ------------------------------------------------- - -- - - Fast part -- Slow part - - (RL) main part -- target part - - -- - ------------------------------------------------- In every "step_ema" step, we perform slow_part += coef_ema * (fast_part - slow_part) ``` It mainly serves the target network purpose in the reinforcement learning framework. Design doc https://fburl.com/gdoc/qyfv7tyi Differential Revision: D66015331
This pull request was exported from Phabricator. Differential Revision: D66015331 |
Summary: X-link: facebookresearch/FBGEMM#490 Implement the ema_within_table_rowwise_adagrad ``` Emb_table: ------------------------------------------------- - -- - - Fast part -- Slow part - - (RL) main part -- target part - - -- - ------------------------------------------------- In every "step_ema" step, we perform slow_part += coef_ema * (fast_part - slow_part) ``` It mainly serves the target network purpose in the reinforcement learning framework. Design doc https://fburl.com/gdoc/qyfv7tyi Differential Revision: D66015331
00bc046
to
b0a8d8a
Compare
This pull request was exported from Phabricator. Differential Revision: D66015331 |
Differential Revision: D66346179
Summary: X-link: facebookresearch/FBGEMM#490 Pull Request resolved: pytorch#3402 Implement the ema_within_table_rowwise_adagrad ``` Emb_table: ------------------------------------------------- - -- - - Fast part -- Slow part - - (RL) main part -- target part - - -- - ------------------------------------------------- In every "step_ema" step, we perform slow_part += coef_ema * (fast_part - slow_part) ``` It mainly serves the target network purpose in the reinforcement learning framework. Design doc https://fburl.com/gdoc/qyfv7tyi Differential Revision: D66015331
b0a8d8a
to
0ed0365
Compare
This pull request was exported from Phabricator. Differential Revision: D66015331 |
Summary:
Implement the ema_within_table_rowwise_adagrad
It mainly serves the target network purpose in the reinforcement learning framework.
Design doc https://fburl.com/gdoc/qyfv7tyi
Differential Revision: D66015331