ray/python/requirements/ml/requirements_dl.txt
Amog Kamsetty 732175e245
[AIR] Add distributed torch_geometric example (#23580)
Add example for distributed pytorch geometric (graph learning) with Ray AIR

This only showcases distributed training, but with data small enough that it can be loaded in by each training worker individually. Distributed data ingest is out of scope for this PR.

Co-authored-by: matthewdeng <matthew.j.deng@gmail.com>
2022-04-21 09:48:43 -07:00

15 lines
665 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 afterwards.
tensorflow==2.6.2
tensorflow-probability==0.14.1
# If you make changes to the torch versions below, please also make the corresponding changes to `requirements_ml_docker.txt`!
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"
torchvision==0.10.0+cpu;sys_platform!="darwin"