We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I downloaded the weight from box.com
My code to deploy:
import mera from mera import Target, Platform def compile_mera(qtz_path, output_dir, host_arch): with mera.TVMDeployer(output_dir, overwrite=True) as deployer: qtzed_model = mera.ModelLoader(deployer).from_quantized_mera(qtz_path) deployer.deploy( qtzed_model, mera_platform=Platform.SAKURA_1, target=Target.IP, host_arch=host_arch, ) print(f"{output_dir} DONE!") mera_path = compile_mera( 'Yolov7_640x640_MERA.mera', 'deploy_yolov7_mera', 'x86', )
The enviroment and setup is same as mentioned in the guide
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I downloaded the weight from box.com
My code to deploy:
The enviroment and setup is same as mentioned in the guide
The text was updated successfully, but these errors were encountered: