|
22 | 22 |
|
23 | 23 | models = dict(
|
24 | 24 | mobilenetv1=dict(
|
25 |
| - name="MobileNetV1", |
| 25 | + name="MobileNet", |
26 | 26 | topic="image_classification",
|
27 | 27 | modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv1_2022apr.onnx"),
|
28 | 28 | topK=5),
|
29 | 29 | mobilenetv1_q=dict(
|
30 |
| - name="MobileNetV1", |
| 30 | + name="MobileNet", |
31 | 31 | topic="image_classification",
|
32 |
| - modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv1_2022apr-int8-quantized.onnx"), |
| 32 | + modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv1_2022apr_int8.onnx"), |
33 | 33 | topK=5),
|
34 | 34 | mobilenetv2=dict(
|
35 |
| - name="MobileNetV2", |
| 35 | + name="MobileNet", |
36 | 36 | topic="image_classification",
|
37 | 37 | modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv2_2022apr.onnx"),
|
38 | 38 | topK=5),
|
39 | 39 | mobilenetv2_q=dict(
|
40 |
| - name="MobileNetV2", |
| 40 | + name="MobileNet", |
41 | 41 | topic="image_classification",
|
42 |
| - modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv2_2022apr-int8-quantized.onnx"), |
| 42 | + modelPath=os.path.join(root_dir, "models/image_classification_mobilenet/image_classification_mobilenetv2_2022apr_int8.onnx"), |
43 | 43 | topK=5),
|
44 | 44 | ppresnet=dict(
|
45 | 45 | name="PPResNet",
|
|
49 | 49 | ppresnet_q=dict(
|
50 | 50 | name="PPResNet",
|
51 | 51 | topic="image_classification",
|
52 |
| - modelPath=os.path.join(root_dir, "models/image_classification_ppresnet/image_classification_ppresnet50_2022jan-act_int8-wt_int8-quantized.onnx"), |
| 52 | + modelPath=os.path.join(root_dir, "models/image_classification_ppresnet/image_classification_ppresnet50_2022jan_int8.onnx"), |
53 | 53 | topK=5),
|
54 | 54 | yunet=dict(
|
55 | 55 | name="YuNet",
|
|
72 | 72 | sface_q=dict(
|
73 | 73 | name="SFace",
|
74 | 74 | topic="face_recognition",
|
75 |
| - modelPath=os.path.join(root_dir, "models/face_recognition_sface/face_recognition_sface_2021dec-act_int8-wt_int8-quantized.onnx")), |
76 |
| - crnn=dict( |
| 75 | + modelPath=os.path.join(root_dir, "models/face_recognition_sface/face_recognition_sface_2021dec_int8.onnx")), |
| 76 | + crnn_en=dict( |
77 | 77 | name="CRNN",
|
78 | 78 | topic="text_recognition",
|
79 | 79 | modelPath=os.path.join(root_dir, "models/text_recognition_crnn/text_recognition_CRNN_EN_2021sep.onnx")),
|
| 80 | + crnn_en_q=dict( |
| 81 | + name="CRNN", |
| 82 | + topic="text_recognition", |
| 83 | + modelPath=os.path.join(root_dir, "models/text_recognition_crnn/text_recognition_CRNN_EN_2022oct_int8.onnx")), |
80 | 84 | pphumanseg=dict(
|
81 | 85 | name="PPHumanSeg",
|
82 | 86 | topic="human_segmentation",
|
83 |
| - modelPath=os.path.join(root_dir, "models/human_segmentation_pphumanseg/human_segmentation_pphumanseg_2021oct.onnx")), |
| 87 | + modelPath=os.path.join(root_dir, "models/human_segmentation_pphumanseg/human_segmentation_pphumanseg_2023mar.onnx")), |
84 | 88 | pphumanseg_q=dict(
|
85 | 89 | name="PPHumanSeg",
|
86 | 90 | topic="human_segmentation",
|
87 |
| - modelPath=os.path.join(root_dir, "models/human_segmentation_pphumanseg/human_segmentation_pphumanseg_2021oct-act_int8-wt_int8-quantized.onnx")), |
| 91 | + modelPath=os.path.join(root_dir, "models/human_segmentation_pphumanseg/human_segmentation_pphumanseg_2023mar_int8.onnx")), |
88 | 92 | )
|
89 | 93 |
|
90 | 94 | datasets = dict(
|
|
0 commit comments