Commit cb5f67ee authored by Naveen Marri's avatar Naveen Marri

Added support for facets visualization

parent cf625823
...@@ -40,6 +40,7 @@ RUN conda install --quiet --yes \ ...@@ -40,6 +40,7 @@ RUN conda install --quiet --yes \
'h5py=2.6*' \ 'h5py=2.6*' \
'vincent=0.4.*' \ 'vincent=0.4.*' \
'beautifulsoup4=4.5.*' \ 'beautifulsoup4=4.5.*' \
'protobuf=3.*' \
'xlrd' && \ 'xlrd' && \
conda remove --quiet --yes --force qt pyqt && \ conda remove --quiet --yes --force qt pyqt && \
conda clean -tipsy && \ conda clean -tipsy && \
...@@ -47,6 +48,10 @@ RUN conda install --quiet --yes \ ...@@ -47,6 +48,10 @@ RUN conda install --quiet --yes \
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \ jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
fix-permissions $CONDA_DIR fix-permissions $CONDA_DIR
RUN git clone https://github.com/PAIR-code/facets.git
WORKDIR facets
RUN jupyter nbextension install facets-dist/ --user
# Import matplotlib the first time to build the font cache. # Import matplotlib the first time to build the font cache.
ENV XDG_CACHE_HOME /home/$NB_USER/.cache/ ENV XDG_CACHE_HOME /home/$NB_USER/.cache/
RUN MPLBACKEND=Agg python -c "import matplotlib.pyplot" && \ RUN MPLBACKEND=Agg python -c "import matplotlib.pyplot" && \
......
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