8000 DOC Fix typo (#12563) · scikit-learn/scikit-learn@914a915 · GitHub
[go: up one dir, main page]

Skip to content

Commit 914a915

Browse files
rst0gitjnothman
authored andcommitted
DOC Fix typo (#12563)
1 parent 32e5fd4 commit 914a915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sklearn/neural_network/multilayer_perceptron.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,8 +738,8 @@ class MLPClassifier(BaseMultilayerPerceptron, ClassifierMixin):
738738
- 'constant' is a constant learning rate given by
739739
'learning_rate_init'.
740740
741-
- 'invscaling' gradually decreases the learning rate ``learning_rate_``
742-
at each time step 't' using an inverse scaling exponent of 'power_t'.
741+
- 'invscaling' gradually decreases the learning rate at each
742+
time step 't' using an inverse scaling exponent of 'power_t'.
743743
effective_learning_rate = learning_rate_init / pow(t, power_t)
744744
745745
- 'adaptive' keeps the learning rate constant to

0 commit comments

Comments
 (0)
0