Skip to content

Commit 0b670a3

Browse files
minor changes
1 parent 302bbc4 commit 0b670a3

4 files changed

Lines changed: 8408 additions & 3 deletions

File tree

examples/Advanced/datasets_tutorial.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# %% [markdown]
22
# How to list and download datasets.
33

4+
# %%
45
import pandas as pd
56

67
import openml
@@ -10,6 +11,8 @@
1011
# ## Exercise 0
1112
#
1213
# * List datasets and return a dataframe
14+
15+
# %%
1316
datalist = openml.datasets.list_datasets()
1417
datalist = datalist[["did", "name", "NumberOfInstances", "NumberOfFeatures", "NumberOfClasses"]]
1518

examples/Basics/introduction_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# ## Authentication
1111
#
1212
# For certain functionality, such as uploading tasks or datasets, users have to
13-
# sing up. Only accessing the data on OpenML does not require an account!
13+
# sign up. Only accessing the data on OpenML does not require an account!
1414
#
1515
# If you don’t have an account yet, sign up now.
1616
# You will receive an API key, which will authenticate you to the server

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ nav:
5252
- Suites: examples/Basics/simple_suites_tutorial.py
5353
- Advanced:
5454
- Dataset Splits from Tasks: examples/Advanced/task_manual_iteration_tutorial.py
55-
- Created and Uploaded Datasets: examples/Advanced/create_upload_tutorial.py
55+
- Creating and Uploading Datasets: examples/Advanced/create_upload_tutorial.py
5656
- Searching and Editing Datasets: examples/Advanced/datasets_tutorial.py
57-
- Searching and Creating Tasks: examples/Advanced/task_tutorial.py
57+
- Searching and Creating Tasks: examples/Advanced/tasks_tutorial.py
5858
- List, Download, and Upload Suites: examples/Advanced/suites_tutorial.py
5959
- List, Download, and Upload Studies: examples/Advanced/study_tutorial.py
6060
- Downloading Evaluation Results: examples/Advanced/fetch_evaluations_tutorial.py

0 commit comments

Comments
 (0)