mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 21:29:53 +08:00
afdc87323f
* fixing policy * Compute Action is singular, fixed weird issue with arrays * remove vestige * extraneous ipdb * Can Drop in Pytorch Model * lint * introducing models * fix base policy * Missed this from last time * lint * removedolds * getting vision working * LINT * trying to fix test dependencies * requiremnets * try * tryconda * yes * shutup * flake_passes * changes * removing weight initializer for lstm for now * unused * adam * clip * zero * properscaling * weight * try * fix up pytorch visionnet * bias correction * fix model * same visionnet * matching_bad_things * test * try locking * fixing_linear * naming * lint * FORJENKINS * clouds * lint * Lint + removed dependencies * removed dependencies * format
8 lines
295 B
Docker
8 lines
295 B
Docker
# The examples Docker image adds dependencies needed to run the examples
|
|
|
|
FROM ray-project/deploy
|
|
RUN conda install -y -c conda-forge tensorflow
|
|
RUN apt-get install -y zlib1g-dev
|
|
RUN pip install gym[atari] opencv-python==3.2.0.8 smart_open
|
|
RUN conda install -y -q pytorch torchvision -c soumith
|