Hello,
I am currently working on lane detection model (YOLOv2) which is in .pt format I have converted to ONNX format.
Here are the terminal responses I have got..
root@aetina:/voyager-sdk# cd YOLOPv2
root@aetina:/voyager-sdk/YOLOPv2# ls
LICENSE data demo2.py models runs yolopv2-env
README.md demo.py export-onnx.py requirements.txt utils
root@aetina:/voyager-sdk/YOLOPv2# cd models
root@aetina:/voyager-sdk/YOLOPv2/models# ls
__pycache__ common.py experimental.py yolopv2.onnx yolopv2.pt
root@aetina:/voyager-sdk/YOLOPv2/models#
I am having the ONNX format of the model so now I want to deploy the model onto Metis M2. When I am trying to compile the yolopv2.onnx model but i am encountering this issue.
root@aetina:/voyager-sdk# /voyager-sdk/bin/voyager-compile models/yolopv2.onnx --output-dir build/yolopv2 --input-shape "1,3,640,640"
bash: /voyager-sdk/bin/voyager-compile: No such file or directory
I request to guide me to successfully deploy the model.
Note; I am using docker and runing the Voyager sdk in it.

