Skip to content

Commit

Permalink
Upgrade GPU docker container.
Browse files Browse the repository at this point in the history
Eventually:

- Export models as a zip file.

- Implement training detection model using YOLO

- Implement location net and clustering using PQKMeans

- Implement fine-tuning / training face recognition models

- Pre-condition checks, and failed to launch error messages for processes.
  • Loading branch information
akshay bhat committed Feb 23, 2018
1 parent 796e99e commit 93aed41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/dockerfiles/Dockerfile.gpu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tensorflow/tensorflow:1.4.0-gpu
FROM tensorflow/tensorflow:1.6.0-rc1-devel-gpu
MAINTAINER Akshay Bhat <[email protected]>
RUN apt-get update -q && apt-get install -y wget xz-utils
WORKDIR "/bin/"
Expand All @@ -22,8 +22,8 @@ RUN pip install --upgrade cffi
RUN pip install --no-deps keras
RUN pip install -r requirements.txt
RUN pip install pip --upgrade
RUN pip install --no-cache-dir http://download.pytorch.org/whl/cu80/torch-0.1.12.post2-cp27-none-linux_x86_64.whl
RUN pip install --no-cache-dir mxnet-cu80==0.11.0
RUN pip install --no-cache-dir http://download.pytorch.org/whl/cu90/torch-0.3.1-cp27-cp27mu-linux_x86_64.whl
RUN pip install --no-cache-dir mxnet-cu90
RUN pip install torchvision
RUN apt-get install -y libhdf5-dev
RUN pip install --no-deps h5py
Expand Down

0 comments on commit 93aed41

Please sign in to comment.