Skip to content

Commit

Permalink
Add missing parenthesis to Nesterov formula
Browse files Browse the repository at this point in the history
  • Loading branch information
ValerianRey authored Feb 24, 2023
1 parent 1760458 commit 7ad0209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2050,7 +2050,7 @@ $$v_0 = 0$$

$$v_{t+1} = \gamma v_{t} + \nabla \mathcal{l}(\theta_t)$$

$$\theta_{t+1} = \theta_{t} - \eta_t( \gamma v_{t+1} + \nabla \mathcal{l}(\theta_{t})$$
$$\theta_{t+1} = \theta_{t} - \eta_t( \gamma v_{t+1} + \nabla \mathcal{l}(\theta_{t}))$$

#### RMSProp

Expand Down

0 comments on commit 7ad0209

Please sign in to comment.