Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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.10.1
~~~~~~
* ADD #857: Adds task type ID to list_runs
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is actually my mistake (as I didn't update this yet), but since we made a new release, you need to put this under a new header.

* ADD #175: Automatically adds the docstring of scikit-learn objects to flow and its parameters.
* ADD #737: New evaluation listing call that includes the hyperparameter settings.
* ADD #744: It is now possible to only issue a warning and not raise an exception if the package
Expand Down
1 change: 1 addition & 0 deletions openml/runs/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,7 @@ def __list_runs(api_call, output_format='dict'):
'setup_id': int(run_['oml:setup_id']),
'flow_id': int(run_['oml:flow_id']),
'uploader': int(run_['oml:uploader']),
'task_type': int(run_['oml:task_type_id']),
'upload_time': str(run_['oml:upload_time']),
'error_message': str((run_['oml:error_message']) or '')}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_runs/test_run_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ def _check_run(self, run):
# error_message and run_details exist, too, but are not used so far. We need to update
# this check once they are used!
self.assertIsInstance(run, dict)
assert len(run) == 7, str(run)
assert len(run) == 8, str(run)

def test_get_runs_list(self):
# TODO: comes from live, no such lists on test
Expand Down