Skip to content
Merged
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
5 changes: 3 additions & 2 deletions examples/30_extended/create_upload_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,9 @@
print(df.info())

############################################################################
# We enforce the column 'outlook', 'windy', and 'play' to be a categorical
# dtype while the column 'rnd_str' is kept as a string column. Then, we can
# We enforce the column 'outlook' and 'play' to be a categorical
# dtype while the column 'windy' is kept as a boolean column. 'temperature'
# and 'humidity' are kept as numeric columns. Then, we can
# call :func:`create_dataset` by passing the dataframe and fixing the parameter
# ``attributes`` to ``'auto'``.

Expand Down
4 changes: 2 additions & 2 deletions openml/study/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def detach_from_suite(suite_id: int, task_ids: List[int]) -> int:
OpenML id of the study

task_ids : list (int)
List of entities to link to the collection
List of entities to unlink from the collection

Returns
-------
Expand All @@ -404,7 +404,7 @@ def detach_from_study(study_id: int, run_ids: List[int]) -> int:
OpenML id of the study

run_ids : list (int)
List of entities to link to the collection
List of entities to unlink from the collection

Returns
-------
Expand Down