requirements_dl.txt 888 B

123456789101112131415161718
  1. # These requirements are used for the CI and CPU-only Docker images so we install CPU only versions of torch.
  2. # For GPU Docker images, you should install requirements_ml_docker.txt afterwards.
  3. tensorflow==2.11.0; sys_platform != 'darwin' or platform_machine != 'arm64'
  4. tensorflow-macos==2.11.0; sys_platform == 'darwin' and platform_machine == 'arm64'
  5. tensorflow-probability==0.19.0
  6. # If you make changes below this line, please also make the corresponding changes to `requirements_ml_docker.txt`!
  7. --extra-index-url https://download.pytorch.org/whl/cpu # for CPU versions of torch, torchvision
  8. --find-links https://data.pyg.org/whl/torch-1.13.0+cpu.html # for CPU versions of torch-scatter, torch-sparse, torch-cluster, torch-spline-conv
  9. torch==1.13.0
  10. torchvision==0.14.0
  11. torch-scatter==2.1.0
  12. torch-sparse==0.6.16
  13. torch-cluster==1.6.0
  14. torch-spline-conv==1.2.1
  15. torch-geometric==2.1.0