Other Parts Discussed in Thread: TDA4VL, AM68A, AM69A, TDA4VH
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