From ce3ca78814c95251373e4b0cf296303e2070e73a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wang=20Ran=20=28=E6=B1=AA=E7=84=B6=29?= Date: Sat, 14 Sep 2024 17:09:50 +0800 Subject: [PATCH] fix error in numpy_ml.linear_models.rst --- docs/numpy_ml.linear_models.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/numpy_ml.linear_models.rst b/docs/numpy_ml.linear_models.rst index 294a5fc..c66b7a1 100644 --- a/docs/numpy_ml.linear_models.rst +++ b/docs/numpy_ml.linear_models.rst @@ -68,8 +68,8 @@ the adjusted normal equation: \hat{\mathbf{b}}_{Ridge} = (\mathbf{X}^\top \mathbf{X} + \alpha \mathbf{I})^{-1} \mathbf{X}^\top \mathbf{y} -where :math:`(\mathbf{X}^\top \mathbf{X} + \alpha \mathbf{I})^{-1} -\mathbf{X}^\top` is the pseudoinverse / Moore-Penrose inverse adjusted for +where :math:`(\mathbf{X}^\top \mathbf{X} + \alpha \mathbf{I})^{-1}` +is the pseudoinverse / Moore-Penrose inverse adjusted for the `L2` penalty on the model coefficients. **Models**