Open mandalvishal177 opened 3 years ago
My solution is to build a shell at the root path to run the python script.
Before the command to run the python script, add "cd ." at the first row to declare the path.
I have declared the path already. However, adding cd . at the first row doesn't seem to change anything. The same error still persists.
I have declared the path already. However, adding cd . at the first row doesn't seem to change anything. The same error still persists.
@bo-miao Can you share your colab file on how to run this code? I'm unable to make siam-mot work on colab. Thanks
Just add this code before that import ` import sys
sys.path.append('/path/to/the/siam-mot') `
While running the following command on Google Colab:
!python /content/siam-mot/demos/demo.py --demo-video /content/drive/MyDrive/cars.mov --track-class person_vehicle --dump-video True
I get an error: from demos.demo_inference import DemoInference ModuleNotFoundError: No module named 'demos.demo_inference'
I have pip installed demos and all other requirements but still have this issue