Convert_Your_Model
You can get this Notebook on GitHub.
Step 1: Prepare your environment on your host computer
📌 Note::This part of code run on your linux host computer with python3.10
The Jupyter Notebook right up have a button like , then you choose
Select Another Kernel
, and choose Python Environments
, then choose Creat Python Environment
and choose Venv
, then choose python3.10
.
# Here is my hostcomputer information
# Linux PC 6.8.0-45-generic #45~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 11 15:25:05 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
!uname -a
# Here is my python version
# Python 3.10.12
!python -V
# Download hailo model zoo to convert onnx model
try:
! git clone https://github.com/LJ-Hao/hailo_model_zoo.git
except Exception as e:
print(f'install error: {e}')