You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if we have a cog.yaml that defines the following:
torch
torchvision==0.19.0+cu121
The build fails. The reason being that we always resolve a versionless torch to the maximum we support in our base images (which is currently 2.4.1). The torchvision is pinned with version 0.19.0 which causes version incompatibility due to 2.4.1 not being compatible with torchvision 0.19.0. In our compatibility matrix we do define what torchvisions are compatible with what versions of torch, so when we resolve the torch version we should take this data into account. We also need to do this for torchaudio which we similarly have version info about.
The text was updated successfully, but these errors were encountered:
Currently if we have a cog.yaml that defines the following:
The build fails. The reason being that we always resolve a versionless torch to the maximum we support in our base images (which is currently
2.4.1
). The torchvision is pinned with version0.19.0
which causes version incompatibility due to2.4.1
not being compatible with torchvision0.19.0
. In our compatibility matrix we do define what torchvisions are compatible with what versions of torch, so when we resolve the torch version we should take this data into account. We also need to do this for torchaudio which we similarly have version info about.The text was updated successfully, but these errors were encountered: