This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] TDA4VM:TDA4VM:TDA4VM 评估板中的 YOLOv8 ONNX 编译要求

Guru**** 1821780 points
Other Parts Discussed in Thread: TDA4VM
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1300639/tda4vm-tda4vm-yolov8-onnx-compilation-requirements-in-tda4vm-evaluation-board

器件型号:TDA4VM

我正尝试通过此链接在 TDA4VM 评估板 https://github.com/TexasInstruments/edgeai-tidl-tools/blob/master/docs/custom_model_evaluation.md#custom-model-evaluation 上评估定制模型。请通过使用自定义模型条目修改 model_configs.py 来帮助我编译自定义模型、以便在我尝试运行 python3 onnxrt_ep.py -c 命令时、它会编译模型、然后我尝试运行推理脚本。

这是我到目前为止写的模型词典。

   'od-onnxrt_yolov8_openvino_onnx' :{  
        'model_path' : os.path.join(models_base_path, 'openvino.onnx'),
        'mean': [0, 0, 0],
        'scale' : [1, 1, 1],
        'num_images' : numImages,
        'num_classes': 7,
        'model_type': 'od',
        'session_name' : 'onnxrt'  
    }



请帮我修改和编译它