-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
38,236 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
.ipynb_checkpoints |
1,676 changes: 1,676 additions & 0 deletions
1,676
chapter01/Basic_Machine_Learning_in_Python_Introduction_to_Sklearn,_Keras_and_Pytorch.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#Dockerfile | ||
FROM continuumio/miniconda3 | ||
ADD ./run_notebook.sh /usr/local/bin/ | ||
RUN chmod +x /usr/local/bin/run_notebook.sh | ||
&& chmod -R 777 /usr/local/* | ||
RUN apt update -qq && apt install -y libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6 build-essential vim curl wget libhdf5-dev libhdf5-serial-dev cython3 python-h5py | ||
RUN useradd -m docker -s /bin/bash -p '*' && chown -R 1000:1000 /opt/conda | ||
USER docker | ||
RUN conda -f /home/docker/tabiri/environment.yml && echo "source activate env" > ~/.bashrc | ||
ENV PATH /opt/conda/envs/env/bin:$PATH | ||
CMD /bin/bash /usr/local/bin/run_notebook.sh |
Oops, something went wrong.