Open nlothian opened 5 years ago
@nlothian Hub provides a way to pin to a specific release branch by hub.load('pytorch/vision:v0.4.0')
so that it works with older version of Pytorch.
We're planning to add some version information on the website, our CI will be testing against latest stable releases(torch/torchvision).
Thanks.
Is there a way to know what version I should pin against? And is that dependency transitive somehow?
@nlothian It's not documented I think. Try 0.4.0 or 0.3.0? cc: @fmassa @soumith It might be worth documenting on pytorch/vision which version of pytorch it is compatible.
We definitely recommend upgrading to latest pytorch release if possible.
Unfortunately the latest Pytorch release doesn't stay static (you all keep on working on things!!), and we'd love not to have to keep debugging these types of version issues everytime our pipeline breaks.
We're fine to upgrade to latest now, but we don't like having to keep doing it whenever we bring up a new instance that does a hub.load(..)
We are using the PyTorch deeplabv3_resnet101 model on AWS (on pytorch 1.1), and it suddenly stopped working.
It appears that a recent upgrade to torchvision/inception (!) broke this model:
Is there a way to avoid this?