From 78e6fdba6e7347174c265bcdd15297950ef20d41 Mon Sep 17 00:00:00 2001 From: Felix Divo Date: Fri, 4 Oct 2019 22:33:58 +0200 Subject: [PATCH] Fix tiny punctuation mistake in doc of SGDClassifier --- sklearn/linear_model/stochastic_gradient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/linear_model/stochastic_gradient.py b/sklearn/linear_model/stochastic_gradient.py index ffd9ed5be7df8..144dc581e3bc0 100644 --- a/sklearn/linear_model/stochastic_gradient.py +++ b/sklearn/linear_model/stochastic_gradient.py @@ -747,7 +747,7 @@ class SGDClassifier(BaseSGDClassifier): not achievable with 'l2'. alpha : float - Constant that multiplies the regularization term. Defaults to 0.0001 + Constant that multiplies the regularization term. Defaults to 0.0001. Also used to compute learning_rate when set to 'optimal'. l1_ratio : float