Skip to content

Commit ee6ef60

Browse files
author
Matthias Feurer
authored
Merge pull request #1055 from openml/develop
Create release 0.12.1
2 parents 4a20d12 + 72576bd commit ee6ef60

File tree

12 files changed

+546
-98
lines changed

12 files changed

+546
-98
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
autosummary_generate = True
5050
numpydoc_show_class_members = False
5151

52-
autodoc_default_flags = ["members", "inherited-members"]
52+
autodoc_default_options = {"members": True, "inherited-members": True}
5353

5454
# Add any paths that contain templates here, relative to this directory.
5555
templates_path = ["_templates"]

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Example
3838
# Publish the experiment on OpenML (optional, requires an API key.
3939
# You can get your own API key by signing up to OpenML.org)
4040
run.publish()
41-
print(f'View the run online: {openml.config.server}/run/{run.run_id}')
41+
print(f'View the run online: {run.openml_url}')
4242
4343
You can find more examples in our `examples gallery <examples/index.html>`_.
4444

doc/progress.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,20 @@
66
Changelog
77
=========
88

9-
0.11.1
9+
0.12.1
10+
~~~~~~
11+
12+
* ADD #895/#1038: Measure runtimes of scikit-learn runs also for models which are parallelized
13+
via the joblib.
14+
* DOC #1050: Refer to the webpage instead of the XML file in the main example.
15+
* DOC #1051: Document existing extensions to OpenML-Python besides the shipped scikit-learn
16+
extension.
17+
* FIX #1035: Render class attributes and methods again.
18+
* FIX #1042: Fixes a rare concurrency issue with OpenML-Python and joblib which caused the joblib
19+
worker pool to fail.
20+
* FIX #1053: Fixes a bug which could prevent importing the package in a docker container.
21+
22+
0.12.0
1023
~~~~~~
1124
* ADD #964: Validate ``ignore_attribute``, ``default_target_attribute``, ``row_id_attribute`` are set to attributes that exist on the dataset when calling ``create_dataset``.
1225
* ADD #979: Dataset features and qualities are now also cached in pickle format.

doc/usage.rst

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,22 @@ obtained on. Learn how to share your datasets in the following tutorial:
145145

146146
* `Upload a dataset <examples/30_extended/create_upload_tutorial.html>`_
147147

148-
~~~~~~~~~~~~~~~~~~~~~~~
148+
***********************
149149
Extending OpenML-Python
150-
~~~~~~~~~~~~~~~~~~~~~~~
150+
***********************
151151

152152
OpenML-Python provides an extension interface to connect other machine learning libraries than
153153
scikit-learn to OpenML. Please check the :ref:`api_extensions` and use the
154154
scikit-learn extension in :class:`openml.extensions.sklearn.SklearnExtension` as a starting point.
155+
156+
Runtime measurement is incorporated in the OpenML sklearn-extension. Example usage and potential
157+
usage for Hyperparameter Optimisation can be found in the example tutorial:
158+
`HPO using OpenML <examples/30_extended/fetch_runtimes.html>`_
159+
160+
161+
Here is a list of currently maintained OpenML extensions:
162+
163+
* `openml-keras <https://github.com/openml/openml-keras>`_
164+
* `openml-pytorch <https://github.com/openml/openml-pytorch>`_
165+
* `openml-tensorflow(for tensorflow 2+) <https://github.com/openml/openml-tensorflow>`_
166+

0 commit comments

Comments
 (0)