Description
The requirements.txt file contains a duplicate entry for the torchvision package, which may cause confusion during installation and potentially lead to installation errors.
Steps to Reproduce
Check requirements.txt:
torch==2.1.1
torchvision==0.16.1
torchvision==0.16.1
mmcv==1.7.0
...
Proposed Solution
Remove the duplicate entry to have only one instance of torchvision in the requirements file:
torch==2.1.1
torchvision==0.16.1
mmcv==1.7.0
...