You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Test setup_string is stored and retrievable
* Add setup_string to run dictionary representation
* Add fix to release notes
* Test setup_string in xml without roundtrip
Also moved the test to OpenMLRun, since it mainly tests the OpenMLRun
behavior, not a function from openml.runs.functions.
* Serialize run_details
* Update with merged PRs since 11.0
* Prepare for run_details being provided by the server
* Remove pipeline code from setup_string
Long pipelines (e.g. gridsearches) could lead to too long setup strings.
This prevented run uploads.
Also add mypy ignores for old errors which weren't yet vetted by mypy.
Copy file name to clipboardExpand all lines: doc/progress.rst
+26-5Lines changed: 26 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,33 @@ Changelog
8
8
9
9
0.11.1
10
10
~~~~~~
11
-
* MAINT #1018 : Refactor data loading and storage. Data is now compressed on the first call to `get_data`.
12
-
* MAINT #891: Changed the way that numerical features are stored. Numerical features that range from 0 to 255 are now stored as uint8, which reduces the storage space required as well as storing and loading times.
13
-
* MAINT #671: Improved the performance of ``check_datasets_active`` by only querying the given list of datasets in contrast to querying all datasets. Modified the corresponding unit test.
14
-
* FIX #964 : AValidate `ignore_attribute`, `default_target_attribute`, `row_id_attribute` are set to attributes that exist on the dataset when calling ``create_dataset``.
15
-
* DOC #973 : Change the task used in the welcome page example so it no longer fails using numerical dataset.
11
+
* ADD #964: Validate ``ignore_attribute``, ``default_target_attribute``, ``row_id_attribute`` are set to attributes that exist on the dataset when calling ``create_dataset``.
12
+
* ADD #979: Dataset features and qualities are now also cached in pickle format.
13
+
* ADD #982: Add helper functions for column transformers.
14
+
* ADD #989: ``run_model_on_task`` will now warn the user the the model passed has already been fitted.
16
15
* ADD #1009 : Give possibility to not download the dataset qualities. The cached version is used even so download attribute is false.
16
+
* ADD #1016: Add scikit-learn 0.24 support.
17
+
* ADD #1020: Add option to parallelize evaluation of tasks with joblib.
18
+
* ADD #1022: Allow minimum version of dependencies to be listed for a flow, use more accurate minimum versions for scikit-learn dependencies.
19
+
* ADD #1023: Add admin-only calls for adding topics to datasets.
20
+
* ADD #1029: Add support for fetching dataset from a minio server in parquet format.
21
+
* ADD #1031: Generally improve runtime measurements, add them for some previously unsupported flows (e.g. BaseSearchCV derived flows).
22
+
* DOC #973 : Change the task used in the welcome page example so it no longer fails using numerical dataset.
23
+
* MAINT #671: Improved the performance of ``check_datasets_active`` by only querying the given list of datasets in contrast to querying all datasets. Modified the corresponding unit test.
24
+
* MAINT #891: Changed the way that numerical features are stored. Numerical features that range from 0 to 255 are now stored as uint8, which reduces the storage space required as well as storing and loading times.
25
+
* MAINT #975, #988: Add CI through Github Actions.
26
+
* MAINT #977: Allow ``short`` and ``long`` scenarios for unit tests. Reduce the workload for some unit tests.
27
+
* MAINT #985, #1000: Improve unit test stability and output readability, and adds load balancing.
28
+
* MAINT #1018: Refactor data loading and storage. Data is now compressed on the first call to `get_data`.
29
+
* MAINT #1024: Remove flaky decorator for study unit test.
30
+
* FIX #883 #884 #906 #972: Various improvements to the caching system.
31
+
* FIX #980: Speed up ``check_datasets_active``.
32
+
* FIX #984: Add a retry mechanism when the server encounters a database issue.
33
+
* FIX #1004: Fixed an issue that prevented installation on some systems (e.g. Ubuntu).
34
+
* FIX #1013: Fixes a bug where ``OpenMLRun.setup_string`` was not uploaded to the server, prepares for ``run_details`` being sent from the server.
35
+
* FIX #1021: Fixes an issue that could occur when running unit tests and openml-python was not in PATH.
36
+
* FIX #1037: Fixes a bug where a dataset could not be loaded if a categorical value had listed nan-like as a possible category.
37
+
17
38
0.11.0
18
39
~~~~~~
19
40
* ADD #753: Allows uploading custom flows to OpenML via OpenML-Python.
0 commit comments