Skip to content

Commit

Permalink
Merge pull request #1918 from alhirzel/patch-1
Browse files Browse the repository at this point in the history
dampening -> damping
  • Loading branch information
CarloLucibello authored Mar 23, 2022
2 parents bcb7ba9 + 617a157 commit cf263ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/optimise/optimisers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Gradient descent optimizer with learning rate `η` and momentum `ρ`.
- Learning rate (`η`): Amount by which gradients are discounted before updating
the weights.
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
prominent direction, in effect dampening oscillations.
prominent direction, in effect damping oscillations.
# Examples
```julia
Expand Down Expand Up @@ -84,7 +84,7 @@ Gradient descent optimizer with learning rate `η` and Nesterov momentum `ρ`.
- Learning rate (`η`): Amount by which gradients are discounted before updating
the weights.
- Nesterov momentum (`ρ`): Controls the acceleration of gradient descent in the
prominent direction, in effect dampening oscillations.
prominent direction, in effect damping oscillations.
# Examples
```julia
Expand Down Expand Up @@ -121,7 +121,7 @@ generally don't need tuning.
- Learning rate (`η`): Amount by which gradients are discounted before updating
the weights.
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
prominent direction, in effect dampening oscillations.
prominent direction, in effect damping oscillations.
# Examples
```julia
Expand Down

0 comments on commit cf263ac

Please sign in to comment.