mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00

* wip ' * upgrade requirements * add file * fix * fixes * Apply suggestions from code review Try mlagents==0.21.0 for now (works with torch 1.9). * Apply suggestions from code review * wip * wip * fix * fix * upgrade lightning bolts * address comment Co-authored-by: Sven Mika <sven@anyscale.io>
14 lines
No EOL
587 B
Text
14 lines
No EOL
587 B
Text
# These requirements are used for the CI and CPU-only Docker images so we install CPU only versions of torch.
|
|
# For GPU Docker images, you should install requirements_ml_docker.txt instead.
|
|
|
|
tensorflow==2.5.0
|
|
tensorflow-probability==0.13.0
|
|
|
|
torch==1.9.0;sys_platform=="darwin"
|
|
torchvision==0.10.0;sys_platform=="darwin"
|
|
|
|
# On non-OSX machines only install CPU version of torch and torchvision
|
|
-f https://download.pytorch.org/whl/torch_stable.html
|
|
torch==1.9.0+cpu;sys_platform!="darwin"
|
|
-f https://download.pytorch.org/whl/torch_stable.html
|
|
torchvision==0.10.0+cpu;sys_platform!="darwin" |