"vscode:/vscode.git/clone" did not exist on "3e99b5677e8da25fc3fa09b3777316a7bb7a426e"
Commit 20764e12 authored by Mohammad's avatar Mohammad
Browse files

some cleanup: configure data, requirements, and docker

parent 2e38461b
# =========== # ===========
# base images # base images
# =========== # ===========
FROM nvcr.io/nvidia/pytorch:19.09-py3 FROM nvcr.io/nvidia/pytorch:19.10-py3
# ===============
# system packages
# ===============
RUN apt-get update && apt-get install -y \
bash-completion \
emacs \
git \
graphviz \
htop \
libopenexr-dev \
rsync \
wget \
&& rm -rf /var/lib/apt/lists/*
# ============
# pip packages
# ============
RUN pip install --upgrade pip && \
pip install --upgrade setuptools
COPY requirements.txt /tmp/
RUN pip install --upgrade --ignore-installed -r /tmp/requirements.txt
boto3
google-cloud-language
inflect
nltk
numpy
pandas
requests
sentencepiece
tensorflow
tqdm
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