Skip to content

Commit 13e1ef5

Browse files
committed
DOC update documentation
1 parent ac6608d commit 13e1ef5

File tree

5 files changed

+29
-14
lines changed

5 files changed

+29
-14
lines changed

autosklearn/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.2.1"
4+
__version__ = "0.3.0"

doc/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
*********************
2-
What is auto-sklearn?
3-
*********************
1+
************
2+
auto-sklearn
3+
************
44

55
.. role:: bash(code)
66
:language: bash
@@ -19,8 +19,8 @@ replacement for a scikit-learn estimator:
1919
*auto-sklearn* frees a machine learning user from algorithm selection and
2020
hyperparameter tuning. It leverages recent advantages in *Bayesian
2121
optimization*, *meta-learning* and *ensemble construction*. Learn more about
22-
the technology behind *auto-sklearn* by reading this paper published at
23-
the `NIPS 2015 <http://papers.nips.cc/paper/5872-efficient-and-robust-automated-machine-learning.pdf>`_
22+
the technology behind *auto-sklearn* by reading our paper published at
23+
`NIPS 2015 <http://papers.nips.cc/paper/5872-efficient-and-robust-automated-machine-learning.pdf>`_
2424
.
2525

2626
Example
@@ -39,7 +39,7 @@ Example
3939
>>> print("Accuracy score", sklearn.metrics.accuracy_score(y_test, y_hat))
4040

4141

42-
This will run for one hour should result in an accuracy above 0.98.
42+
This will run for one hour and should result in an accuracy above 0.98.
4343

4444

4545
Manual
@@ -59,8 +59,8 @@ namely the 3-clause BSD license.
5959
Citing auto-sklearn
6060
*******************
6161

62-
If you use auto-sklearn in a scientific publication, we would appreciate
63-
references to the following paper:
62+
If you use auto-sklearn in a scientific publication, we would appreciate a
63+
reference to the following paper:
6464

6565

6666
`Efficient and Robust Automated Machine Learning

doc/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ System requirements
1212
auto-sklearn has the following system requirements:
1313

1414
* Linux operating system (for example Ubuntu),
15-
* Python (>=3.4).
15+
* Python (>=3.5).
1616
* C++ compiler (with C++11 supports) and SWIG (version 3.0 or later)
1717

1818
For an explanation of missing Microsoft Windows and MAC OSX support please
@@ -63,7 +63,7 @@ be solved by installing the *gcc* compiler shipped with AnaConda (as well as
6363

6464
.. code:: bash
6565
66-
conda install gcc swig
66+
conda install gxx_linux-64 gcc_linux-64 swig
6767
6868
6969
Windows/OSX compability
@@ -86,7 +86,7 @@ Possible solutions (not tested):
8686
Mac OSX
8787
~~~~~~~
8888

89-
Auto-sklearn is known to work on OSX systems. Nevertheless, there are two
89+
We currently do not know if *auto-sklearn* works on OSX. There are at least two
9090
issues holding us back from actively supporting OSX:
9191

9292
* The ``resource`` module cannot enforce a memory limit on a Python process

doc/releases.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,26 @@
1111
Releases
1212
========
1313

14-
Version 0.2.2
14+
Version 0.3.0
1515
=============
1616

17+
* Upgrade to scikit-learn 0.19.1.
1718
* Do not use the ``DummyClassifier`` or ``DummyRegressor`` as part of an
1819
ensemble. Fixes `#140 <https://github.com/automl/auto-sklearn/issues/140>`_.
20+
* Fixes #295 by loading the data in the subprocess instead of the main process.
21+
* Fixes #326: refitting could result in a type error. This is now fixed by
22+
better type checking in the classification components.
23+
* Updated search space for ``RandomForestClassifier``, ``ExtraTreesClassifier``
24+
and ``GradientBoostingClassifier`` (fixes #358).
25+
* Removal of constant features is now a part of the pipeline.
26+
* Allow passing an SMBO object into the ``AutoSklearnClassifier`` and
27+
``AutoSklearnRegressor``.
28+
29+
Contributors
30+
~~~~~~~~~~~~
31+
32+
* Matthias Feurer
33+
* Jesper van Engelen
1934

2035
Version 0.2.1
2136
=============

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ pandas
1818

1919
ConfigSpace>=0.4.0,<0.5
2020
pynisher>=0.4
21-
pyrfr>=0.6.1,<0.8
21+
pyrfr>=0.7,<0.8
2222
smac

0 commit comments

Comments
 (0)