Philip Meier

Results 359 comments of Philip Meier

@vfdev-5 Your hunch is correct. As of `torchvision==0.3` the provided binaries are precompiled for a few selected platforms. Thus, if you try to install with an unsupported platform it falls...

This seems to be a bug in `torch.hub` with pytorch/pytorch#56138 as possible offender. I can't reproduce the issue with `torch==1.8.0` which does not contain this commit. cc @cyyever @ailzhang

@ailzhang I can reproduce this locally and @NicolasHug seems to have hit the same in #4157. So it is not only CI machines and Colab. --- Bumping priority due to...

No need for more repros. This behavior was introduced in pytorch/pytorch#56138 which was shipped with `1.9.0` and will be fixed by pytorch/pytorch#61761. I don't know if we release a `1.9.1`...

Yes, this is a problem with `torch.hub`. You can access everything through `torchvision` directly.

> the hack fix This is not a hack, but a stable feature of `torchvision`. If you have `torchvision` installed, one could also say it is superior, because `torch.hub` downloads...

Progress tracker: - [ ] `Coco(Detection|Captions)` - [ ] `HMDB51` - [ ] `Kinetics400` @bjuncek - [ ] `LSUN` - [ ] `UCF101`

Internally, we do something like ```py from torchvision.datasets.utils import download_and_extract_archive download_and_extract_archive( "https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz", ".", md5="c58f30108f718f92721af3b95e74349a", ) ``` This works for me without modifying SSL in any form: ```py >>> import ssl...

So far I'm unable to reproduce this with this [VM](https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/). @rsokl if you or your students are > hitting this frequently would you be able to either debug this or...