Skip to content

Commit 44e80a9

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 16e57aeb202c19aebe68f70d381c8317ad678455
1 parent 5614bc3 commit 44e80a9

File tree

1,216 files changed

+4220
-4217
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,216 files changed

+4220
-4217
lines changed
Binary file not shown.

dev/_downloads/51bc3899ceeec0ecf99c5f72ff1fd241/wikipedia_principal_eigenvector.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
if not os.path.exists(filename):
6666
print("Downloading data from '%s', please wait..." % url)
6767
opener = urlopen(url)
68-
open(filename, "wb").write(opener.read())
68+
with open(filename, "wb") as f:
69+
f.write(opener.read())
6970
print()
7071

7172

Binary file not shown.

dev/_downloads/948a4dfa149766b475b1cf2515f289d1/wikipedia_principal_eigenvector.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"outputs": [],
4646
"source": [
47-
"redirects_url = \"http://downloads.dbpedia.org/3.5.1/en/redirects_en.nt.bz2\"\nredirects_filename = redirects_url.rsplit(\"/\", 1)[1]\n\npage_links_url = \"http://downloads.dbpedia.org/3.5.1/en/page_links_en.nt.bz2\"\npage_links_filename = page_links_url.rsplit(\"/\", 1)[1]\n\nresources = [\n (redirects_url, redirects_filename),\n (page_links_url, page_links_filename),\n]\n\nfor url, filename in resources:\n if not os.path.exists(filename):\n print(\"Downloading data from '%s', please wait...\" % url)\n opener = urlopen(url)\n open(filename, \"wb\").write(opener.read())\n print()"
47+
"redirects_url = \"http://downloads.dbpedia.org/3.5.1/en/redirects_en.nt.bz2\"\nredirects_filename = redirects_url.rsplit(\"/\", 1)[1]\n\npage_links_url = \"http://downloads.dbpedia.org/3.5.1/en/page_links_en.nt.bz2\"\npage_links_filename = page_links_url.rsplit(\"/\", 1)[1]\n\nresources = [\n (redirects_url, redirects_filename),\n (page_links_url, page_links_filename),\n]\n\nfor url, filename in resources:\n if not os.path.exists(filename):\n print(\"Downloading data from '%s', please wait...\" % url)\n opener = urlopen(url)\n with open(filename, \"wb\") as f:\n f.write(opener.read())\n print()"
4848
]
4949
},
5050
{

dev/_downloads/scikit-learn-docs.zip

14.3 KB
Binary file not shown.
-83 Bytes
-36 Bytes
-42 Bytes
-9 Bytes
82 Bytes
15 Bytes
-170 Bytes
-49 Bytes
65 Bytes
-154 Bytes
4.02 KB
90 Bytes
19 Bytes
215 Bytes
11 Bytes
97 Bytes
-180 Bytes
-137 Bytes
41 Bytes
19 Bytes
21 Bytes
51 Bytes
86 Bytes
-164 Bytes
-203 Bytes
-20 Bytes

dev/_sources/auto_examples/applications/plot_cyclical_feature_engineering.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_digits_denoising.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_face_recognition.rst.txt

Lines changed: 4 additions & 4 deletions

dev/_sources/auto_examples/applications/plot_model_complexity_influence.rst.txt

Lines changed: 15 additions & 15 deletions

dev/_sources/auto_examples/applications/plot_out_of_core_classification.rst.txt

Lines changed: 29 additions & 29 deletions

dev/_sources/auto_examples/applications/plot_outlier_detection_wine.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_prediction_latency.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_species_distribution_modeling.rst.txt

Lines changed: 2 additions & 2 deletions

dev/_sources/auto_examples/applications/plot_stock_market.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_tomography_l1_reconstruction.rst.txt

Lines changed: 1 addition & 1 deletion

dev/_sources/auto_examples/applications/plot_topics_extraction_with_nmf_lda.rst.txt

Lines changed: 9 additions & 9 deletions

0 commit comments

Comments
 (0)