|
3 | 3 | .. |
4 | 4 | The following command allows to retrieve all commiters since a specified |
5 | 5 | commit. From https://stackoverflow.com/questions/6482436/list-of-authors-in-git-since-a-given-commit |
6 | | - git log 3d53cd9b5011258c4fdcce9d02e252d0248e5f1d.. --format="%aN <%aE>" --reverse | perl -e 'my %dedupe; while (<STDIN>) { print unless $dedupe{$_}++}' |
| 6 | + git log 6cc8bb179fcb023d1c341cf33d2958a16a6935be.. --format="%aN <%aE>" --reverse | perl -e 'my %dedupe; while (<STDIN>) { print unless $dedupe{$_}++}' |
7 | 7 |
|
8 | 8 | ======== |
9 | 9 | Releases |
10 | 10 | ======== |
11 | 11 |
|
| 12 | +Version 0.15.0 |
| 13 | +============== |
| 14 | + |
| 15 | +* ADD #1317, #1455, #1485, #1501, #1518, #1523: Initial support for multi-objective Auto-sklearn. |
| 16 | +* ADD #1300, #1410, #1414, #1415, #1420, #1468, #1500: Intial support for text features Auto-sklearn. You can now pass in columns identified as `"string"` columns which will be tokenized using pure sklearn methods. |
| 17 | +* ADD #1475: Support for passing `X` data to metrics, as required by [`fairlearn`](https://github.com/fairlearn/fairlearn) metrics |
| 18 | +* ADD #1341, #1250: Expose interface to interact with how auto-sklearn performs dataset compression when required |
| 19 | + |
| 20 | +* DOC #1304: This adds documentation for SMAC callbacks that can be used by Auto-sklearn. |
| 21 | +* DOC #1476: Example on how to interupt autosklearn with a callback, implementing a very naive early stopping |
| 22 | + |
| 23 | +* MAINT #1364, #1473: Improve import time of Auto-sklearn 2 by moving the construction of the selector |
| 24 | + model from import time to construction time. |
| 25 | +* MAINT #1425: Update `StopWatch` to be context manager. |
| 26 | +* MAINT #1454: Rename interal bool parameters `categorical` to `feat_type` to reflect the use of different feature types |
| 27 | +* MAINT #1474: remove left-overs of a "public test set" from the code. This has no influence on |
| 28 | + any user-facing code. |
| 29 | +* MAINT #1487: Replace deprecated of `DataFrame.append` |
| 30 | +* MAINT #1504: Rename `rval` to `return_value` or `run_value` to remove ambiguity |
| 31 | +* MAINT #1506: Increase the time given to meta-learning-related unit tests to decrease the amount |
| 32 | + of timeouts on github. |
| 33 | +* MAINT #1527: Relax MLPRegressor unit tests precision. |
| 34 | +* MAINT #1545: Add explicit lower bound subsample check in the train evaluator |
| 35 | +* MAINT #1551: Fix issue with updated scipy skew see [here](https://github.com/scipy/scipy/issues/16765). |
| 36 | +* MAINT #1434: Refactor the ensemble building process |
| 37 | +* MAINT #1464: Improve testing, with caching (#1464), modularity (#1417) |
| 38 | +* MAINT #1358: Add tooling Mypy, Flake8, isort, black |
| 39 | + |
| 40 | +* FIX #741: Disable hyperparameters for a special data modality if it is not present, for example |
| 41 | + disable one hot encoding if no categorical features are present. |
| 42 | +* FIX #1365, #1369: Fix an issue with `ensemble_size == 0`. |
| 43 | +* FIX #1374: Pass random state to all components of a pipeline. |
| 44 | +* FIX #1432: Fixes an issue in which the `AutoSklearnClassifier.leaderboard()` or |
| 45 | + `AutoSklearnRegressor.leaderboard()` could fail to display results. |
| 46 | +* FIX #1480: Properly terminate Auto-sklearn on an exception or a keyboard interrupt. |
| 47 | +* FIX #1532: Removes exception printing at shutdown for latest dask versions. The printed |
| 48 | + exceptions did not impact performance at all and were only confusing as they suggested failures |
| 49 | + of Auto-sklearn. |
| 50 | +* FIX #1547: Fixes a bug in Auto-sklearn 2 that could silently break it when passing in pandas |
| 51 | + DataFrames. |
| 52 | +* FIX #1550: Fix recent bug when performing evaluations with pandas Y. |
| 53 | + |
| 54 | +Contributors v0.15.0 |
| 55 | +******************** |
| 56 | + |
| 57 | +* Matthias Feurer |
| 58 | +* Eddie Bergman |
| 59 | +* Katharina Eggensperger |
| 60 | +* Sagar Kaushik |
| 61 | +* partev |
| 62 | +* Lukas Strack |
| 63 | +* Basavasagar K Patil |
| 64 | +* Eric Pedley |
| 65 | +* Aseem Kannal |
| 66 | +* SkBlaz |
| 67 | + |
12 | 68 | Version 0.14.6 |
13 | 69 | ============== |
14 | 70 |
|
|
0 commit comments