Skip to content

Commit b8635fa

Browse files
committed
Pushing the docs to dev/ for branch: master, commit db2290ce38aea1d1d561e0966f952e9e7be05368
1 parent 139256a commit b8635fa

File tree

817 files changed

+2140
-2137
lines changed

Some content is hidden

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

817 files changed

+2140
-2137
lines changed
40 Bytes
Binary file not shown.
39 Bytes
Binary file not shown.

dev/_downloads/plot_dict_face_patches.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\nOnline learning of a dictionary of parts of faces\n==================================================\n\nThis example uses a large dataset of faces to learn a set of 20 x 20\nimages patches that constitute faces.\n\nFrom the programming standpoint, it is interesting because it shows how\nto use the online API of the scikit-learn to process a very large\ndataset by chunks. The way we proceed is that we load an image at a time\nand extract randomly 50 patches from this image. Once we have accumulated\n500 of these patches (using 10 images), we run the `partial_fit` method\nof the online KMeans object, MiniBatchKMeans.\n\nThe verbose setting on the MiniBatchKMeans enables us to see that some\nclusters are reassigned during the successive calls to\npartial-fit. This is because the number of patches that they represent\nhas become too low, and it is better to choose a random new\ncluster.\n\n"
18+
"\nOnline learning of a dictionary of parts of faces\n==================================================\n\nThis example uses a large dataset of faces to learn a set of 20 x 20\nimages patches that constitute faces.\n\nFrom the programming standpoint, it is interesting because it shows how\nto use the online API of the scikit-learn to process a very large\ndataset by chunks. The way we proceed is that we load an image at a time\nand extract randomly 50 patches from this image. Once we have accumulated\n500 of these patches (using 10 images), we run the\n:func:`~sklearn.cluster.MiniBatchKMeans.partial_fit` method\nof the online KMeans object, MiniBatchKMeans.\n\nThe verbose setting on the MiniBatchKMeans enables us to see that some\nclusters are reassigned during the successive calls to\npartial-fit. This is because the number of patches that they represent\nhas become too low, and it is better to choose a random new\ncluster.\n\n"
1919
]
2020
},
2121
{

dev/_downloads/plot_dict_face_patches.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
to use the online API of the scikit-learn to process a very large
1010
dataset by chunks. The way we proceed is that we load an image at a time
1111
and extract randomly 50 patches from this image. Once we have accumulated
12-
500 of these patches (using 10 images), we run the `partial_fit` method
12+
500 of these patches (using 10 images), we run the
13+
:func:`~sklearn.cluster.MiniBatchKMeans.partial_fit` method
1314
of the online KMeans object, MiniBatchKMeans.
1415
1516
The verbose setting on the MiniBatchKMeans enables us to see that some

dev/_downloads/scikit-learn-docs.pdf

57.9 KB
Binary file not shown.

dev/_images/iris.png

0 Bytes
573 Bytes
573 Bytes
-469 Bytes
-469 Bytes

0 commit comments

Comments
 (0)