00000092
wget https://github.com/THU-MIG/yolov10/releases/download/v1.1/yolov10s.pt
conda create --name py310 python=3.10
conda env list
conda activate py310
pip3 install ixrt-0.9.1+corex.4.1.2-cp310-cp310-linux_x86_64.whl
pip3 install torch-2.1.1+corex.4.1.2-cp310-cp310-linux_x86_64.whl
pip3 install torchvision-0.16.0+corex.4.1.2-cp310-cp310-linux_x86_64.whl
from ultralytics import YOLO
# Load the model
model = YOLO('yolov10s.pt')
# Export the model to ONNX format
model.export(format='onnx')
python3 testyolov10.py
ixrtexec --onnx yolov10s.onnx