Skip to content

Commit 0c30343

Browse files
committed
Prepare new release
1 parent f5c13cc commit 0c30343

File tree

4 files changed

+14
-21
lines changed

4 files changed

+14
-21
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.3.0"
4+
__version__ = "0.4.0"

doc/api.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Metrics
3535
Built-in Metrics
3636
~~~~~~~~~~~~~~~~
3737

38-
Classification
39-
~~~~~~~~~~~~~~
38+
Classification metrics
39+
~~~~~~~~~~~~~~~~~~~~~~
4040
Note: The default ``autosklearn.metrics.f1``, ``autosklearn.metrics.precision`` and ``autosklearn.metrics.recall``
4141
built-in metrics are applicable only for binary classification. In order to apply them on multilabel and multiclass
4242
classification, please use the corresponding metrics with an appropriate averaging mechanism, such as ``autosklearn.metrics.f1_macro``.
@@ -85,8 +85,8 @@ For more information about how these metrics are used, please read
8585

8686
.. autoclass:: autosklearn.metrics.pac_score
8787

88-
Regression
89-
~~~~~~~~~~
88+
Regression metrics
89+
~~~~~~~~~~~~~~~~~~
9090

9191
.. autoclass:: autosklearn.metrics.r2
9292

doc/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@
8686

8787
# General information about the project.
8888
project = u'AutoSklearn'
89-
copyright = u'2014-2017, Matthias Feurer, Aaron Klein, Katharina ' \
90-
u'Eggensperger, Jost Tobias Springenberg, Manuel Blum, Frank Hutter'
89+
copyright = u'2014-2018, Machine Learning Professorship Freiburg'
9190

9291
# The version info for the project you're documenting, acts as replacement for
9392
# |version| and |release|, also used in various other places throughout the

doc/releases.rst

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Version 0.4.0
1818
``predict_proba`` to no longer raise an `AttributeError`.
1919
* Improved documentation of the parallel example.
2020
* Classifiers are now tested to be idempotent as `required by scikit-learn
21-
<http://scikit-learn.org/stable/developers/contributing.html#estimated-attributes>`_.
21+
<http://scikit-learn.org/stable/developers/contributing.html#estimated-attributes>`_.
2222
* Fixes the usage of the shrinkage parameter in LDA.
2323
* Fixes `#410 <https://github.com/automl/auto-sklearn/issues/410>`_ and changes
2424
the SGD hyperparameters
@@ -47,11 +47,11 @@ Version 0.4.0
4747
* Adds an operating system check at import and installation time to make sure
4848
to not accidentaly run on a Windows machine.
4949
* New examples gallery using sphinx gallery: `http://automl.github.io/auto-sklearn/stable/examples/index.html <http://automl.github.io/auto-sklearn/stable/examples/index.html>`_
50-
51-
50+
* Safeguard Auto-sklearn against deleting directories it did not create (Issue
51+
`#317 <https://github.com/automl/auto-sklearn/issues/317>`_.
5252

5353
Contributors
54-
~~~~~~~~~~~~
54+
************
5555

5656
* Matthias Feurer
5757
* kaa
@@ -80,17 +80,14 @@ Version 0.3.0
8080
``AutoSklearnRegressor``.
8181

8282
Contributors
83-
~~~~~~~~~~~~
83+
************
8484

8585
* Matthias Feurer
8686
* Jesper van Engelen
8787

8888
Version 0.2.1
8989
=============
9090

91-
Changes
92-
~~~~~~~
93-
9491
* Allows the usage of scikit-learn 0.18.2.
9592
* Upgrade to latest SMAC version (``0.6.0``) and latest random forest version
9693
(``0.6.1``).
@@ -102,7 +99,7 @@ Changes
10299
* New method to retrieve the models used in the final ensemble.
103100

104101
Contributors
105-
~~~~~~~~~~~~
102+
************
106103

107104
* Matthias Feurer
108105
* Katharina Eggensperger
@@ -115,9 +112,6 @@ Contributors
115112
Version 0.2.0
116113
=============
117114

118-
Major changes
119-
~~~~~~~~~~~~~
120-
121115
* **auto-sklearn supports custom metrics and all metrics included in
122116
scikit-learn**. Different metrics can now be passed to the ``fit()``-method
123117
estimator objects, for example
@@ -129,7 +123,7 @@ Major changes
129123
``predict_proba``. By `Laurent Sorber <https://github.com/lsorber>`_.
130124

131125
Contributors
132-
~~~~~~~~~~~~
126+
************
133127

134128
* Matthias Feurer
135129
* Katharina Eggensperger
@@ -142,7 +136,7 @@ Version 0.1.x
142136
There are no release notes for auto-sklearn prior to version 0.2.0.
143137

144138
Contributors
145-
~~~~~~~~~~~~
139+
************
146140

147141
* Matthias Feurer
148142
* Katharina Eggensperger

0 commit comments

Comments
 (0)