From a05662eba7f252dc168eefab568ff224499c3b28 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Thu, 25 Apr 2024 20:40:00 +0530 Subject: [PATCH] DOC add links to examples/linear_model/plot_bayesian_ridge_curvefit.py (#28876) Co-authored-by: adrinjalali --- sklearn/linear_model/_bayes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sklearn/linear_model/_bayes.py b/sklearn/linear_model/_bayes.py index bf11f36cec599..a572c82e6e158 100644 --- a/sklearn/linear_model/_bayes.py +++ b/sklearn/linear_model/_bayes.py @@ -31,6 +31,9 @@ class BayesianRidge(RegressorMixin, LinearModel): lambda (precision of the weights) and alpha (precision of the noise). Read more in the :ref:`User Guide `. + For an intuitive visualization of how the sinusoid is approximated by + a polynomial using different pairs of initial values, see + :ref:`sphx_glr_auto_examples_linear_model_plot_bayesian_ridge_curvefit.py`. Parameters ----------