SJTU-LuHe / TransVOD

The repository is the code for the paper "End-to-End Video Object Detection with Spatial-TemporalTransformers"
Apache License 2.0
203 stars 28 forks source link

Allow for torchvision version to be >= 0.10.0 #40

Open finlay96 opened 8 months ago

finlay96 commented 8 months ago

Issue Previous method of directly compaing the third value of the torchvision versioning torchvision.__version__[:3] fails once the version gets above 0.9.0 as 0.1.0 and 0.10.0 get treated as the same value.

Solution Use the whole segment between the first and second decimal point to get the subversion such that 0.1.0 and 0.10.0 are now different

Possible Issues This solution will no longer work if torchvision increases its major version up to 1..