diff --git a/cfgs/vision_model/default.yaml b/cfgs/vision_model/default.yaml index 2f2dae6..45cdc86 100644 --- a/cfgs/vision_model/default.yaml +++ b/cfgs/vision_model/default.yaml @@ -34,6 +34,7 @@ panoptic_rcnn_R_101_FPN_3x: model_path_prefix: ${..model_root_path} cfg: "models/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml" weights: "weights/detectron2/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x/139514519/model_final_cafdb1.pkl" + integer_conv_weight: False splits : "fpn" jde_1088x608: diff --git a/scripts/evaluation/default_vision_performances.sh b/scripts/evaluation/default_vision_performances.sh index c65d8c1..d23259d 100755 --- a/scripts/evaluation/default_vision_performances.sh +++ b/scripts/evaluation/default_vision_performances.sh @@ -40,6 +40,7 @@ MPEG_OIV6_SRC="${TESTDATA_DIR}/mpeg-oiv6" SFU_HW_SRC="${TESTDATA_DIR}/SFU_HW_Obj" HIEVE_SRC="${TESTDATA_DIR}/HiEve_pngs" TVD_SRC="${TESTDATA_DIR}/tvd_tracking" +PANDASET_SRC="${TESTDATA_DIR}/PandaSet" # MPEGOIV6 - Detection with Faster RCNN ${ENTRY_CMD} --config-name=${CONF_NAME}.yaml \ @@ -162,3 +163,61 @@ do ++pipeline.nn_task_part2.dump_features=False \ ++misc.device.nn_parts=${DEVICE} done + +# PANDASET - Semantic Segmentation with Pandaset +for SEQ in \ + '003' \ + '011' \ + '016' \ + '017' \ + '021' \ + '023' \ + '027' \ + '029' \ + '030' \ + '033' \ + '035' \ + '037' \ + '039' \ + '043' \ + '053' \ + '056' \ + '057' \ + '058' \ + '069' \ + '070' \ + '072' \ + '073' \ + '077' \ + '088' \ + '089' \ + '090' \ + '095' \ + '097' \ + '109' \ + '112' \ + '113' \ + '115' \ + '117' \ + '119' \ + '122' \ + '124' +do + ${ENTRY_CMD} --config-name=${CONF_NAME}.yaml \ + ++pipeline.type=video \ + ++pipeline.conformance.save_conformance_files=True \ + ++pipeline.conformance.subsample_ratio=9 \ + ++vision_model.arch=panoptic_rcnn_R_101_FPN_3x \ + ++dataset.type=Detectron2Dataset \ + ++dataset.datacatalog=PANDASET \ + ++dataset.config.root=${PANDASET_SRC}/${SEQ} \ + ++dataset.config.imgs_folder=camera/front_camera \ + ++dataset.config.ext=jpg \ + ++dataset.config.annotation_file=annotations/${SEQ}.npz \ + ++dataset.config.dataset_name=pandaset-${SEQ} \ + ++evaluator.type=SEMANTICSEG-EVAL \ + ++pipeline.nn_task_part1.load_features=False \ + ++pipeline.nn_task_part1.dump_features=False \ + ++pipeline.nn_task_part2.dump_features=False \ + ++misc.device.nn_parts=${DEVICE} +done \ No newline at end of file