Open jmuff44xv opened 2 years ago
Same problem here. PackagesNotFoundError: The following packages are not available from current channels:
Current channels:
You can safely go with:
pytorch 1.10.2
torchvision 0.11.3
The only problem you will have with outdated parameter in dataloader.py And that you can fix with this replacement in line 97:
-resized_img = img.resize(resizeDim, Image.ANTIALIAS) if (resizeDim != None) else img
+resized_img = img.resize(resizeDim, Image.LANCZOS) if (resizeDim != None) else img
You can safely go with:
pytorch 1.10.2 torchvision 0.11.3
The only problem you will have with outdated parameter in dataloader.py And that you can fix with this replacement in line 97:
-resized_img = img.resize(resizeDim, Image.ANTIALIAS) if (resizeDim != None) else img +resized_img = img.resize(resizeDim, Image.LANCZOS) if (resizeDim != None) else img
many thanks!
I think the key is the fix in dataloader.py. I used pytorch==2.1.0, it's also ok.
I try to follow your installation instructions: I download and install Miniconda3-py38_4.10.3-Windows-x86_64.exe (is this not correct?) and then I execute:
conda install pytorch-cpu=0.4.1 torchvision-cpu==0.2.0 cpuonly -c pytorch
as instructed. But I get the error message: