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
I run the command python demo_rpn.py --model SiamRPNResNeXt22 in the directory "SiameseX.PyTorch", I got the error "from neck import AdjustLayer, AdjustAllLayer". Then, I changed it to from .neck import AdjustLayer, AdjustAllLayer and rerun that command, I got an another error "ImportError: cannot import name 'get_subwindow_tracking'".
Through your code, I found these problems are results from the disordered import path management.
So, Can you make a description to make them clear?
The text was updated successfully, but these errors were encountered:
for your "ImportError: cannot import name 'get_subwindow_tracking'", rename the utils.py in the current folder to other names, not used. the utils.py is in the demo_rpm_utils.
I run the command
python demo_rpn.py --model SiamRPNResNeXt22
in the directory "SiameseX.PyTorch", I got the error "from neck import AdjustLayer, AdjustAllLayer". Then, I changed it tofrom .neck import AdjustLayer, AdjustAllLayer
and rerun that command, I got an another error "ImportError: cannot import name 'get_subwindow_tracking'".Through your code, I found these problems are results from the disordered import path management.
So, Can you make a description to make them clear?
The text was updated successfully, but these errors were encountered: