Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 486 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 486 Bytes

Docker

Run a Container

We prepare a pre-built docker image on Docker Hub, based on PyTorch 1.8.1 and CUDA 11.1. To start a container with our docker image, use the following line.

docker run --gpus all -it milagraph/torchdrug 

Build Docker Image

You may also use the Dockerfile provided in this folder to build an image from scratch. Run the following command in this directory.

docker build -t "your-image-name" .