Open ezionoir opened 1 year ago
If you correctly clone this directory, this is mainly caused by absolute path error. your execute file is in "tools" folder, while vedacore folder exists one step above. so interpreter is finding vedacore module inside "tools" folder.
you can solve this problem by add
import os, sys sys.path.append(os.getcwd())
to your execute file (Ex. tools/infer.py)
When I run the model on colab:
I get the error:
Here is my notebook 'https://colab.research.google.com/drive/1Nr4oAgQagwZUybqfVG78HBws2HhMFksW?usp=sharing'