Skip to content
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

[WIP] Restructuring the examples section #785

Merged
merged 13 commits into from
Sep 30, 2019
Prev Previous commit
Next Next commit
Fixing pep8 violation and typo in extended examples
  • Loading branch information
ArlindKadra committed Sep 10, 2019
commit 8e29a9e035a22350231d9ebd589b006b8b3c560d
3 changes: 2 additions & 1 deletion examples/basic/tasks_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
############################################################################
# Listing tasks

# Listing only supervised classification tasks (task type 1) from all `task types <https://www.openml.org/search?type=task_type>`_.
# Listing only supervised classification tasks (task type 1)
# from all `task types <https://www.openml.org/search?type=task_type>`_.
tasks_df = openml.tasks.list_tasks(task_type_id=1, output_format='dataframe')
tasks_df.head()

Expand Down
2 changes: 1 addition & 1 deletion examples/flows_and_runs_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
# The run may be stored offline, and the flow will be stored along with it:
run.to_filesystem(directory='myrun')

# They made later be loaded and uploaded
# They may be loaded and uploaded at a later time
run = openml.runs.OpenMLRun.from_filesystem(directory='myrun')
run.publish()

Expand Down