Dear all, Please let me ask you a question about the Docker submission. In the "Docker Debugging Expectations" part of the tutorial, it is said that the docker image will be run using the command: "docker run --network none -v $PWD/training/:/input/:ro -v $PWD/output/:/output/ docker.synapse.org//:". Will the --gpus flag be added to guarantee the access to the GPU from inside the docker? In my case, the docker container does not have access to the GPU when this flag is not specified. Any help will be welcome. Best regards, Nicolas Boutry

Created by Nicolas BOUTRY NicolasBoutry
Hi @NicolasBoutry , Good catch. Yes, we will be running your Docker submissions with the following command: ``` docker run \ --rm \ --network=none \ --runtime="nvidia" \ -v /path/to/input:/input:ro \ -v /path/to/output:/output:rw \ ``` where access to the GPU is granted with `runtime="nvidia"`.

Question about the Docker image page is loading…