        "od-custom_fire_smoke_yolov8n_800x800": create_model_config(
        source=AttrDict(
            model_url="",
            # meta_arch_url = "",
            meta_arch_url="/edgeai-tidl-tools/examples/models/prototxt/yolo/yolov8_small_lite_640x640_20231117_model.prototxt",
            infer_shape=False,
        ),
        preprocess=AttrDict(
            resize=800,
            crop=800,
            data_layout="NCHW",
            reverse_channels=False, 
            resize_with_pad=[True, "center"],
            pad_color=[114, 114, 114],
        ),
        session=AttrDict(
            session_name="onnxrt",
            model_path='/edgeai-tidl-tools/best.onnx',
            meta_layers_names_list="/edgeai-tidl-tools/examples/models/prototxt/yolo/yolov8_small_lite_640x640_20231117_model.prototxt",  
            meta_arch_type=8,     
            input_mean=[0.0, 0.0, 0.0],
            input_scale=[0.003921568627, 0.003921568627, 0.003921568627], 
            input_optimization=True,
            input_shape=[1, 3, 608, 608], 
        ),
        postprocess=AttrDict(
            formatter="DetectionBoxSL2BoxLS",
            resize_with_pad=True,
            keypoint=False,
            object6dpose=False,
            normalized_detections=False,
            shuffle_indices=None,
            squeeze_axis=None,
            ignore_index=None,
        ),
        task_type="detection",
        extra_info=AttrDict(
            od_type="YoloV5",
            framework="SSD",
            num_images=20, 
            num_classes=2,   
            label_offset_type="label_offset_type",
            label_offset=0,
            label_names=["fire", "smoke"],
        ),
    )