Code Monkey home page Code Monkey logo

Comments (2)

AwokeKnowing avatar AwokeKnowing commented on May 22, 2024 3

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:

  1. Clone this repo
  2. Download your trained models (see link in readme)
  3. Add the above into repo as file named Dockerfile
  4. Build the image docker build -t "pytorch-a2c-ppo-acktr" ./
  5. Run the docker image. Here we 'enjoy' pong:
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.

from pytorch-a2c-ppo-acktr-gail.

ikostrikov avatar ikostrikov commented on May 22, 2024

I added requirements to the readme file. Let me know if anything is missing.

from pytorch-a2c-ppo-acktr-gail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.