Skip to content

Commit 4b851c4

Browse files
Add Binder links for examples (#1052)
* init * ADD swig * Copy notebooks for binder * trigger ghpages * RM second binder dir * ADD exception for custom metrics example * FIX notebook dir and askl being not installed * FIX comma * fix dirnames * UNDO buildingdocs for binder branch
1 parent fdea5a6 commit 4b851c4

File tree

4 files changed

+66
-1
lines changed

4 files changed

+66
-1
lines changed

.binder/apt.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build-essential
2+
swig

.binder/postBuild

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
python -m pip install .[docs,examples]
6+
7+
# Taken from https://github.com/scikit-learn/scikit-learn/blob/22cd233e1932457947e9994285dc7fd4e93881e4/.binder/postBuild
8+
# under BSD3 license, copyright the scikit-learn contributors
9+
10+
# This script is called in a binder context. When this script is called, we are
11+
# inside a git checkout of the automl/auto-sklearn repo. This script
12+
# generates notebooks from the auto-sklearn python examples.
13+
14+
if [[ ! -f /.dockerenv ]]; then
15+
echo "This script was written for repo2docker and is supposed to run inside a docker container."
16+
echo "Exiting because this script can delete data if run outside of a docker container."
17+
exit 1
18+
fi
19+
20+
# Copy content we need from the auto-sklearn repo
21+
TMP_CONTENT_DIR=/tmp/auto-sklearn
22+
mkdir -p $TMP_CONTENT_DIR
23+
cp -r examples .binder $TMP_CONTENT_DIR
24+
# delete everything in current directory including dot files and dot folders
25+
find . -delete
26+
27+
# Generate notebooks and remove other files from examples folder
28+
GENERATED_NOTEBOOKS_DIR=examples
29+
cp -r $TMP_CONTENT_DIR/examples $GENERATED_NOTEBOOKS_DIR
30+
31+
find $GENERATED_NOTEBOOKS_DIR -name 'example_*.py' -exec sphx_glr_python_to_jupyter.py '{}' +
32+
# Keep __init__.py and custom_metrics.py
33+
NON_NOTEBOOKS=$(find $GENERATED_NOTEBOOKS_DIR -type f | grep -v '\.ipynb' | grep -v 'init' | grep -v 'custom_metrics')
34+
rm -f $NON_NOTEBOOKS
35+
36+
# Modify path to be consistent by the path given by sphinx-gallery
37+
mkdir notebooks
38+
mv $GENERATED_NOTEBOOKS_DIR notebooks/
39+
40+
# Put the .binder folder back (may be useful for debugging purposes)
41+
mv $TMP_CONTENT_DIR/.binder .
42+
# Final clean up
43+
rm -rf $TMP_CONTENT_DIR

.binder/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-r ../requirements.txt

doc/conf.py

+20-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@
5959
autosectionlabel_prefix_document = True
6060

6161
# Sphinx-gallery configuration.
62+
63+
# get current branch
64+
binder_branch = 'master'
65+
import autosklearn
66+
if "dev" in autosklearn.__version__:
67+
binder_branch = "development"
68+
6269
sphinx_gallery_conf = {
6370
# path to the examples
6471
'examples_dirs': '../examples',
@@ -71,7 +78,19 @@
7178
#},
7279
'backreferences_dir': None,
7380
'filename_pattern': 'example.*.py$',
74-
'ignore_pattern': r'custom_metrics\.py|__init__\.py'
81+
'ignore_pattern': r'custom_metrics\.py|__init__\.py',
82+
'binder': {
83+
# Required keys
84+
'org': 'automl',
85+
'repo': 'auto-sklearn',
86+
'branch': binder_branch,
87+
'binderhub_url': 'https://mybinder.org',
88+
'dependencies': ['../.binder/apt.txt', '../.binder/requirements.txt'],
89+
#'filepath_prefix': '<prefix>' # A prefix to prepend to any filepaths in Binder links.
90+
# Jupyter notebooks for Binder will be copied to this directory (relative to built documentation root).
91+
'notebooks_dir': 'notebooks/',
92+
'use_jupyter_lab': True, # Whether Binder links should start Jupyter Lab instead of the Jupyter Notebook interface.
93+
},
7594
}
7695

7796
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)