Open AwokeKnowing opened 7 years ago
I added requirements to the readme file. Let me know if anything is missing.
I haven't got a chance to fine tune it, but for now, I have it working. Based off official pytorch docker image, I just had to add the extra dependencies open AI gym mentions on their install page.
FROM pytorch/pytorch:v0.2
COPY . .
RUN apt-get update -qq && apt-get install -y --no-install-recommends \
python-numpy python-dev cmake zlib1g-dev libjpeg-dev xvfb libav-tools \
xorg-dev python-opengl libboost-all-dev libsdl2-dev swig \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/openai/baselines.git && cd baselines && pip install -e .
RUN pip install -r requirements.txt
CMD ['/bin/sh']
So steps are:
Dockerfile
docker build -t "pytorch-a2c-ppo-acktr" ./
nvidia-docker run --rm -it -v "$(pwd)/trained_models":/workspace/trained_models \
--user=$(id -u) \
--env="DISPLAY" \
--volume="/tmp/.X11-unix:/tmp/.X11-unix:rw" \
awokeknowing/pytorch-a2c-ppo-acktr \
python enjoy.py --algo acktr --load-dir trained_models/acktr --env-name "PongNoFrameskip-v4" --num-stack 4
Again, you might consider having the built image at docker hub so that you could get your 'volunteers' up and running with just cloning the repo and running a script like bash volunteer.sh
(assuming they have nvidia-docker installed)
Also, note that it works with regular 'docker' with identical command. nvidia-docker just makes sure gpu is available, which you'd want for training.
I'll update as I do some more testing.
Can you list the exact commands you would run to install the dependencies? Then we can make a Dockerfile so people can run it as a docker container on any computer/server without installing anything.