Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion autosklearn/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.14.2"
__version__ = "0.14.3"
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
#},
'backreferences_dir': None,
'filename_pattern': 'example.*.py$',
'ignore_pattern': r'custom_metrics\.py|__init__\.py',
'ignore_pattern': r'custom_metrics\.py|__init__\.py|example_parallel_manual_spawning_python.py',
'binder': {
# Required keys
'org': 'automl',
Expand Down
12 changes: 11 additions & 1 deletion doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@
Releases
========

Version 0.14.3
==============

* HOTFIX #1356: Updates dask to ``dask.distributed >=2012.12``.

Contributors v0.14.3
********************

* Eddie Bergman

Version 0.14.2
==============

Expand All @@ -35,7 +45,7 @@ Version 0.14.1
Contributors v0.14.1
********************

* Edward Bergman
* Eddie Bergman
* Michael Becker
* Katharina Eggensperger

Expand Down
10 changes: 8 additions & 2 deletions examples/60_search/example_parallel_manual_spawning_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@
This example shows how to start the dask scheduler and spawn
workers for *Auto-sklearn* manually from the command line. Use this example
as a starting point to parallelize *Auto-sklearn* across multiple
machines. If you want to start everything manually from within Python
please see :ref:`sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py`.
machines.

To run *Auto-sklearn* in parallel on a single machine check out the example
:ref:`sphx_glr_examples_60_search_example_parallel_n_jobs.py`.

If you want to start everything manually from within Python
please see ``:ref:sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py``.

**NOTE:** Above example is disabled due to issue https://github.com/dask/distributed/issues/5627


You can learn more about the dask command line interface from
https://docs.dask.org/en/latest/setup/cli.html.

Expand Down
2 changes: 2 additions & 0 deletions examples/60_search/example_parallel_manual_spawning_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
===================================================
Parallel Usage: Spawning workers from within Python
===================================================
**NOTE**: Disabled due to issue https://github.com/dask/distributed/issues/5627


*Auto-sklearn* uses
`dask.distributed <https://distributed.dask.org/en/latest/index.html>`_
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ scipy>=1.7.0
joblib
scikit-learn>=0.24.0,<0.25.0

dask<2021.07
distributed>=2.2.0,<2021.07
dask>=2021.12
distributed>=2012.12
pyyaml
pandas>=1.0
liac-arff
Expand Down