Skip to content

Commit 70eb88a

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 286f0c9d17019e52f532d63b5ace9f8e1beb5fe5
1 parent 2e7b7d2 commit 70eb88a

File tree

1,353 files changed

+7112
-6088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,353 files changed

+7112
-6088
lines changed

Diff for: dev/.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 4a48988f39733080cfcf264cdeeac647
3+
config: ddc4265868146c3ec51481a0465eb13f
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.

Diff for: dev/_downloads/10bb40e21b74618cdeed618ff1eae595/plot_det.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"cell_type": "markdown",
4848
"metadata": {},
4949
"source": [
50-
"## Plot ROC and DET curves\n\nDET curves are commonly plotted in normal deviate scale. To achieve this the\nDET display transforms the error rates as returned by the\n:func:`~sklearn.metrics.det_curve` and the axis scale using\n:func:`scipy.stats.norm`.\n\n"
50+
"## Plot ROC and DET curves\n\nDET curves are commonly plotted in normal deviate scale. To achieve this the\nDET display transforms the error rates as returned by the\n:func:`~sklearn.metrics.det_curve` and the axis scale using\n`scipy.stats.norm`.\n\n"
5151
]
5252
},
5353
{

Diff for: dev/_downloads/1ba22806e611e4b95c469e74c4b23796/sklearn_is_fitted.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"\n# `__sklearn_is_fitted__` as Developer API\n\nThe `__sklearn_is_fitted__` method is a convention used in scikit-learn for\nchecking whether an estimator object has been fitted or not. This method is\ntypically implemented in custom estimator classes that are built on top of\nscikit-learn's base classes like `BaseEstimator` or its subclasses.\n\nDevelopers should use :func:`~sklearn.sklearn.utils.validation.check_is_fitted`\nat the beginning of all methods except `fit`. If they need to customize or\nspeed-up the check, they can implement the `__sklearn_is_fitted__` method as\nshown below.\n\nIn this example the custom estimator showcases the usage of the\n`__sklearn_is_fitted__` method and the `check_is_fitted` utility function\nas developer APIs. The `__sklearn_is_fitted__` method checks fitted status\nby verifying the presence of the `_is_fitted` attribute.\n"
7+
"\n# `__sklearn_is_fitted__` as Developer API\n\nThe `__sklearn_is_fitted__` method is a convention used in scikit-learn for\nchecking whether an estimator object has been fitted or not. This method is\ntypically implemented in custom estimator classes that are built on top of\nscikit-learn's base classes like `BaseEstimator` or its subclasses.\n\nDevelopers should use :func:`~sklearn.utils.validation.check_is_fitted`\nat the beginning of all methods except `fit`. If they need to customize or\nspeed-up the check, they can implement the `__sklearn_is_fitted__` method as\nshown below.\n\nIn this example the custom estimator showcases the usage of the\n`__sklearn_is_fitted__` method and the `check_is_fitted` utility function\nas developer APIs. The `__sklearn_is_fitted__` method checks fitted status\nby verifying the presence of the `_is_fitted` attribute.\n"
88
]
99
},
1010
{

Diff for: dev/_downloads/4825fc8223d1af0f3b61080c3dea3a62/plot_faces_decomposition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def plot_gallery(title, images, n_col=n_col, n_row=n_row, cmap=plt.cm.gray):
182182
#
183183
# :class:`sklearn.cluster.MiniBatchKMeans` is computationally efficient and
184184
# implements on-line learning with a
185-
# :meth:`~sklearn.decomposition.MiniBatchKMeans.partial_fit` method. That is
185+
# :meth:`~sklearn.cluster.MiniBatchKMeans.partial_fit` method. That is
186186
# why it could be beneficial to enhance some time-consuming algorithms with
187187
# :class:`~sklearn.cluster.MiniBatchKMeans`.
188188

Diff for: dev/_downloads/67703ae8c65716668dd87c31a24a069b/plot_det.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
# DET curves are commonly plotted in normal deviate scale. To achieve this the
8080
# DET display transforms the error rates as returned by the
8181
# :func:`~sklearn.metrics.det_curve` and the axis scale using
82-
# :func:`scipy.stats.norm`.
82+
# `scipy.stats.norm`.
8383

8484
import matplotlib.pyplot as plt
8585

Binary file not shown.

Diff for: dev/_downloads/e2bc37e26274190758a46ac161b8859a/sklearn_is_fitted.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
typically implemented in custom estimator classes that are built on top of
99
scikit-learn's base classes like `BaseEstimator` or its subclasses.
1010
11-
Developers should use :func:`~sklearn.sklearn.utils.validation.check_is_fitted`
11+
Developers should use :func:`~sklearn.utils.validation.check_is_fitted`
1212
at the beginning of all methods except `fit`. If they need to customize or
1313
speed-up the check, they can implement the `__sklearn_is_fitted__` method as
1414
shown below.

0 commit comments

Comments
 (0)