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: YOLOv8 ONNX Compilation requirements in TDA4VM Evaluation Board

Part Number: TDA4VM

I am trying to follow this link to evaluate custom model on TDA4VM Evaluation board https://github.com/TexasInstruments/edgeai-tidl-tools/blob/master/docs/custom_model_evaluation.md#custom-model-evaluation. Please assist me in compiling my custom model by modifying the model_configs.py with the custom model entry, so that when I try to run python3 onnxrt_ep.py -c command it compiles the model and then I try to run the infernece script.

This is the model dictionary I have written so far.

   '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'  
    }



Please help me modify this and compile it