Skip to content

DOC add link to plot_learning_curve #29990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Oct 8, 2024
5 changes: 5 additions & 0 deletions doc/modules/learning_curve.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,8 @@ to :func:`learning_curve` to generate and plot the learning curve:
X, y = shuffle(X, y, random_state=0)
LearningCurveDisplay.from_estimator(
SVC(kernel="linear"), X, y, train_sizes=[50, 80, 110], cv=5)

.. rubric:: Examples

* See :ref:`sphx_glr_auto_examples_model_selection_plot_learning_curve.py` for an
example of using learning curves to check the scalability of a predictive model.