I am not really sure how to modify my code:
Here is my modification which get fails
from tvm.driver import tvmc
model = tvmc.load('my_model.onnx')
print(model.summary())
package = tvmc.compile(model,target="ethos-n -variant=n78,llvm",dump_code=relay,package_path = "module.tar")
result = tvmc.run(package, device="cpu")
print(result.outputs)
Besides, after looking other resources, I found that tvmc is mainly used for command-line execution, is that right?