added dependencies necessary for semantic parsing

This commit is contained in:
snbenge
2020-04-19 19:17:30 -04:00
parent 15a77e7bcf
commit 686e15f7bc

View File

@@ -4,7 +4,8 @@ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
build-essential \ build-essential \
python-opencv \ python-opencv \
libpcl-dev libpcl-dev \
x11-apps
RUN pip install -U pip && \ RUN pip install -U pip && \
pip install -U \ pip install -U \
@@ -14,6 +15,13 @@ RUN pip install -U pip && \
matplotlib \ matplotlib \
nltk \ nltk \
setuptools \ setuptools \
pylint pylint \
spacy \
pickle-mixin \
--upgrade setuptools \
--no-cache-dir tensorflow \
keras
RUN python -m spacy download en_core_web_sm
CMD ["/bin/bash"] CMD ["/bin/bash"]