Can I have specific version of torch or is the anaconda env allowed to be created?

Can I have specific version of torch or is the anaconda env allowed to be created?  

  By: billhhh on June 29, 2024, 10:17 a.m.

I am currently building my algorithm, but it requires specific version of torch (torch1.7.1+cu110). It is not easily to be installed with naive pip install and usually I install with

"pip install --pre torch==1.7.1+cu110 torchvision==0.8.2+cu110 -f https://download.pytorch.org/whl/torch_stable.html".

So may I know if I can install them with the command above (requires cuda11.0) or anaconda env by specifying the 'cudatoolkit' version?

conda install pytorch==1.7.1 torchvision==0.8.2 torchaudio==0.7.2 cudatoolkit=11.0 -c pytorch

Thank you!

 Last edited by: billhhh on June 29, 2024, 10:19 a.m., edited 1 time in total.

Re: Can I have specific version of torch or is the anaconda env allowed to be created?  

  By: sofisappia on July 1, 2024, 8:04 a.m.

Hi,

I believe it should be possible to install it with the command you mention. You can test it on your local system first, to make sure it runs properly. Then, before submitting to this challenge, you could also test it on the grand-challenge platform. You can do so by uploading the container as a grand-challenge algorithm, uploading one of the images on the training set, and running inference on it. If all of this works, then it should work as well in the challenge itself.

Good luck!