Skip to content

Commit b3063f4

Browse files
committed
FIX replace linear regression by logistic regression
1 parent 6853392 commit b3063f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_runs/test_run_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _perform_run(self, task_id, num_instances, clf):
3939
def test_run_regression_on_classif_task(self):
4040
task_id = 115
4141

42-
clf = LinearRegression()
42+
clf = LogisticRegression()
4343
task = openml.tasks.get_task(task_id)
4444
run = openml.runs.run_task(task=task, model=clf)
4545
run.publish()

0 commit comments

Comments
 (0)