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.

SK-AM62A-LP: edgeai model maker custom model compilation

Part Number: SK-AM62A-LP

Tool/software:

Hi,

I have trained and compiled a model with edgeai-modelmaker with success. I use r9.2 banch

My model is based on yolox_s_lite 640x640 and trained with a custom dataset

The model is stored here : /home/ubuntu/TI/edgeai-tensorlab/edgeai-modelmaker/data/projects/parking_ploum_aug_5k_V1/run/20240911-175207/training

The dataset path : /home/ubuntu/TI/edgeai-tensorlab/edgeai-modelmaker/data/projects/parking_ploum_aug_5k/dataset

The dataset tree :

.
├── annotations
├── images
├── train -> images
└── val -> images

The parameter i want to change for compilation in settings_base.yaml i suppose (i want the highest precision as possible)  :

calibration_iterations : 10
calibration_frames : 10
tensor_bits : 16
detection_threshold : 0.05
detection_top_k : 500

If i want to re-compile a model  and change parameters, i suppose i need to use the notebook : tutorial_detection.ipynb

what i need to change on the file to use it with my parameters please  ?

I suppose this :



What is the value split , num_frame ...

Then in Session runtime_options  use

session_name = constants.SESSION_NAME_ONNXRT

Then on the next lines

model_path=f'{settings.models_path}/vision/detection/coco/mlperf/ssd_mobilenet_v1_coco_20180128.tflite'), 

with my path ?


Thank you for your help !