Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/examples/20_basic/simple_datasets_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@

import openml

"""
Simple Datasets Tutorial

This example demonstrates how to:
- Fetch datasets from OpenML
- Explore dataset metadata
- Load data into a usable format

It is intended as a beginner-friendly introduction to
working with OpenML datasets.
"""


# %% [markdown]
# ## List datasets

Expand Down
12 changes: 12 additions & 0 deletions docs/examples/20_basic/simple_flows_and_runs_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
import openml
from sklearn import ensemble, neighbors

"""
Simple Flows and Runs Tutorial

This example demonstrates how to:
- Retrieve machine learning flows from OpenML
- Run models on tasks
- Upload experiment results

It helps users understand how OpenML tracks
and manages machine learning experiments.
"""


# %% [markdown]
# .. warning::
Expand Down