Skip to content

Commit bf3f751

Browse files
author
Github Actions
committed
Lennart Purucker: Minor Documentation Fixes: TaskID for Example Custom Flow; Comment on Homepage; More documentation for components (#1243)
1 parent f819812 commit bf3f751

File tree

90 files changed

+559
-798
lines changed

Some content is hidden

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

90 files changed

+559
-798
lines changed

develop/.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: 378b865a00dfd372de092b59284a596b
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

develop/_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.

develop/_downloads/27f49b0e36fba2fe65360adcf060e098/2015_neurips_feurer_example.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/296bc5731c400ca6e06e54ecb9b84b5c/configure_logging.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": {},
@@ -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
],

develop/_downloads/4076733b22158deda2a79e57d217b001/2018_kdd_rijn_example.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/42ecf9b9ca30a385452934aeb1a420d5/2018_neurips_perrone_example.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/4e36450a7c3d3fe8c9f4e71689c8e677/plot_svm_hyperparameters_tutorial.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/4ff7bd62b4b1b9012f431cd3c21d497d/study_tutorial.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/51e951fb65905058a563b0f066ec5771/2018_ida_strang_example.ipynb

Lines changed: 0 additions & 11 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": {},

develop/_downloads/55fed401604e83ceb83e08221c96c779/fetch_evaluations_tutorial.ipynb

Lines changed: 0 additions & 11 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": {},

0 commit comments

Comments
 (0)