Commit 1a56c47d authored by Ian Coffey's avatar Ian Coffey

Improve formatting for autosklearn recipe

parent 5fc77daf
...@@ -519,7 +519,7 @@ Ref: ...@@ -519,7 +519,7 @@ Ref:
## Enable auto-sklearn notebooks ## Enable auto-sklearn notebooks
Using auto-sklearn requires swig, which the other notebook images lack, so it cant be experimented with. Also, there is no Conda package for auto-sklearn. Using `auto-sklearn` requires `swig`, which the other notebook images lack, so it cant be experimented with. Also, there is no Conda package for `auto-sklearn`.
``` ```
ARG BASE_CONTAINER=jupyter/scipy-notebook ARG BASE_CONTAINER=jupyter/scipy-notebook
...@@ -530,10 +530,11 @@ USER root ...@@ -530,10 +530,11 @@ USER root
# autosklearn requires swig, which no other image has # autosklearn requires swig, which no other image has
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends swig && \ apt-get install -y --no-install-recommends swig && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
USER $NB_UID USER $NB_UID
ARG py_ver=3.6
RUN pip install auto-sklearn RUN pip install --quiet auto-sklearn
``` ```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment