We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 688af3f commit 70a7fc8Copy full SHA for 70a7fc8
1 file changed
openml/runs/functions.py
@@ -81,7 +81,7 @@ def run_flow_on_task(task, flow, avoid_duplicate_runs=True, flow_tags=None,
81
flow_id = flow_exists(flow.name, flow.external_version)
82
if avoid_duplicate_runs and flow_id:
83
flow_from_server = get_flow(flow_id)
84
- setup_id = setup_exists(flow_from_server)
+ setup_id = setup_exists(flow_from_server, flow.model)
85
ids = _run_exists(task.task_id, setup_id)
86
if ids:
87
raise PyOpenMLError("Run already exists in server. Run id(s): %s" %str(ids))
0 commit comments