Skip to content

Commit cf263ac

Browse files
Merge pull request #1918 from alhirzel/patch-1
dampening -> damping
2 parents bcb7ba9 + 617a157 commit cf263ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/optimise/optimisers.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Gradient descent optimizer with learning rate `η` and momentum `ρ`.
5151
- Learning rate (`η`): Amount by which gradients are discounted before updating
5252
the weights.
5353
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
54-
prominent direction, in effect dampening oscillations.
54+
prominent direction, in effect damping oscillations.
5555
5656
# Examples
5757
```julia
@@ -84,7 +84,7 @@ Gradient descent optimizer with learning rate `η` and Nesterov momentum `ρ`.
8484
- Learning rate (`η`): Amount by which gradients are discounted before updating
8585
the weights.
8686
- Nesterov momentum (`ρ`): Controls the acceleration of gradient descent in the
87-
prominent direction, in effect dampening oscillations.
87+
prominent direction, in effect damping oscillations.
8888
8989
# Examples
9090
```julia
@@ -121,7 +121,7 @@ generally don't need tuning.
121121
- Learning rate (`η`): Amount by which gradients are discounted before updating
122122
the weights.
123123
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
124-
prominent direction, in effect dampening oscillations.
124+
prominent direction, in effect damping oscillations.
125125
126126
# Examples
127127
```julia

0 commit comments

Comments
 (0)