Skip to content

Commit 779356c

Browse files
author
Github Actions
committed
Matthias Feurer: Release 0.14 (#1266)
1 parent e832b71 commit 779356c

185 files changed

Lines changed: 3023 additions & 1822 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

main/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 977121ba2ad02efffcbb2ee6874bcd8d
3+
config: 55bd42d8e8254e3927fde8ded5e10c76
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

main/_downloads/0a5da6cf0947c30e6ebb0b171dfc1b5a/configure_logging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737

3838
import logging
3939

40-
openml.config.console_log.setLevel(logging.DEBUG)
41-
openml.config.file_log.setLevel(logging.WARNING)
40+
openml.config.set_console_log_level(logging.DEBUG)
41+
openml.config.set_file_log_level(logging.WARNING)
4242
openml.datasets.get_dataset("iris")
4343

4444
# Now the log level that was previously written to file should also be shown in the console.

main/_downloads/1ad3e73844b6bba64db63f52045fc1ae/suites_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676
# We'll take a random subset of at least ten tasks of all available tasks on
7777
# the test server:
78-
all_tasks = list(openml.tasks.list_tasks().keys())
78+
all_tasks = list(openml.tasks.list_tasks(output_format="dataframe")["tid"])
7979
task_ids_for_suite = sorted(np.random.choice(all_tasks, replace=False, size=20))
8080

8181
# The study needs a machine-readable and unique alias. To obtain this,

main/_downloads/27f49b0e36fba2fe65360adcf060e098/2015_neurips_feurer_example.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -89,7 +78,7 @@
8978
"name": "python",
9079
"nbconvert_exporter": "python",
9180
"pygments_lexer": "ipython3",
92-
"version": "3.8.16"
81+
"version": "3.8.17"
9382
}
9483
},
9584
"nbformat": 4,

main/_downloads/296bc5731c400ca6e06e54ecb9b84b5c/configure_logging.ipynb

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -33,7 +22,7 @@
3322
},
3423
"outputs": [],
3524
"source": [
36-
"# License: BSD 3-Clause\n\nimport openml\n\nopenml.datasets.get_dataset(\"iris\")\n\n# With default configuration, the above example will show no output to console.\n# However, in your cache directory you should find a file named 'openml_python.log',\n# which has a DEBUG message written to it. It should be either like\n# \"[DEBUG] [10:46:19:openml.datasets.dataset] Saved dataset 61: iris to file ...\"\n# or like\n# \"[DEBUG] [10:49:38:openml.datasets.dataset] Data pickle file already exists and is up to date.\"\n# , depending on whether or not you had downloaded iris before.\n# The processed log levels can be configured programmatically:\n\nimport logging\n\nopenml.config.console_log.setLevel(logging.DEBUG)\nopenml.config.file_log.setLevel(logging.WARNING)\nopenml.datasets.get_dataset(\"iris\")\n\n# Now the log level that was previously written to file should also be shown in the console.\n# The message is now no longer written to file as the `file_log` was set to level `WARNING`.\n#\n# It is also possible to specify the desired log levels through the configuration file.\n# This way you will not need to set them on each script separately.\n# Add the line **verbosity = NUMBER** and/or **file_verbosity = NUMBER** to the config file,\n# where 'NUMBER' should be one of:\n#\n# * 0: `logging.WARNING` and up.\n# * 1: `logging.INFO` and up.\n# * 2: `logging.DEBUG` and up (i.e. all messages)."
25+
"# License: BSD 3-Clause\n\nimport openml\n\nopenml.datasets.get_dataset(\"iris\")\n\n# With default configuration, the above example will show no output to console.\n# However, in your cache directory you should find a file named 'openml_python.log',\n# which has a DEBUG message written to it. It should be either like\n# \"[DEBUG] [10:46:19:openml.datasets.dataset] Saved dataset 61: iris to file ...\"\n# or like\n# \"[DEBUG] [10:49:38:openml.datasets.dataset] Data pickle file already exists and is up to date.\"\n# , depending on whether or not you had downloaded iris before.\n# The processed log levels can be configured programmatically:\n\nimport logging\n\nopenml.config.set_console_log_level(logging.DEBUG)\nopenml.config.set_file_log_level(logging.WARNING)\nopenml.datasets.get_dataset(\"iris\")\n\n# Now the log level that was previously written to file should also be shown in the console.\n# The message is now no longer written to file as the `file_log` was set to level `WARNING`.\n#\n# It is also possible to specify the desired log levels through the configuration file.\n# This way you will not need to set them on each script separately.\n# Add the line **verbosity = NUMBER** and/or **file_verbosity = NUMBER** to the config file,\n# where 'NUMBER' should be one of:\n#\n# * 0: `logging.WARNING` and up.\n# * 1: `logging.INFO` and up.\n# * 2: `logging.DEBUG` and up (i.e. all messages)."
3726
]
3827
}
3928
],
@@ -53,7 +42,7 @@
5342
"name": "python",
5443
"nbconvert_exporter": "python",
5544
"pygments_lexer": "ipython3",
56-
"version": "3.8.16"
45+
"version": "3.8.17"
5746
}
5847
},
5948
"nbformat": 4,

main/_downloads/4076733b22158deda2a79e57d217b001/2018_kdd_rijn_example.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -82,7 +71,7 @@
8271
"name": "python",
8372
"nbconvert_exporter": "python",
8473
"pygments_lexer": "ipython3",
85-
"version": "3.8.16"
74+
"version": "3.8.17"
8675
}
8776
},
8877
"nbformat": 4,

main/_downloads/42ecf9b9ca30a385452934aeb1a420d5/2018_neurips_perrone_example.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -147,7 +136,7 @@
147136
"name": "python",
148137
"nbconvert_exporter": "python",
149138
"pygments_lexer": "ipython3",
150-
"version": "3.8.16"
139+
"version": "3.8.17"
151140
}
152141
},
153142
"nbformat": 4,

main/_downloads/4e36450a7c3d3fe8c9f4e71689c8e677/plot_svm_hyperparameters_tutorial.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -136,7 +125,7 @@
136125
"name": "python",
137126
"nbconvert_exporter": "python",
138127
"pygments_lexer": "ipython3",
139-
"version": "3.8.16"
128+
"version": "3.8.17"
140129
}
141130
},
142131
"nbformat": 4,

main/_downloads/4ff7bd62b4b1b9012f431cd3c21d497d/study_tutorial.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -190,7 +179,7 @@
190179
"name": "python",
191180
"nbconvert_exporter": "python",
192181
"pygments_lexer": "ipython3",
193-
"version": "3.8.16"
182+
"version": "3.8.17"
194183
}
195184
},
196185
"nbformat": 4,

main/_downloads/51e951fb65905058a563b0f066ec5771/2018_ida_strang_example.ipynb

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
@@ -118,7 +107,7 @@
118107
"name": "python",
119108
"nbconvert_exporter": "python",
120109
"pygments_lexer": "ipython3",
121-
"version": "3.8.16"
110+
"version": "3.8.17"
122111
}
123112
},
124113
"nbformat": 4,

0 commit comments

Comments
 (0)