Skip to content
Closed
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
1 change: 1 addition & 0 deletions doc/progress.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Changelog

0.13.0
~~~~~~
* MAINT#1143: Change default argument for ``avoid_duplicate_runs`` of ``run_model_on_task`` to false to avoid requiring an API key by default.
* FIX#1030: ``pre-commit`` hooks now no longer should issue a warning.
* FIX#1110: Make arguments to ``create_study`` and ``create_suite`` that are defined as optional by the OpenML XSD actually optional.
* MAIN#1088: Do CI for Windows on Github Actions instead of Appveyor.
Expand Down
4 changes: 2 additions & 2 deletions openml/runs/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
def run_model_on_task(
model: Any,
task: Union[int, str, OpenMLTask],
avoid_duplicate_runs: bool = True,
avoid_duplicate_runs: bool = False,
flow_tags: List[str] = None,
seed: int = None,
add_local_measures: bool = True,
Expand All @@ -68,7 +68,7 @@ def run_model_on_task(
task : OpenMLTask or int or str
Task to perform or Task id.
This may be a model instead if the first argument is an OpenMLTask.
avoid_duplicate_runs : bool, optional (default=True)
avoid_duplicate_runs : bool, optional (default=False)
If True, the run will throw an error if the setup/task combination is already present on
the server. This feature requires an internet connection.
flow_tags : List[str], optional (default=None)
Expand Down