File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Gradient descent optimizer with learning rate `η` and momentum `ρ`.
51
51
- Learning rate (`η`): Amount by which gradients are discounted before updating
52
52
the weights.
53
53
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
54
- prominent direction, in effect dampening oscillations.
54
+ prominent direction, in effect damping oscillations.
55
55
56
56
# Examples
57
57
```julia
@@ -84,7 +84,7 @@ Gradient descent optimizer with learning rate `η` and Nesterov momentum `ρ`.
84
84
- Learning rate (`η`): Amount by which gradients are discounted before updating
85
85
the weights.
86
86
- Nesterov momentum (`ρ`): Controls the acceleration of gradient descent in the
87
- prominent direction, in effect dampening oscillations.
87
+ prominent direction, in effect damping oscillations.
88
88
89
89
# Examples
90
90
```julia
@@ -121,7 +121,7 @@ generally don't need tuning.
121
121
- Learning rate (`η`): Amount by which gradients are discounted before updating
122
122
the weights.
123
123
- Momentum (`ρ`): Controls the acceleration of gradient descent in the
124
- prominent direction, in effect dampening oscillations.
124
+ prominent direction, in effect damping oscillations.
125
125
126
126
# Examples
127
127
```julia
You can’t perform that action at this time.
0 commit comments