forked from RICKIE777/ovmtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_all.py
773 lines (769 loc) · 55 KB
/
test_all.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
import subprocess
import os
import sys
cwd = os.getcwd()
binA = cwd + '/../openvino/bin/intel64/RelWithDebInfo'
binB = cwd + '/../openvino-tmp/bin/intel64/RelWithDebInfo'
args = ['-t', 5, '-b', 1, '-nireq=1', '-nstreams=1', '-nthreads=4', '-infer_precision=f32']
args = [str(i) for i in args]
base = 'c:/models/'
if len(sys.argv) > 1:
binA = sys.argv[1]
output_base = 'test_all'
if len(sys.argv) > 2:
output_base = sys.argv[2]
if len(sys.argv) > 3:
base = sys.argv[3]
if len(sys.argv) > 4:
args += sys.argv[4:]
files = [
"text-image-super-resolution-0001/onnx/onnx/FP32/1/dldt/text-image-super-resolution-0001.xml",
"edsr3_super_resolution/tf/tf_frozen/FP32/1/dldt/edsr3_super_resolution.xml",
"face-detection-0206/onnx/onnx/FP32/1/dldt/face-detection-0206.xml",
"single-image-super-resolution-1032/onnx/onnx/FP32/1/dldt/single-image-super-resolution-1032.xml",
"single-image-super-resolution-1033/onnx/onnx/FP32/1/dldt/single-image-super-resolution-1033.xml",
"bert-small-uncased-whole-word-masking-squad-int8-0002/onnx/onnx/FP32/1/dldt/bert-small-uncased-whole-word-masking-squad-int8-0002.xml",
"faceboxes/onnx/onnx/FP32/1/dldt/faceboxes.xml",
"deeplabv3-mobilenetv3/onnx/onnx/FP32/1/dldt/deeplabv3-mobilenetv3.xml",
"msdnet-all-shared-gcn-cifar100-b3-k5-s1/onnx/onnx/FP32/1/dldt/msdnet-all-shared-gcn-cifar100-b3-k5-s1.xml",
"faceboxes/caffe/caffe/FP32/1/dldt/faceboxes.xml",
"inceptionv3-int8-onnx-0001/onnx/onnx/FP32/1/dldt/inceptionv3-int8-onnx-0001.xml",
"bert-large-uncased-whole-word-masking-squad-int8-0001/onnx/onnx/FP32/1/dldt/bert-large-uncased-whole-word-masking-squad-int8-0001.xml",
"msdnet-gcn-anytime-cifar10/onnx/onnx/FP32/1/dldt/msdnet-gcn-anytime-cifar10.xml",
"MGANet_model_AI37/onnx/onnx/FP32/1/dldt/MGANet_model_AI37.xml",
"icnet-camvid-onnx-0001/onnx/onnx/FP32/1/dldt/icnet-camvid-onnx-0001.xml",
"robust-video-matting-mobilenetv3/onnx/onnx/FP32/1/dldt/robust-video-matting-mobilenetv3.xml",
"thoracic-segmentation-0001/onnx/onnx/FP32/1/dldt/thoracic-segmentation-0001.xml",
"hrnet-v2-c1-segmentation/onnx/onnx/FP32/1/dldt/hrnet-v2-c1-segmentation.xml",
"densenet-169/onnx/onnx/FP32/1/dldt/densenet-169.xml",
"TCN/tf/tf_frozen/FP32/1/dldt/TCN.xml",
"unet-2d/onnx/onnx/FP32/1/dldt/unet-2d.xml",
"text-spotting-0005-detector/onnx/onnx/FP32/1/dldt/text-spotting-0005-detector.xml",
"efficientdet-d0/tf/tf_frozen/FP32/1/dldt/efficientdet-d0.xml",
"densenet-201/onnx/onnx/FP32/1/dldt/densenet-201.xml",
"dla-60xc/onnx/onnx/FP32/1/dldt/dla-60xc.xml",
"ssd-resnet101-fpn-oid/tf/tf_frozen/FP32/1/dldt/ssd-resnet101-fpn-oid.xml",
"unet-camvid-onnx-0001/onnx/onnx/FP32/1/dldt/unet-camvid-onnx-0001.xml",
"shufflenet/onnx/onnx/FP32/1/dldt/shufflenet.xml",
"ssd300-int8-onnx-0001/onnx/onnx/FP32/1/dldt/ssd300-int8-onnx-0001.xml",
"dense_vnet_abdominal_ct/tf/tf_frozen/FP32/1/dldt/dense_vnet_abdominal_ct.xml",
"vehicle-attributes-recognition-barrier-0010/caffe/caffe/FP32/1/dldt/vehicle-attributes-recognition-barrier-0010.xml",
"dla-46xc/onnx/onnx/FP32/1/dldt/dla-46xc.xml",
"semantic-segmentation-0001/onnx/onnx/FP32/1/dldt/semantic-segmentation-0001.xml",
"hbonet-0.25/onnx/onnx/FP32/1/dldt/hbonet-0.25.xml",
"resnet-18/caffe/caffe/FP32/1/dldt/resnet-18.xml",
"semantic-segmentation-0002/onnx/onnx/FP32/1/dldt/semantic-segmentation-0002.xml",
"hbonet-0.5/onnx/onnx/FP32/1/dldt/hbonet-0.5.xml",
"se-resnext-50/tf/tf_meta/FP32/1/dldt/se-resnext-50.xml",
"icnet-camvid-ava-sparse-30-0001/tf/tf_frozen/FP32/1/dldt/icnet-camvid-ava-sparse-30-0001.xml",
"icv-reid-embedding/caffe/caffe/FP32/1/dldt/icv-reid-embedding.xml",
"regnetx-32gf/onnx/onnx/FP32/1/dldt/regnetx-32gf.xml",
"resnext-101-3d/onnx/onnx/FP32/1/dldt/resnext-101-3d.xml",
"nasnet-a-mobile-224/tf/tf_frozen/FP32/1/dldt/nasnet-a-mobile-224.xml",
"vggvox/tf/tf_frozen/FP32/1/dldt/vggvox.xml",
"densenet-121/onnx/onnx/FP32/1/dldt/densenet-121.xml",
"facial-landmarks-35-adas-0002/caffe/caffe/FP32/1/dldt/facial-landmarks-35-adas-0002.xml",
"R-FCN-resnet-50/caffe/caffe/FP32/1/dldt/R-FCN-resnet-50.xml",
"resnet-v1.5-50/tf/tf_frozen/FP32/1/dldt/resnet-v1.5-50.xml",
"fbcnn/onnx/onnx/FP32/1/dldt/fbcnn.xml",
"aclnet-int8/onnx/onnx/FP32/1/dldt/aclnet-int8.xml",
"intel-labs-nonlocal-dehazing/tf/tf_frozen/FP32/1/dldt/intel-labs-nonlocal-dehazing.xml",
"resnet18-dorefa-binary-onnx-0001/onnx/onnx/FP32/1/dldt/resnet18-dorefa-binary-onnx-0001.xml",
"mtcnn-p/caffe/caffe/FP32/1/dldt/mtcnn-p.xml",
"aclnet/onnx/onnx/FP32/1/dldt/aclnet.xml",
"deeplabv3-resnet101/onnx/onnx/FP32/1/dldt/deeplabv3-resnet101.xml",
"resnet50-int8-onnx-0001/onnx/onnx/FP32/1/dldt/resnet50-int8-onnx-0001.xml",
"weld-porosity-detection-0001/onnx/onnx/FP32/1/dldt/weld-porosity-detection-0001.xml",
"hifi-gan/onnx/onnx/FP32/1/dldt/hifi-gan.xml",
"human-pose-estimation-0005/onnx/onnx/FP32/1/dldt/human-pose-estimation-0005.xml",
"mixnet-l/tf/tf_meta/FP32/1/dldt/mixnet-l.xml",
"Sphereface/caffe/caffe/FP32/1/dldt/Sphereface.xml",
"dla-46c/onnx/onnx/FP32/1/dldt/dla-46c.xml",
"resnet-34-pytorch/onnx/onnx/FP32/1/dldt/resnet-34-pytorch.xml",
"icv-enet-curbs/caffe/caffe/FP32/1/dldt/icv-enet-curbs.xml",
"hbonet-1.0/onnx/onnx/FP32/1/dldt/hbonet-1.0.xml",
"Autodesk_3d_modeling/tf/tf_frozen/FP32/1/dldt/Autodesk_3d_modeling.xml",
"ctdet_coco_dlav0_512/onnx/onnx/FP32/1/dldt/ctdet_coco_dlav0_512.xml",
"person-vehicle-bike-detection-crossroad-yolov3-1020/tf/tf_frozen/FP32/1/dldt/person-vehicle-bike-detection-crossroad-yolov3-1020.xml",
"tiny_yolo_v2/tf/tf_frozen/FP32/1/dldt/tiny_yolo_v2.xml",
"hier_atte_net/tf/tf_frozen/FP32/1/dldt/hier_atte_net.xml",
"squeezenet1.0/caffe/caffe/FP32/1/dldt/squeezenet1.0.xml",
"deepvariant_wgs/tf/tf_frozen/FP32/1/dldt/deepvariant_wgs.xml",
"text-spotting-0004-recognizer-encoder/onnx/onnx/FP32/1/dldt/text-spotting-0004-recognizer-encoder.xml",
"darknet53/tf/tf_frozen/FP32/1/dldt/darknet53.xml",
"yolo-v4-tiny/tf/tf_frozen/FP32/1/dldt/yolo-v4-tiny.xml",
"icv-enet-curbs-relu/caffe/caffe/FP32/1/dldt/icv-enet-curbs-relu.xml",
"face-recognition-resnet100-arcface/onnx/onnx/FP32/1/dldt/face-recognition-resnet100-arcface.xml",
"resnet18-xnor-binary-onnx-0001/onnx/onnx/FP32/1/dldt/resnet18-xnor-binary-onnx-0001.xml",
"icnet-camvid-ava-0001/tf/tf_frozen/FP32/1/dldt/icnet-camvid-ava-0001.xml",
"face-detection-retail-0004/caffe/caffe/FP32/1/dldt/face-detection-retail-0004.xml",
"icnet-camvid-ava-sparse-60-0001/tf/tf_frozen/FP32/1/dldt/icnet-camvid-ava-sparse-60-0001.xml",
"person-vehicle-bike-detection-2002/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-2002.xml",
"yolo_v5l/onnx/onnx/FP32/1/dldt/yolo_v5l.xml",
"quartznet-decoder/onnx/onnx/FP32/1/dldt/quartznet-decoder.xml",
"icvface-0034/caffe/caffe/FP32/1/dldt/icvface-0034.xml",
"dla-34/onnx/onnx/FP32/1/dldt/dla-34.xml",
"shufflenet-v2-x1.0/tf/tf_frozen/FP32/1/dldt/shufflenet-v2-x1.0.xml",
"vgg19/caffe/caffe/FP32/1/dldt/vgg19.xml",
"hybrid-cs-model-mri/tf2/tf2_saved_model/FP32/1/dldt/hybrid-cs-model-mri.xml",
"yolo_v4/tf/tf_frozen/FP32/1/dldt/yolo_v4.xml",
"sgan/onnx/onnx/FP32/1/dldt/sgan.xml",
"human-pose-estimation-0004/onnx/onnx/FP32/1/dldt/human-pose-estimation-0004.xml",
"icv-mobilenetv2-pd/caffe/caffe/FP32/1/dldt/icv-mobilenetv2-pd.xml",
"face-detection-retail-0044/caffe/caffe/FP32/1/dldt/face-detection-retail-0044.xml",
"repvgg-b0/onnx/onnx/FP32/1/dldt/repvgg-b0.xml",
"resnest-50-3d/tf2/tf2_saved_model/FP32/1/dldt/resnest-50-3d.xml",
"hbonet-0.8/onnx/onnx/FP32/1/dldt/hbonet-0.8.xml",
"ebgan/onnx/onnx/FP32/1/dldt/ebgan.xml",
"human-pose-estimation-0007/onnx/onnx/FP32/1/dldt/human-pose-estimation-0007.xml",
"repvgg-b3/onnx/onnx/FP32/1/dldt/repvgg-b3.xml",
"acgan/onnx/onnx/FP32/1/dldt/acgan.xml",
"yolo_v3_tiny/tf/tf_frozen/FP32/1/dldt/yolo_v3_tiny.xml",
"resnet-50/tf/tf_frozen/FP32/1/dldt/resnet-50.xml",
"repvgg-b1/onnx/onnx/FP32/1/dldt/repvgg-b1.xml",
"person-attributes-recognition-crossroad-0238/onnx/onnx/FP32/1/dldt/person-attributes-recognition-crossroad-0238.xml",
"gmcnn-places2/tf/tf_frozen/FP32/1/dldt/gmcnn-places2.xml",
"vehicle-license-plate-detection-barrier-0007/caffe/caffe/FP32/1/dldt/vehicle-license-plate-detection-barrier-0007.xml",
"repvgg-a0/onnx/onnx/FP32/1/dldt/repvgg-a0.xml",
"yolo_v3/onnx/onnx/FP32/1/dldt/yolo_v3.xml",
"wavernn-upsampler/onnx/onnx/FP32/1/dldt/wavernn-upsampler.xml",
"face-detection-0204/onnx/onnx/FP32/1/dldt/face-detection-0204.xml",
"resnet-18/onnx/onnx/FP32/1/dldt/resnet-18.xml",
"icv_person_attributes_multi_path/caffe/caffe/FP32/1/dldt/icv_person_attributes_multi_path.xml",
"person-attributes-recognition-crossroad-0230/onnx/onnx/FP32/1/dldt/person-attributes-recognition-crossroad-0230.xml",
"single-human-pose-estimation-0001/onnx/onnx/FP32/1/dldt/single-human-pose-estimation-0001.xml",
"densenet-161/onnx/onnx/FP32/1/dldt/densenet-161.xml",
"resnet-152/onnx/onnx/FP32/1/dldt/resnet-152.xml",
"crnn/onnx/onnx/FP32/1/dldt/crnn.xml",
"yolo-v2/caffe/caffe/FP32/1/dldt/yolo-v2.xml",
"road-segmentation-adas-0001/caffe/caffe/FP32/1/dldt/road-segmentation-adas-0001.xml",
"dla-169/onnx/onnx/FP32/1/dldt/dla-169.xml",
"began/onnx/onnx/FP32/1/dldt/began.xml",
"face-detection-retail-0005/onnx/onnx/FP32/1/dldt/face-detection-retail-0005.xml",
"vgg16/caffe/caffe/FP32/1/dldt/vgg16.xml",
"STN/tf/tf_frozen/FP32/1/dldt/STN.xml",
"person-vehicle-bike-detection-crossroad-1016/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-crossroad-1016.xml",
"squeezenet1.0/onnx/onnx/FP32/1/dldt/squeezenet1.0.xml",
"mask_rcnn_resnet50_atrous_coco/tf/tf_frozen/FP32/1/dldt/mask_rcnn_resnet50_atrous_coco.xml",
"yolo_v2/onnx/onnx/FP32/1/dldt/yolo_v2.xml",
"googlenet-v3/tf/tf_frozen/FP32/1/dldt/googlenet-v3.xml",
"openpose-pose/tf/tf_frozen/FP32/1/dldt/openpose-pose.xml",
"yolox-tiny/onnx/onnx/FP32/1/dldt/yolox-tiny.xml",
"resnet-v2-101/tf/tf_frozen/FP32/1/dldt/resnet-v2-101.xml",
"densenet-121/caffe/caffe/FP32/1/dldt/densenet-121.xml",
"resnet-v2-152/tf/tf_frozen/FP32/1/dldt/resnet-v2-152.xml",
"densenet-121/tf/tf_meta/FP32/1/dldt/densenet-121.xml",
"R-FCN-resnet-101/caffe/caffe/FP32/1/dldt/R-FCN-resnet-101.xml",
"cpm-pose/tf/tf_frozen/FP32/1/dldt/cpm-pose.xml",
"person-attributes-recognition-crossroad-0031/caffe/caffe/FP32/1/dldt/person-attributes-recognition-crossroad-0031.xml",
"googlenet-v3/onnx/onnx/FP32/1/dldt/googlenet-v3.xml",
"wdsr-small-x4/onnx/onnx/FP32/1/dldt/wdsr-small-x4.xml",
"learning-to-see-in-the-dark-fuji/tf/tf_frozen/FP32/1/dldt/learning-to-see-in-the-dark-fuji.xml",
"u-net-3d-isensee-2017/tf/tf_frozen/FP32/1/dldt/u-net-3d-isensee-2017.xml",
"vgg16/onnx/onnx/FP32/1/dldt/vgg16.xml",
"densenet-169/caffe/caffe/FP32/1/dldt/densenet-169.xml",
"ens3-adv-inception-v3/tf/tf_frozen/FP32/1/dldt/ens3-adv-inception-v3.xml",
"formula-recognition-print-0002-encoder/onnx/onnx/FP32/1/dldt/formula-recognition-print-0002-encoder.xml",
"squeezenet1.1/caffe/caffe/FP32/1/dldt/squeezenet1.1.xml",
"vehicle-license-plate-detection-barrier-0106/tf/tf_frozen/FP32/1/dldt/vehicle-license-plate-detection-barrier-0106.xml",
"text-recognition-resnet-fc/onnx/onnx/FP32/1/dldt/text-recognition-resnet-fc.xml",
"densenet-121/tf2/tf2_saved_model/FP32/1/dldt/densenet-121.xml",
"yolo-tiny-v2-noregion/tf/tf_frozen/FP32/1/dldt/yolo-tiny-v2-noregion.xml",
"f3net/onnx/onnx/FP32/1/dldt/f3net.xml",
"yolo_v3_tiny/onnx/onnx/FP32/1/dldt/yolo_v3_tiny.xml",
"resnet-50/onnx/onnx/FP32/1/dldt/resnet-50.xml",
"icv-lprnet-with-detection-head/caffe/caffe/FP32/1/dldt/icv-lprnet-with-detection-head.xml",
"googlenet-v3/tf2/tf2_saved_model/FP32/1/dldt/googlenet-v3.xml",
"bert-small-uncased-whole-word-masking-squad-emb-int8-0001/onnx/onnx/FP32/1/dldt/bert-small-uncased-whole-word-masking-squad-emb-int8-0001.xml",
"yolo-tiny-v1/caffe/caffe/FP32/1/dldt/yolo-tiny-v1.xml",
"googlenet-v2/caffe/caffe/FP32/1/dldt/googlenet-v2.xml",
"mobilenet-ssd/caffe/caffe/FP32/1/dldt/mobilenet-ssd.xml",
"minigo/tf/tf_frozen/FP32/1/dldt/minigo.xml",
"vehicle-attributes-recognition-barrier-0042/onnx/onnx/FP32/1/dldt/vehicle-attributes-recognition-barrier-0042.xml",
"formula-recognition-medium-scan-0001-im2latex-decoder/onnx/onnx/FP32/1/dldt/formula-recognition-medium-scan-0001-im2latex-decoder.xml",
"deeplabv3/tf/tf_frozen/FP32/1/dldt/deeplabv3.xml",
"vehicle-detection-adas-0002/caffe/caffe/FP32/1/dldt/vehicle-detection-adas-0002.xml",
"person-detection-retail-0002/caffe/caffe/FP32/1/dldt/person-detection-retail-0002.xml",
"adv-inception-v3/tf/tf_frozen/FP32/1/dldt/adv-inception-v3.xml",
"densenet-169/tf/tf_meta/FP32/1/dldt/densenet-169.xml",
"icv-crossroad-0024/caffe/caffe/FP32/1/dldt/icv-crossroad-0024.xml",
"Deep-MVLM/onnx/onnx/FP32/1/dldt/Deep-MVLM.xml",
"text-to-speech-en-0001-duration-prediction/onnx/onnx/FP32/1/dldt/text-to-speech-en-0001-duration-prediction.xml",
"text-spotting-0003-recognizer-decoder/onnx/onnx/FP32/1/dldt/text-spotting-0003-recognizer-decoder.xml",
"prnet/tf/tf_frozen/FP32/1/dldt/prnet.xml",
"bert-base-uncased-qqp/onnx/onnx/FP32/1/dldt/bert-base-uncased-qqp.xml",
"densenet-169/tf2/tf2_saved_model/FP32/1/dldt/densenet-169.xml",
"icv-crossroad-0044/caffe/caffe/FP32/1/dldt/icv-crossroad-0044.xml",
"roberta-base-sst2/onnx/onnx/FP32/1/dldt/roberta-base-sst2.xml",
"vehicle-license-plate-detection-barrier-0123/tf/tf_frozen/FP32/1/dldt/vehicle-license-plate-detection-barrier-0123.xml",
"bert-base-chinese-xnli-zh-int8-onnx-0001/onnx/onnx/FP32/1/dldt/bert-base-chinese-xnli-zh-int8-onnx-0001.xml",
"bert-base-uncased/onnx/onnx/FP32/1/dldt/bert-base-uncased.xml",
"deeplabv3-onnx/onnx/onnx/FP32/1/dldt/deeplabv3-onnx.xml",
"unet-camvid-int8-onnx-0001/onnx/onnx/FP32/1/dldt/unet-camvid-int8-onnx-0001.xml",
"formula-recognition-medium-scan-0001-im2latex-encoder/onnx/onnx/FP32/1/dldt/formula-recognition-medium-scan-0001-im2latex-encoder.xml",
"person-vehicle-bike-detection-crossroad-0078/caffe/caffe/FP32/1/dldt/person-vehicle-bike-detection-crossroad-0078.xml",
"human-pose-estimation-3d-0001/onnx/onnx/FP32/1/dldt/human-pose-estimation-3d-0001.xml",
"face-detection-0204-no-custom-nms-pre-classwise-200/onnx/onnx/FP32/1/dldt/face-detection-0204-no-custom-nms-pre-classwise-200.xml",
"vgg19/onnx/onnx/FP32/1/dldt/vgg19.xml",
"wide-resnet-50-v2/onnx/onnx/FP32/1/dldt/wide-resnet-50-v2.xml",
"text-spotting-0005-recognizer-decoder/onnx/onnx/FP32/1/dldt/text-spotting-0005-recognizer-decoder.xml",
"facial-landmarks-98-detection-0001/onnx/onnx/FP32/1/dldt/facial-landmarks-98-detection-0001.xml",
"common-sign-language-0001/onnx/onnx/FP32/1/dldt/common-sign-language-0001.xml",
"asl-recognition-0004/onnx/onnx/FP32/1/dldt/asl-recognition-0004.xml",
"face-detection-0202-no-custom/onnx/onnx/FP32/1/dldt/face-detection-0202-no-custom.xml",
"mobilenet-112-kinetics-group8/onnx/onnx/FP32/1/dldt/mobilenet-112-kinetics-group8.xml",
"forward-tacotron-duration-prediction/onnx/onnx/FP32/1/dldt/forward-tacotron-duration-prediction.xml",
"vgg16/tf/tf_frozen/FP32/1/dldt/vgg16.xml",
"hg-s2-b1-mpii/onnx/onnx/FP32/1/dldt/hg-s2-b1-mpii.xml",
"topaz_video_super_resolution/tf/tf_frozen/FP32/1/dldt/topaz_video_super_resolution.xml",
"vgg19/tf/tf_frozen/FP32/1/dldt/vgg19.xml",
"rexnet-v1-1.3x/onnx/onnx/FP32/1/dldt/rexnet-v1-1.3x.xml",
"refinedet-vgg16/caffe/caffe/FP32/1/dldt/refinedet-vgg16.xml",
"license-plate-recognition-barrier-0001/caffe/caffe/FP32/1/dldt/license-plate-recognition-barrier-0001.xml",
"bert-base-uncased-cola/onnx/onnx/FP32/1/dldt/bert-base-uncased-cola.xml",
"resnet-34-3d/onnx/onnx/FP32/1/dldt/resnet-34-3d.xml",
"se-resnet-101/caffe/caffe/FP32/1/dldt/se-resnet-101.xml",
"face-detection-0202-no-custom-nms-pre-classwise-200/onnx/onnx/FP32/1/dldt/face-detection-0202-no-custom-nms-pre-classwise-200.xml",
"cocosnet/onnx/onnx/FP32/1/dldt/cocosnet.xml",
"person-detection-retail-0012/caffe/caffe/FP32/1/dldt/person-detection-retail-0012.xml",
"yolo-v2-noregion/tf/tf_frozen/FP32/1/dldt/yolo-v2-noregion.xml",
"asl-recognition-0003/onnx/onnx/FP32/1/dldt/asl-recognition-0003.xml",
"drn-d-54/onnx/onnx/FP32/1/dldt/drn-d-54.xml",
"resnest-50-pytorch/onnx/onnx/FP32/1/dldt/resnest-50-pytorch.xml",
"resnext-3d/onnx/onnx/FP32/1/dldt/resnext-3d.xml",
"vgg-13-bn/onnx/onnx/FP32/1/dldt/vgg-13-bn.xml",
"yolo_v5m/onnx/onnx/FP32/1/dldt/yolo_v5m.xml",
"icv-mobilenet-face-reid/caffe/caffe/FP32/1/dldt/icv-mobilenet-face-reid.xml",
"text-spotting-0003-recognizer-encoder/onnx/onnx/FP32/1/dldt/text-spotting-0003-recognizer-encoder.xml",
"license-plate-recognition-barrier-0007/tf/tf_frozen/FP32/1/dldt/license-plate-recognition-barrier-0007.xml",
"efficientdet-d0-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d0-coco.xml",
"fcn-vgg16-8s/caffe/caffe/FP32/1/dldt/fcn-vgg16-8s.xml",
"pointrend-resnet50-fpn-pytorch/onnx/onnx/FP32/1/dldt/pointrend-resnet50-fpn-pytorch.xml",
"cpm-person/tf/tf_frozen/FP32/1/dldt/cpm-person.xml",
"dbnet/onnx/onnx/FP32/1/dldt/dbnet.xml",
"product-detection-0001/onnx/onnx/FP32/1/dldt/product-detection-0001.xml",
"icv-tsr-us/caffe/caffe/FP32/1/dldt/icv-tsr-us.xml",
"bert-base-uncased-sst2/onnx/onnx/FP32/1/dldt/bert-base-uncased-sst2.xml",
"fcrn-dp-nyu-depth-v2-tf/tf/tf_meta/FP32/1/dldt/fcrn-dp-nyu-depth-v2-tf.xml",
"hg-s8-b1-mpii/onnx/onnx/FP32/1/dldt/hg-s8-b1-mpii.xml",
"se-resnet-50/caffe/caffe/FP32/1/dldt/se-resnet-50.xml",
"regnetx-3.2gf/onnx/onnx/FP32/1/dldt/regnetx-3.2gf.xml",
"person-detection-action-recognition-teacher-0002/caffe/caffe/FP32/1/dldt/person-detection-action-recognition-teacher-0002.xml",
"facenet-20180408-102900/tf/tf_frozen/FP32/1/dldt/facenet-20180408-102900.xml",
"handwritten-japanese-recognition-0001/onnx/onnx/FP32/1/dldt/handwritten-japanese-recognition-0001.xml",
"efficientdet-d1/tf/tf_frozen/FP32/1/dldt/efficientdet-d1.xml",
"modnet_webcam_portrait_matting/onnx/onnx/FP32/1/dldt/modnet_webcam_portrait_matting.xml",
"handwritten-simplified-chinese-recognition-0001/onnx/onnx/FP32/1/dldt/handwritten-simplified-chinese-recognition-0001.xml",
"background-matting-mobilenetv2/onnx/onnx/FP32/1/dldt/background-matting-mobilenetv2.xml",
"vgg-13/onnx/onnx/FP32/1/dldt/vgg-13.xml",
"human-pose-estimation-0001/caffe/caffe/FP32/1/dldt/human-pose-estimation-0001.xml",
"conv-seq2seq-encoder/onnx/onnx/FP32/1/dldt/conv-seq2seq-encoder.xml",
"vgg-16-bn/onnx/onnx/FP32/1/dldt/vgg-16-bn.xml",
"resnet-50-pytorch/onnx/onnx/FP32/1/dldt/resnet-50-pytorch.xml",
"googlenet-v4/tf/tf_frozen/FP32/1/dldt/googlenet-v4.xml",
"resnet-18-3d/onnx/onnx/FP32/1/dldt/resnet-18-3d.xml",
"higher-hrnet-w32-512/onnx/onnx/FP32/1/dldt/higher-hrnet-w32-512.xml",
"icvnet-1.3/caffe/caffe/FP32/1/dldt/icvnet-1.3.xml",
"vgg-11-bn/onnx/onnx/FP32/1/dldt/vgg-11-bn.xml",
"wenet-encoder/onnx/onnx/FP32/1/dldt/wenet-encoder.xml",
"deep-high-resolution-net/onnx/onnx/FP32/1/dldt/deep-high-resolution-net.xml",
"crnn-tf/tf/tf_frozen/FP32/1/dldt/crnn-tf.xml",
"ultra-lightweight-face-detection-slim-320/onnx/onnx/FP32/1/dldt/ultra-lightweight-face-detection-slim-320.xml",
"face-detection-0202/onnx/onnx/FP32/1/dldt/face-detection-0202.xml",
"albert-base-v2/onnx/onnx/FP32/1/dldt/albert-base-v2.xml",
"se-resnext-50/onnx/onnx/FP32/1/dldt/se-resnext-50.xml",
"densenet-201/caffe/caffe/FP32/1/dldt/densenet-201.xml",
"human-pose-estimation-0006/onnx/onnx/FP32/1/dldt/human-pose-estimation-0006.xml",
"person-attributes-recognition-crossroad-0234/onnx/onnx/FP32/1/dldt/person-attributes-recognition-crossroad-0234.xml",
"pva_net_lpd/caffe/caffe/FP32/1/dldt/pva_net_lpd.xml",
"roberta-base-mrpc/onnx/onnx/FP32/1/dldt/roberta-base-mrpc.xml",
"face-detection-0205/onnx/onnx/FP32/1/dldt/face-detection-0205.xml",
"yolo_v2/tf/tf_frozen/FP32/1/dldt/yolo_v2.xml",
"densenet-201/tf2/tf2_saved_model/FP32/1/dldt/densenet-201.xml",
"resnet-v2-50/tf/tf_frozen/FP32/1/dldt/resnet-v2-50.xml",
"distilbert-base-uncased/onnx/onnx/FP32/1/dldt/distilbert-base-uncased.xml",
"electra-base-qqp/onnx/onnx/FP32/1/dldt/electra-base-qqp.xml",
"common-sign-language-0002/onnx/onnx/FP32/1/dldt/common-sign-language-0002.xml",
"darknet19/tf/tf_frozen/FP32/1/dldt/darknet19.xml",
"driver-action-recognition-adas-0002-decoder/onnx/onnx/FP32/1/dldt/driver-action-recognition-adas-0002-decoder.xml",
"resnet50-cbam/onnx/onnx/FP32/1/dldt/resnet50-cbam.xml",
"tiny_yolo_v1/tf/tf_frozen/FP32/1/dldt/tiny_yolo_v1.xml",
"ssd_mobilenet_v2_coco/tf/tf_frozen/FP32/1/dldt/ssd_mobilenet_v2_coco.xml",
"icv-emotions-recognition-0002/tf/tf_frozen/FP32/1/dldt/icv-emotions-recognition-0002.xml",
"ernie/onnx/onnx/FP32/1/dldt/ernie.xml",
"vgg-11/onnx/onnx/FP32/1/dldt/vgg-11.xml",
"wgan/onnx/onnx/FP32/1/dldt/wgan.xml",
"t2t-vit-t-14/onnx/onnx/FP32/1/dldt/t2t-vit-t-14.xml",
"cgan/onnx/onnx/FP32/1/dldt/cgan.xml",
"Sharpen-Sharpen/tf/tf_frozen/FP32/1/dldt/Sharpen-Sharpen.xml",
"Denoise/tf/tf_frozen/FP32/1/dldt/Denoise.xml",
"electra-base-cola/onnx/onnx/FP32/1/dldt/electra-base-cola.xml",
"ssdlite_mobilenet_v2/tf/tf_frozen/FP32/1/dldt/ssdlite_mobilenet_v2.xml",
"ultra-lightweight-face-detection-rfb-320/onnx/onnx/FP32/1/dldt/ultra-lightweight-face-detection-rfb-320.xml",
"squeezenet1.1/tf/tf_frozen/FP32/1/dldt/squeezenet1.1.xml",
"modnet_photographic_portrait_matting/onnx/onnx/FP32/1/dldt/modnet_photographic_portrait_matting.xml",
"pedestrian-and-vehicle-detector-adas-0001/caffe/caffe/FP32/1/dldt/pedestrian-and-vehicle-detector-adas-0001.xml",
"vgg-19-bn/onnx/onnx/FP32/1/dldt/vgg-19-bn.xml",
"caffenet/caffe/caffe/FP32/1/dldt/caffenet.xml",
"person-reidentification-retail-0286/onnx/onnx/FP32/1/dldt/person-reidentification-retail-0286.xml",
"instance-segmentation-security-1039/onnx/onnx/FP32/1/dldt/instance-segmentation-security-1039.xml",
"yolo-tiny-v2/caffe/caffe/FP32/1/dldt/yolo-tiny-v2.xml",
"face-detection-0204-no-custom/onnx/onnx/FP32/1/dldt/face-detection-0204-no-custom.xml",
"DSSD_lite/caffe/caffe/FP32/1/dldt/DSSD_lite.xml",
"text-to-speech-en-multi-0001-regression/onnx/onnx/FP32/1/dldt/text-to-speech-en-multi-0001-regression.xml",
"mobilenet_v2_fpn_ssdlite_crossroad/tf/tf_frozen/FP32/1/dldt/mobilenet_v2_fpn_ssdlite_crossroad.xml",
"corel_nnart_001/onnx/onnx/FP32/1/dldt/corel_nnart_001.xml",
"yolo_v5s/onnx/onnx/FP32/1/dldt/yolo_v5s.xml",
"stylegan2/tf/tf_frozen/FP32/1/dldt/stylegan2.xml",
"east_resnet_v1_50/tf/tf_frozen/FP32/1/dldt/east_resnet_v1_50.xml",
"resnet-50/caffe/caffe/FP32/1/dldt/resnet-50.xml",
"rexnet-v1-x1.0/onnx/onnx/FP32/1/dldt/rexnet-v1-x1.0.xml",
"forward-tacotron-regression/onnx/onnx/FP32/1/dldt/forward-tacotron-regression.xml",
"mobilebert/onnx/onnx/FP32/1/dldt/mobilebert.xml",
"shufflenet-v2-x1.0/onnx/onnx/FP32/1/dldt/shufflenet-v2-x1.0.xml",
"se-resnet-152/caffe/caffe/FP32/1/dldt/se-resnet-152.xml",
"resnet-50-3d/onnx/onnx/FP32/1/dldt/resnet-50-3d.xml",
"driver-action-recognition-adas-0002-encoder/onnx/onnx/FP32/1/dldt/driver-action-recognition-adas-0002-encoder.xml",
"nasnet-a-large-331/tf/tf_frozen/FP32/1/dldt/nasnet-a-large-331.xml",
"person-reidentification-retail-0288/onnx/onnx/FP32/1/dldt/person-reidentification-retail-0288.xml",
"unet3d_mlperf/onnx/onnx/FP32/1/dldt/unet3d_mlperf.xml",
"ssd-mobiledet-edgetpu-coco/tf/tf_frozen/FP32/1/dldt/ssd-mobiledet-edgetpu-coco.xml",
"icv-squeezenet-pd/caffe/caffe/FP32/1/dldt/icv-squeezenet-pd.xml",
"gan_mnist/tf/tf_frozen/FP32/1/dldt/gan_mnist.xml",
"human-pose-estimation-0002/onnx/onnx/FP32/1/dldt/human-pose-estimation-0002.xml",
"huge-ctr/tf/tf_frozen/FP32/1/dldt/huge-ctr.xml",
"face-detection-0200-no-custom/onnx/onnx/FP32/1/dldt/face-detection-0200-no-custom.xml",
"conv-seq2seq-decoder/onnx/onnx/FP32/1/dldt/conv-seq2seq-decoder.xml",
"person-detection-raisinghand-recognition-0001/caffe/caffe/FP32/1/dldt/person-detection-raisinghand-recognition-0001.xml",
"action-recognition-0001-decoder/onnx/onnx/FP32/1/dldt/action-recognition-0001-decoder.xml",
"resnet-101-3d/onnx/onnx/FP32/1/dldt/resnet-101-3d.xml",
"person-detection-asl-0001/onnx/onnx/FP32/1/dldt/person-detection-asl-0001.xml",
"albert-large-v2/onnx/onnx/FP32/1/dldt/albert-large-v2.xml",
"electra-base-mrpc/onnx/onnx/FP32/1/dldt/electra-base-mrpc.xml",
"learning-to-see-in-the-dark-sony/tf/tf_frozen/FP32/1/dldt/learning-to-see-in-the-dark-sony.xml",
"srgan/onnx/onnx/FP32/1/dldt/srgan.xml",
"levit-128s/onnx/onnx/FP32/1/dldt/levit-128s.xml",
"vnect/caffe/caffe/FP32/1/dldt/vnect.xml",
"roberta-base-cola/onnx/onnx/FP32/1/dldt/roberta-base-cola.xml",
"rnnt_prediction/onnx/onnx/FP32/1/dldt/rnnt_prediction.xml",
"resnet50-binary-0001/onnx/onnx/FP32/1/dldt/resnet50-binary-0001.xml",
"ssd300-onnx-0001/onnx/onnx/FP32/1/dldt/ssd300-onnx-0001.xml",
"googlenet-v3/caffe/caffe/FP32/1/dldt/googlenet-v3.xml",
"deepspeech/tf/tf_frozen/FP32/1/dldt/deepspeech.xml",
"face-detection-0200-no-custom-nms-pre-classwise-200/onnx/onnx/FP32/1/dldt/face-detection-0200-no-custom-nms-pre-classwise-200.xml",
"mobilenet-v2-1.4-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v2-1.4-224.xml",
"vggm/onnx/onnx/FP32/1/dldt/vggm.xml",
"gradient-boosting-decision-tree-128-breast-cancer/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-128-breast-cancer.xml",
"retinaface-resnet50/onnx/onnx/FP32/1/dldt/retinaface-resnet50.xml",
"person-detection-retail-0013/caffe/caffe/FP32/1/dldt/person-detection-retail-0013.xml",
"gradient-boosting-decision-tree-1024-mnist/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-1024-mnist.xml",
"machine-translation-nar-de-en-0001/onnx/onnx/FP32/1/dldt/machine-translation-nar-de-en-0001.xml",
"lpcnet_decoder/onnx/onnx/FP32/1/dldt/lpcnet_decoder.xml",
"googlenet-v1/onnx/onnx/FP32/1/dldt/googlenet-v1.xml",
"roberta-large/onnx/onnx/FP32/1/dldt/roberta-large.xml",
"text-spotting-0002-recognizer-encoder/onnx/onnx/FP32/1/dldt/text-spotting-0002-recognizer-encoder.xml",
"densenet-161/tf/tf_meta/FP32/1/dldt/densenet-161.xml",
"GPT-2/onnx/onnx/FP32/1/dldt/GPT-2.xml",
"ssd_mobilenet_v1_coco/tf/tf_frozen/FP32/1/dldt/ssd_mobilenet_v1_coco.xml",
"nsnet2-20ms-48k-baseline/onnx/onnx/FP32/1/dldt/nsnet2-20ms-48k-baseline.xml",
"bert-large-cased/onnx/onnx/FP32/1/dldt/bert-large-cased.xml",
"ncf-1b/tf/tf_frozen/FP32/1/dldt/ncf-1b.xml",
"alphapose/onnx/onnx/FP32/1/dldt/alphapose.xml",
"dynamic_memory/tf/tf_frozen/FP32/1/dldt/dynamic_memory.xml",
"person-reidentification-retail-0248/onnx/onnx/FP32/1/dldt/person-reidentification-retail-0248.xml",
"efficientdet-d1-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d1-coco.xml",
"resnet-101/onnx/onnx/FP32/1/dldt/resnet-101.xml",
"nsnet2-20ms-baseline/onnx/onnx/FP32/1/dldt/nsnet2-20ms-baseline.xml",
"tacotron2/onnx/onnx/FP32/1/dldt/tacotron2.xml",
"alexnet/onnx/onnx/FP32/1/dldt/alexnet.xml",
"infogan_mnist/tf/tf_frozen/FP32/1/dldt/infogan_mnist.xml",
"yolo_v5x/onnx/onnx/FP32/1/dldt/yolo_v5x.xml",
"person-reidentification-retail-0287/onnx/onnx/FP32/1/dldt/person-reidentification-retail-0287.xml",
"mozilla-deepspeech-0.4.1/tf/tf_frozen/FP32/1/dldt/mozilla-deepspeech-0.4.1.xml",
"pspnet/caffe/caffe/FP32/1/dldt/pspnet.xml",
"cgan_mnist/tf/tf_frozen/FP32/1/dldt/cgan_mnist.xml",
"deberta-large/onnx/onnx/FP32/1/dldt/deberta-large.xml",
"bart/onnx/onnx/FP32/1/dldt/bart.xml",
"mlp-mixer-b16-224-miil/onnx/onnx/FP32/1/dldt/mlp-mixer-b16-224-miil.xml",
"dien/tf/tf_frozen/FP32/1/dldt/dien.xml",
"dla-102/onnx/onnx/FP32/1/dldt/dla-102.xml",
"bart-decoder/onnx/onnx/FP32/1/dldt/bart-decoder.xml",
"tacotron_2_encoder/onnx/onnx/FP32/1/dldt/tacotron_2_encoder.xml",
"bert-large-uncased-whole-word-masking-squad-emb-0001/onnx/onnx/FP32/1/dldt/bert-large-uncased-whole-word-masking-squad-emb-0001.xml",
"machine-translation-nar-en-de-0001/onnx/onnx/FP32/1/dldt/machine-translation-nar-en-de-0001.xml",
"mozilla-deepspeech-0.7.1/tf/tf_frozen/FP32/1/dldt/mozilla-deepspeech-0.7.1.xml",
"bert-base-chinese-xnli-zh-fp32-onnx-0001/onnx/onnx/FP32/1/dldt/bert-base-chinese-xnli-zh-fp32-onnx-0001.xml",
"3d-pose-baseline/tf/tf_frozen/FP32/1/dldt/3d-pose-baseline.xml",
"face-person-detection-retail-0002/caffe/caffe/FP32/1/dldt/face-person-detection-retail-0002.xml",
"bart-encoder/onnx/onnx/FP32/1/dldt/bart-encoder.xml",
"entity_net/tf/tf_frozen/FP32/1/dldt/entity_net.xml",
"mobilenet-v1-1.0-224/caffe/caffe/FP32/1/dldt/mobilenet-v1-1.0-224.xml",
"transformer-lt-decoder/onnx/onnx/FP32/1/dldt/transformer-lt-decoder.xml",
"bert-large/tf/tf_frozen/FP32/1/dldt/bert-large.xml",
"gradient-boosting-decision-tree-100-mnist/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-100-mnist.xml",
"seq2seq_attn/tf/tf_frozen/FP32/1/dldt/seq2seq_attn.xml",
"bert_emd_6layer/onnx/onnx/FP32/1/dldt/bert_emd_6layer.xml",
"bert-base-ner/onnx/onnx/FP32/1/dldt/bert-base-ner.xml",
"mtcnn-o/caffe/caffe/FP32/1/dldt/mtcnn-o.xml",
"transformer-lt-encoder/onnx/onnx/FP32/1/dldt/transformer-lt-encoder.xml",
"xcit-nano-12-p16/onnx/onnx/FP32/1/dldt/xcit-nano-12-p16.xml",
"covid-net/tf/tf_frozen/FP32/1/dldt/covid-net.xml",
"hg-s1-b1-mpii/onnx/onnx/FP32/1/dldt/hg-s1-b1-mpii.xml",
"formula-recognition-print-0002-decoder/onnx/onnx/FP32/1/dldt/formula-recognition-print-0002-decoder.xml",
"mobilenet-yolo-v4-syg/tf/tf_frozen/FP32/1/dldt/mobilenet-yolo-v4-syg.xml",
"attention-ocr/tf/tf_frozen/FP32/1/dldt/attention-ocr.xml",
"bert-base-chinese-xnli-zh/tf/tf_frozen/FP32/1/dldt/bert-base-chinese-xnli-zh.xml",
"wenet-decoder/onnx/onnx/FP32/1/dldt/wenet-decoder.xml",
"person-vehicle-bike-detection-2003/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-2003.xml",
"efficientnet-b0/onnx/onnx/FP32/1/dldt/efficientnet-b0.xml",
"instance-segmentation-security-1040/onnx/onnx/FP32/1/dldt/instance-segmentation-security-1040.xml",
"lm_1b/tf/tf_ckpt/FP32/1/dldt/lm_1b.xml",
"albert/tf/tf_frozen/FP32/1/dldt/albert.xml",
"se-resnext-50/caffe/caffe/FP32/1/dldt/se-resnext-50.xml",
"text-recognition-0011/onnx/onnx/FP32/1/dldt/text-recognition-0011.xml",
"bert-large-uncased/onnx/onnx/FP32/1/dldt/bert-large-uncased.xml",
"ocr-perpetuuiti/tf2/tf2_saved_model/FP32/1/dldt/ocr-perpetuuiti.xml",
"gradient-boosting-decision-tree-100-breast-cancer/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-100-breast-cancer.xml",
"nfnet-f0/onnx/onnx/FP32/1/dldt/nfnet-f0.xml",
"bert-small-uncased-whole-word-masking-squad-0002/onnx/onnx/FP32/1/dldt/bert-small-uncased-whole-word-masking-squad-0002.xml",
"yolo-tiny-v1/tf/tf_frozen/FP32/1/dldt/yolo-tiny-v1.xml",
"aipg-vdcnn/tf/tf_frozen/FP32/1/dldt/aipg-vdcnn.xml",
"mozilla-deepspeech-0.6.1/tf/tf_frozen/FP32/1/dldt/mozilla-deepspeech-0.6.1.xml",
"handwritten-score-recognition-0003/tf/tf_frozen/FP32/1/dldt/handwritten-score-recognition-0003.xml",
"vehicle-detection-0200/onnx/onnx/FP32/1/dldt/vehicle-detection-0200.xml",
"vit-base-16-224/onnx/onnx/FP32/1/dldt/vit-base-16-224.xml",
"mask_rcnn_inception_v2_coco/tf/tf_frozen/FP32/1/dldt/mask_rcnn_inception_v2_coco.xml",
"tacotron_2_decoder/onnx/onnx/FP32/1/dldt/tacotron_2_decoder.xml",
"gradient-boosting-decision-tree-128-mnist/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-128-mnist.xml",
"fcn-alexnet/caffe/caffe/FP32/1/dldt/fcn-alexnet.xml",
"key-value-memory-net/tf/tf_frozen/FP32/1/dldt/key-value-memory-net.xml",
"bert-large-uncased-whole-word-masking-squad-0001/onnx/onnx/FP32/1/dldt/bert-large-uncased-whole-word-masking-squad-0001.xml",
"gradient-boosting-decision-tree-1024-breast-cancer/onnx/onnx/FP32/1/dldt/gradient-boosting-decision-tree-1024-breast-cancer.xml",
"t2t-vit-14/onnx/onnx/FP32/1/dldt/t2t-vit-14.xml",
"dcgan/tf/tf_frozen/FP32/1/dldt/dcgan.xml",
"yolact-resnet101-fpn-pytorch/onnx/onnx/FP32/1/dldt/yolact-resnet101-fpn-pytorch.xml",
"person-detection-action-recognition-0005/caffe/caffe/FP32/1/dldt/person-detection-action-recognition-0005.xml",
"deberta-base-mnli/onnx/onnx/FP32/1/dldt/deberta-base-mnli.xml",
"ctdet_coco_dlav0_384/onnx/onnx/FP32/1/dldt/ctdet_coco_dlav0_384.xml",
"resnet-152/tf/tf_frozen/FP32/1/dldt/resnet-152.xml",
"human-pose-estimation-0003/onnx/onnx/FP32/1/dldt/human-pose-estimation-0003.xml",
"ssd_resnet50_v1_fpn_coco/tf2/tf_frozen/FP32/1/dldt/ssd_resnet50_v1_fpn_coco.xml",
"rnnt_joint/onnx/onnx/FP32/1/dldt/rnnt_joint.xml",
"person-detection-action-recognition-0006/tf/tf_frozen/FP32/1/dldt/person-detection-action-recognition-0006.xml",
"machine-translation-opennmt-eng-hin/onnx/onnx/FP32/1/dldt/machine-translation-opennmt-eng-hin.xml",
"electra-base-sst2/onnx/onnx/FP32/1/dldt/electra-base-sst2.xml",
"machine-translation-nar-de-en-0002/onnx/onnx/FP32/1/dldt/machine-translation-nar-de-en-0002.xml",
"machine-translation-opennmt-hin-eng/onnx/onnx/FP32/1/dldt/machine-translation-opennmt-hin-eng.xml",
"face-detection-adas-0001/caffe/caffe/FP32/1/dldt/face-detection-adas-0001.xml",
"machine-translation-nar-en-de-0002/onnx/onnx/FP32/1/dldt/machine-translation-nar-en-de-0002.xml",
"bert-small-uncased-whole-word-masking-squad-0001/onnx/onnx/FP32/1/dldt/bert-small-uncased-whole-word-masking-squad-0001.xml",
"t2t-vit-7/onnx/onnx/FP32/1/dldt/t2t-vit-7.xml",
"face-detection-0200/onnx/onnx/FP32/1/dldt/face-detection-0200.xml",
"refinenet-lw/onnx/onnx/FP32/1/dldt/refinenet-lw.xml",
"mobilenet-v1-1.0-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v1-1.0-224.xml",
"lpcnet_encoder/onnx/onnx/FP32/1/dldt/lpcnet_encoder.xml",
"deberta-large-mnli/onnx/onnx/FP32/1/dldt/deberta-large-mnli.xml",
"pose-ae-multiperson/tf/tf_frozen/FP32/1/dldt/pose-ae-multiperson.xml",
"aipg-ncf-ml-20m/tf/tf_frozen/FP32/1/dldt/aipg-ncf-ml-20m.xml",
"formula-recognition-polynomials-handwritten-0001-decoder/onnx/onnx/FP32/1/dldt/formula-recognition-polynomials-handwritten-0001-decoder.xml",
"i3d-rgb/tf/tf_frozen/FP32/1/dldt/i3d-rgb.xml",
"text-recognition-0013/onnx/onnx/FP32/1/dldt/text-recognition-0013.xml",
"text-recognition-0015-encoder/onnx/onnx/FP32/1/dldt/text-recognition-0015-encoder.xml",
"lcr-net-h36m_100_p2/caffe/caffe/FP32/1/dldt/lcr-net-h36m_100_p2.xml",
"text-to-speech-en-multi-0001-duration-prediction/onnx/onnx/FP32/1/dldt/text-to-speech-en-multi-0001-duration-prediction.xml",
"ssd-vgg16/onnx/onnx/FP32/1/dldt/ssd-vgg16.xml",
"icv-rmnet-ssssd/caffe/caffe/FP32/1/dldt/icv-rmnet-ssssd.xml",
"icnet/caffe/caffe/FP32/1/dldt/icnet.xml",
"mask_rcnn_resnet101_atrous_coco/tf/tf_frozen/FP32/1/dldt/mask_rcnn_resnet101_atrous_coco.xml",
"midasnet/onnx/onnx/FP32/1/dldt/midasnet.xml",
"resnext-50-32x4d/onnx/onnx/FP32/1/dldt/resnext-50-32x4d.xml",
"dna_r9.4.1@v3/onnx/onnx/FP32/1/dldt/dna_r9.4.1@v3.xml",
"deit-b/onnx/onnx/FP32/1/dldt/deit-b.xml",
"ebgan/tf/tf_frozen/FP32/1/dldt/ebgan.xml",
"text-spotting-0005-recognizer-encoder/onnx/onnx/FP32/1/dldt/text-spotting-0005-recognizer-encoder.xml",
"instance-segmentation-security-0091/onnx/onnx/FP32/1/dldt/instance-segmentation-security-0091.xml",
"distilbert-base-uncased-mrpc/onnx/onnx/FP32/1/dldt/distilbert-base-uncased-mrpc.xml",
"densenet-161/caffe/caffe/FP32/1/dldt/densenet-161.xml",
"googlenet-v2/tf/tf_frozen/FP32/1/dldt/googlenet-v2.xml",
"ssd-300/onnx/onnx/FP32/1/dldt/ssd-300.xml",
"text-spotting-0002-recognizer-decoder/onnx/onnx/FP32/1/dldt/text-spotting-0002-recognizer-decoder.xml",
"dna_r9.4.1_2d/onnx/onnx/FP32/1/dldt/dna_r9.4.1_2d.xml",
"ssd300/caffe/caffe/FP32/1/dldt/ssd300.xml",
"places205-alexnet/caffe/caffe/FP32/1/dldt/places205-alexnet.xml",
"text-spotting-0001-recognizer-decoder/onnx/onnx/FP32/1/dldt/text-spotting-0001-recognizer-decoder.xml",
"dssd/caffe/caffe/FP32/1/dldt/dssd.xml",
"open-closed-eye-0001/onnx/onnx/FP32/1/dldt/open-closed-eye-0001.xml",
"shufflenet-v2-x0.5/onnx/onnx/FP32/1/dldt/shufflenet-v2-x0.5.xml",
"resnet-101/tf/tf_frozen/FP32/1/dldt/resnet-101.xml",
"ncf/tf/tf_frozen/FP32/1/dldt/ncf.xml",
"spnasnet-100/onnx/onnx/FP32/1/dldt/spnasnet-100.xml",
"wide-resnet-101-v2/onnx/onnx/FP32/1/dldt/wide-resnet-101-v2.xml",
"ssd-resnet34-1200/onnx/onnx/FP32/1/dldt/ssd-resnet34-1200.xml",
"dcgan/onnx/onnx/FP32/1/dldt/dcgan.xml",
"text-spotting-0001-recognizer-encoder/onnx/onnx/FP32/1/dldt/text-spotting-0001-recognizer-encoder.xml",
"craft/onnx/onnx/FP32/1/dldt/craft.xml",
"pose-ae-refinement/tf/tf_frozen/FP32/1/dldt/pose-ae-refinement.xml",
"icv-reid-distance/caffe/caffe/FP32/1/dldt/icv-reid-distance.xml",
"yolof/onnx/onnx/FP32/1/dldt/yolof.xml",
"gcn/onnx/onnx/FP32/1/dldt/gcn.xml",
"googlenet-v4/caffe/caffe/FP32/1/dldt/googlenet-v4.xml",
"srgan/tf/tf_frozen/FP32/1/dldt/srgan.xml",
"inceptionv2_ssd/tf/tf_frozen/FP32/1/dldt/inceptionv2_ssd.xml",
"tinybert_6layer_768dim_cola/onnx/onnx/FP32/1/dldt/tinybert_6layer_768dim_cola.xml",
"i3d-flow/tf/tf_frozen/FP32/1/dldt/i3d-flow.xml",
"resnet-101/caffe/caffe/FP32/1/dldt/resnet-101.xml",
"handwritten-english-recognition-0001/onnx/onnx/FP32/1/dldt/handwritten-english-recognition-0001.xml",
"efficientdet-d2-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d2-coco.xml",
"efficientnet-b7_auto_aug/tf/tf_meta/FP32/1/dldt/efficientnet-b7_auto_aug.xml",
"cascade_rcnn_resnet101_fpn_1x_coco/onnx/onnx/FP32/1/dldt/cascade_rcnn_resnet101_fpn_1x_coco.xml",
"horizontal-text-detection-0001/onnx/onnx/FP32/1/dldt/horizontal-text-detection-0001.xml",
"person-detection-0203/onnx/onnx/FP32/1/dldt/person-detection-0203.xml",
"vnet/tf/tf_frozen/FP32/1/dldt/vnet.xml",
"faster_rcnn_inception_v2_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_inception_v2_coco.xml",
"mobilenet-v2-1.0-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v2-1.0-224.xml",
"time-series-forecasting-electricity-0001/onnx/onnx/FP32/1/dldt/time-series-forecasting-electricity-0001.xml",
"chexnet/onnx/onnx/FP32/1/dldt/chexnet.xml",
"formula-recognition-polynomials-handwritten-0001-encoder/onnx/onnx/FP32/1/dldt/formula-recognition-polynomials-handwritten-0001-encoder.xml",
"refinenet/onnx/onnx/FP32/1/dldt/refinenet.xml",
"detr_resnet50/onnx/onnx/FP32/1/dldt/detr_resnet50.xml",
"faster_rcnn_inception_resnet_v2_atrous_oid_v4/tf/tf_frozen/FP32/1/dldt/faster_rcnn_inception_resnet_v2_atrous_oid_v4.xml",
"efficientnet-b1/onnx/onnx/FP32/1/dldt/efficientnet-b1.xml",
"u-net/caffe/caffe/FP32/1/dldt/u-net.xml",
"inception-resnet-v2/caffe/caffe/FP32/1/dldt/inception-resnet-v2.xml",
"text-recognition-0015-decoder/onnx/onnx/FP32/1/dldt/text-recognition-0015-decoder.xml",
"wgan/tf/tf_frozen/FP32/1/dldt/wgan.xml",
"vitstr-small-patch16-224/onnx/onnx/FP32/1/dldt/vitstr-small-patch16-224.xml",
"text-to-speech-en-0001-regression/onnx/onnx/FP32/1/dldt/text-to-speech-en-0001-regression.xml",
"mobilenet-v2/caffe/caffe/FP32/1/dldt/mobilenet-v2.xml",
"facenet/onnx/onnx/FP32/1/dldt/facenet.xml",
"shufflenet-v2-x0.25/caffe/caffe/FP32/1/dldt/shufflenet-v2-x0.25.xml",
"efficientnet-v2-b0/onnx/onnx/FP32/1/dldt/efficientnet-v2-b0.xml",
"text-spotting-0004-recognizer-decoder/onnx/onnx/FP32/1/dldt/text-spotting-0004-recognizer-decoder.xml",
"yolo_v3/tf/tf_frozen/FP32/1/dldt/yolo_v3.xml",
"efficientdet-d4-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d4-coco.xml",
"alexnet/caffe/caffe/FP32/1/dldt/alexnet.xml",
"ava-person-vehicle-detection-stage2/tf/tf_frozen/FP32/1/dldt/ava-person-vehicle-detection-stage2.xml",
"gaze-estimation-adas-0002/onnx/onnx/FP32/1/dldt/gaze-estimation-adas-0002.xml",
"openpose-pose/caffe/caffe/FP32/1/dldt/openpose-pose.xml",
"face-reidentification-retail-0095/onnx/onnx/FP32/1/dldt/face-reidentification-retail-0095.xml",
"shufflenet-v2-x0.5/caffe/caffe/FP32/1/dldt/shufflenet-v2-x0.5.xml",
"resnext101-32x16d-swsl/onnx/onnx/FP32/1/dldt/resnext101-32x16d-swsl.xml",
"u-net/onnx/onnx/FP32/1/dldt/u-net.xml",
"instance-segmentation-security-0228/onnx/onnx/FP32/1/dldt/instance-segmentation-security-0228.xml",
"text-recognition-0012/tf/tf_frozen/FP32/1/dldt/text-recognition-0012.xml",
"mobilenet-v2/onnx/onnx/FP32/1/dldt/mobilenet-v2.xml",
"deberta-base/onnx/onnx/FP32/1/dldt/deberta-base.xml",
"ssd_mobilenet_v1_fpn_coco/tf/tf_frozen/FP32/1/dldt/ssd_mobilenet_v1_fpn_coco.xml",
"yolo-v3/caffe/caffe/FP32/1/dldt/yolo-v3.xml",
"text-recognition-0014/onnx/onnx/FP32/1/dldt/text-recognition-0014.xml",
"netvlad/tf/tf_frozen/FP32/1/dldt/netvlad.xml",
"xlnet/onnx/onnx/FP32/1/dldt/xlnet.xml",
"inception-resnet-v2/tf/tf_frozen/FP32/1/dldt/inception-resnet-v2.xml",
"mask_rcnn_inception_resnet_v2_atrous_coco/tf/tf_frozen/FP32/1/dldt/mask_rcnn_inception_resnet_v2_atrous_coco.xml",
"text-spotting-0004-detector/onnx/onnx/FP32/1/dldt/text-spotting-0004-detector.xml",
"Sharpen-LensBlur/tf/tf_frozen/FP32/1/dldt/Sharpen-LensBlur.xml",
"DeeperCut/caffe/caffe/FP32/1/dldt/DeeperCut.xml",
"instance-segmentation-security-0002/onnx/onnx/FP32/1/dldt/instance-segmentation-security-0002.xml",
"yolor_p6/onnx/onnx/FP32/1/dldt/yolor_p6.xml",
"resmlp-12-distilled-224/onnx/onnx/FP32/1/dldt/resmlp-12-distilled-224.xml",
"retinanet/tf2/tf2_saved_model/FP32/1/dldt/retinanet.xml",
"ssd512/caffe/caffe/FP32/1/dldt/ssd512.xml",
"arttrack-mpii-single/tf/tf_frozen/FP32/1/dldt/arttrack-mpii-single.xml",
"icv-tsr-eu/caffe/caffe/FP32/1/dldt/icv-tsr-eu.xml",
"faster_rcnn_resnet50_coco/tf2/tf2_saved_model/FP32/1/dldt/faster_rcnn_resnet50_coco.xml",
"efficientnet-b2/onnx/onnx/FP32/1/dldt/efficientnet-b2.xml",
"googlenet-v1/tf/tf_frozen/FP32/1/dldt/googlenet-v1.xml",
"faster_rcnn_resnet101_kitti/tf/tf_frozen/FP32/1/dldt/faster_rcnn_resnet101_kitti.xml",
"faster_rcnn_nas_lowproposals_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_nas_lowproposals_coco.xml",
"se-resnext-101/caffe/caffe/FP32/1/dldt/se-resnext-101.xml",
"retinanet_resnet34/onnx/onnx/FP32/1/dldt/retinanet_resnet34.xml",
"refinedet-resnet-101/caffe/caffe/FP32/1/dldt/refinedet-resnet-101.xml",
"dpn-68/onnx/onnx/FP32/1/dldt/dpn-68.xml",
"drn-d-38/onnx/onnx/FP32/1/dldt/drn-d-38.xml",
"roberta-base/onnx/onnx/FP32/1/dldt/roberta-base.xml",
"pubchem10m-smiles-bpe-396-250/onnx/onnx/FP32/1/dldt/pubchem10m-smiles-bpe-396-250.xml",
"faster-rcnn-zf/caffe/caffe/FP32/1/dldt/faster-rcnn-zf.xml",
"text-to-speech-en-0001-generation/onnx/onnx/FP32/1/dldt/text-to-speech-en-0001-generation.xml",
"sbert-base-mean-tokens/onnx/onnx/FP32/1/dldt/sbert-base-mean-tokens.xml",
"tresnet-m/onnx/onnx/FP32/1/dldt/tresnet-m.xml",
"emotions-recognition-retail-0003/caffe/caffe/FP32/1/dldt/emotions-recognition-retail-0003.xml",
"faster_rcnn_resnet50_lowproposals_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_resnet50_lowproposals_coco.xml",
"dla-102x/onnx/onnx/FP32/1/dldt/dla-102x.xml",
"image-retrieval-0001/tf/tf_frozen/FP32/1/dldt/image-retrieval-0001.xml",
"faster-rcnn-vgg16/caffe/caffe/FP32/1/dldt/faster-rcnn-vgg16.xml",
"mobilenet-v3-large-1.0-224/tf2/tf2_saved_model/FP32/1/dldt/mobilenet-v3-large-1.0-224.xml",
"bert_emd_4layer/onnx/onnx/FP32/1/dldt/bert_emd_4layer.xml",
"yolact-darknet53-fpn-pytorch/onnx/onnx/FP32/1/dldt/yolact-darknet53-fpn-pytorch.xml",
"text-to-speech-en-multi-0001-generation/onnx/onnx/FP32/1/dldt/text-to-speech-en-multi-0001-generation.xml",
"anti-spoof-mn3/onnx/onnx/FP32/1/dldt/anti-spoof-mn3.xml",
"mobilenet-v3-small-1.0-224/onnx/onnx/FP32/1/dldt/mobilenet-v3-small-1.0-224.xml",
"mobilenet-v2-1.0-224/tf2/tf2_saved_model/FP32/1/dldt/mobilenet-v2-1.0-224.xml",
"centernet-hg104/tf2/tf2_saved_model/FP32/1/dldt/centernet-hg104.xml",
"person-detection-0205/onnx/onnx/FP32/1/dldt/person-detection-0205.xml",
"mobilenet-v3-small-1.0-224/tf2/tf2_saved_model/FP32/1/dldt/mobilenet-v3-small-1.0-224.xml",
"efficientnet-b0/tf/tf_meta/FP32/1/dldt/efficientnet-b0.xml",
"convnext-tiny/onnx/onnx/FP32/1/dldt/convnext-tiny.xml",
"mobilenet-v3-large-1.0-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v3-large-1.0-224.xml",
"yolo_v4/tf2/tf2_saved_model/FP32/1/dldt/yolo_v4.xml",
"mnasnet-1.0/onnx/onnx/FP32/1/dldt/mnasnet-1.0.xml",
"lraspp-mobilenet-v3-large/onnx/onnx/FP32/1/dldt/lraspp-mobilenet-v3-large.xml",
"pelee-coco/caffe/caffe/FP32/1/dldt/pelee-coco.xml",
"pspnet-pytorch/onnx/onnx/FP32/1/dldt/pspnet-pytorch.xml",
"landmarks-regression-retail-0009/onnx/onnx/FP32/1/dldt/landmarks-regression-retail-0009.xml",
"distilbert-base-uncased-cola/onnx/onnx/FP32/1/dldt/distilbert-base-uncased-cola.xml",
"ssd-mobilenet-v1-0.75-depth-coco/tf/tf_frozen/FP32/1/dldt/ssd-mobilenet-v1-0.75-depth-coco.xml",
"faster_rcnn_resnet50_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_resnet50_coco.xml",
"ctpn/tf/tf_frozen/FP32/1/dldt/ctpn.xml",
"gpt2-wikitext2-int8-onnx-0001/onnx/onnx/FP32/1/dldt/gpt2-wikitext2-int8-onnx-0001.xml",
"resnest-101-pytorch/onnx/onnx/FP32/1/dldt/resnest-101-pytorch.xml",
"mtcnn-r/caffe/caffe/FP32/1/dldt/mtcnn-r.xml",
"bert-base-uncased-mrpc/onnx/onnx/FP32/1/dldt/bert-base-uncased-mrpc.xml",
"planar_reconstruction/onnx/onnx/FP32/1/dldt/planar_reconstruction.xml",
"semantic-segmentation-adas-0001/caffe/caffe/FP32/1/dldt/semantic-segmentation-adas-0001.xml",
"deblurgan-v2/onnx/onnx/FP32/1/dldt/deblurgan-v2.xml",
"squeezenet1.0/tf/tf_frozen/FP32/1/dldt/squeezenet1.0.xml",
"brain-tumor-segmentation-0002/onnx/onnx/FP32/1/dldt/brain-tumor-segmentation-0002.xml",
"age-gender-recognition-retail-0013/caffe/caffe/FP32/1/dldt/age-gender-recognition-retail-0013.xml",
"faster_rcnn_resnet101_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_resnet101_coco.xml",
"nfnet-f6/onnx/onnx/FP32/1/dldt/nfnet-f6.xml",
"ssd-mobilenet-v1-ppn-coco/tf/tf_frozen/FP32/1/dldt/ssd-mobilenet-v1-ppn-coco.xml",
"faster-rcnn-resnet/caffe/caffe/FP32/1/dldt/faster-rcnn-resnet.xml",
"mozilla-deepspeech-0.8.2/tf/tf_frozen/FP32/1/dldt/mozilla-deepspeech-0.8.2.xml",
"landmarks-regression-retail-0001/caffe/caffe/FP32/1/dldt/landmarks-regression-retail-0001.xml",
"resnest-200-pytorch/onnx/onnx/FP32/1/dldt/resnest-200-pytorch.xml",
"efficientdet-d7-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d7-coco.xml",
"efficientdet-d6-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d6-coco.xml",
"head-pose-estimation-adas-0001/caffe/caffe/FP32/1/dldt/head-pose-estimation-adas-0001.xml",
"efficientnet-b0_auto_aug/tf/tf_meta/FP32/1/dldt/efficientnet-b0_auto_aug.xml",
"yolact-resnet50-fpn-pytorch/onnx/onnx/FP32/1/dldt/yolact-resnet50-fpn-pytorch.xml",
"faster_rcnn_nas_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_nas_coco.xml",
"vehicle-reid-0001/onnx/onnx/FP32/1/dldt/vehicle-reid-0001.xml",
"se-resnext-101/tf/tf_frozen/FP32/1/dldt/se-resnext-101.xml",
"resnet-50-tf/tf2/tf2_saved_model/FP32/1/dldt/resnet-50-tf.xml",
"bert-base-uncased/tf/tf_frozen/FP32/1/dldt/bert-base-uncased.xml",
"vfnet-resnet50-fpn-pytorch/onnx/onnx/FP32/1/dldt/vfnet-resnet50-fpn-pytorch.xml",
"pose-ae-multiperson-pytorch/onnx/onnx/FP32/1/dldt/pose-ae-multiperson-pytorch.xml",
"fbnetc-100/onnx/onnx/FP32/1/dldt/fbnetc-100.xml",
"mobilenet-v1-0.25-128/tf/tf_frozen/FP32/1/dldt/mobilenet-v1-0.25-128.xml",
"faster_rcnn_resnet50_fpn_coco/onnx/onnx/FP32/1/dldt/faster_rcnn_resnet50_fpn_coco.xml",
"squeezenet1.1-pytorch1.2.0/onnx/onnx/FP32/1/dldt/squeezenet1.1-pytorch1.2.0.xml",
"efficientnet-b7/onnx/onnx/FP32/1/dldt/efficientnet-b7.xml",
"efficientnet-b6/onnx/onnx/FP32/1/dldt/efficientnet-b6.xml",
"places205-googlenet/caffe/caffe/FP32/1/dldt/places205-googlenet.xml",
"swin-tiny-patch4-window7-224/onnx/onnx/FP32/1/dldt/swin-tiny-patch4-window7-224.xml",
"vehicle-attributes-barrier-0103/tf/tf_frozen/FP32/1/dldt/vehicle-attributes-barrier-0103.xml",
"squeezenet1.1/onnx/onnx/FP32/1/dldt/squeezenet1.1.xml",
"fsrcnn-x4/tf/tf_frozen/FP32/1/dldt/fsrcnn-x4.xml",
"dilation/caffe/caffe/FP32/1/dldt/dilation.xml",
"Sharpen-MotionBlur/tf/tf_frozen/FP32/1/dldt/Sharpen-MotionBlur.xml",
"resnet-152/caffe/caffe/FP32/1/dldt/resnet-152.xml",
"Deeper_DSSD/caffe/caffe/FP32/1/dldt/Deeper_DSSD.xml",
"vehicle-attributes-recognition-barrier-0039/caffe/caffe/FP32/1/dldt/vehicle-attributes-recognition-barrier-0039.xml",
"mobilenet-v3-large-1.0-224/onnx/onnx/FP32/1/dldt/mobilenet-v3-large-1.0-224.xml",
"dna_r9.4.1/onnx/onnx/FP32/1/dldt/dna_r9.4.1.xml",
"efficientnet-v2-m/onnx/onnx/FP32/1/dldt/efficientnet-v2-m.xml",
"tiny_yolo_v2/onnx/onnx/FP32/1/dldt/tiny_yolo_v2.xml",
"se-inception/caffe/caffe/FP32/1/dldt/se-inception.xml",
"person-detection-0204/onnx/onnx/FP32/1/dldt/person-detection-0204.xml",
"ssd_resnet50_v1_fpn_coco/tf/tf_frozen/FP32/1/dldt/ssd_resnet50_v1_fpn_coco.xml",
"deeplabv3_mnv2_cityscapes/tf/tf_frozen/FP32/1/dldt/deeplabv3_mnv2_cityscapes.xml",
"tacotron_2_postnet/onnx/onnx/FP32/1/dldt/tacotron_2_postnet.xml",
"efficientdet-d3-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d3-coco.xml",
"yolo_v3/tf2/tf2_saved_model/FP32/1/dldt/yolo_v3.xml",
"person-reidentification-retail-0277/onnx/onnx/FP32/1/dldt/person-reidentification-retail-0277.xml",
"resnet-50-tf/tf/tf_frozen/FP32/1/dldt/resnet-50-tf.xml",
"fcn-vgg16-32s/caffe/caffe/FP32/1/dldt/fcn-vgg16-32s.xml",
"nanodet-plus-m-1.5x-416/onnx/onnx/FP32/1/dldt/nanodet-plus-m-1.5x-416.xml",
"fishnet-150/onnx/onnx/FP32/1/dldt/fishnet-150.xml",
"colorization-v2/onnx/onnx/FP32/1/dldt/colorization-v2.xml",
"ssd512/onnx/onnx/FP32/1/dldt/ssd512.xml",
"mobilenet-v3-small-1.0-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v3-small-1.0-224.xml",
"rexnet-v1-1.5x/onnx/onnx/FP32/1/dldt/rexnet-v1-1.5x.xml",
"NiftyNet/tf/tf_meta/FP32/1/dldt/NiftyNet.xml",
"rcan/onnx/onnx/FP32/1/dldt/rcan.xml",
"rexnet-v1-2.0x/onnx/onnx/FP32/1/dldt/rexnet-v1-2.0x.xml",
"ssd-resnet34-300x300/tf/tf_frozen/FP32/1/dldt/ssd-resnet34-300x300.xml",
"rfcn-resnet101-coco/tf/tf_frozen/FP32/1/dldt/rfcn-resnet101-coco.xml",
"text-detection-0003/tf/tf_frozen/FP32/1/dldt/text-detection-0003.xml",
"noise-suppression-poconetlike-0001/onnx/onnx/FP32/1/dldt/noise-suppression-poconetlike-0001.xml",
"icv-mobilenet-ssd-fully-depthwise-coco/caffe/caffe/FP32/1/dldt/icv-mobilenet-ssd-fully-depthwise-coco.xml",
"mnasnet-0.5/onnx/onnx/FP32/1/dldt/mnasnet-0.5.xml",
"efficientnet-b5/tf/tf_meta/FP32/1/dldt/efficientnet-b5.xml",
"faster_rcnn_inception_resnet_v2_atrous_coco/tf/tf_frozen/FP32/1/dldt/faster_rcnn_inception_resnet_v2_atrous_coco.xml",
"iseebetter/onnx/onnx/FP32/1/dldt/iseebetter.xml",
"icv-tlr/caffe/caffe/FP32/1/dldt/icv-tlr.xml",
"retinanet/tf/tf_frozen/FP32/1/dldt/retinanet.xml",
"colorization-siggraph/onnx/onnx/FP32/1/dldt/colorization-siggraph.xml",
"resnest-50/tf2/tf2_saved_model/FP32/1/dldt/resnest-50.xml",
"efficientdet-d5-coco/tf/tf_frozen/FP32/1/dldt/efficientdet-d5-coco.xml",
"efficientnet-b4/onnx/onnx/FP32/1/dldt/efficientnet-b4.xml",
"resnext-101-32x8d/onnx/onnx/FP32/1/dldt/resnext-101-32x8d.xml",
"icv-squeezenet-pd-reid/caffe/caffe/FP32/1/dldt/icv-squeezenet-pd-reid.xml",
"wav2vec2-base/onnx/onnx/FP32/1/dldt/wav2vec2-base.xml",
"nanodet-m-1.5x-416/onnx/onnx/FP32/1/dldt/nanodet-m-1.5x-416.xml",
"text-spotting-0003-detector/onnx/onnx/FP32/1/dldt/text-spotting-0003-detector.xml",
"resnest-101/tf2/tf2_saved_model/FP32/1/dldt/resnest-101.xml",
"fishnet-99/onnx/onnx/FP32/1/dldt/fishnet-99.xml",
"googlenet-v1/caffe/caffe/FP32/1/dldt/googlenet-v1.xml",
"faster_rcnn_resnet101_snapshot_serengeti/tf/tf_frozen/FP32/1/dldt/faster_rcnn_resnet101_snapshot_serengeti.xml",
"efficientnet-b5/onnx/onnx/FP32/1/dldt/efficientnet-b5.xml",
"quartznet-15x5-en/onnx/onnx/FP32/1/dldt/quartznet-15x5-en.xml",
"openpose-face/caffe/caffe/FP32/1/dldt/openpose-face.xml",
"arttrack-coco-multi/tf/tf_frozen/FP32/1/dldt/arttrack-coco-multi.xml",
"mobilenet-v1-0.50-160/tf/tf_frozen/FP32/1/dldt/mobilenet-v1-0.50-160.xml",
"efficientnet-v2-s/onnx/onnx/FP32/1/dldt/efficientnet-v2-s.xml",
"text-detection-0004/tf/tf_frozen/FP32/1/dldt/text-detection-0004.xml",
"person-vehicle-bike-detection-crossroad-yolov3-1024/tf/tf_frozen/FP32/1/dldt/person-vehicle-bike-detection-crossroad-yolov3-1024.xml",
"action-recognition-0001-encoder/onnx/onnx/FP32/1/dldt/action-recognition-0001-encoder.xml",
"quartznet-encoder/onnx/onnx/FP32/1/dldt/quartznet-encoder.xml",
"person-detection-0101/onnx/onnx/FP32/1/dldt/person-detection-0101.xml",
"mobilenetv2-int8-onnx-0001/onnx/onnx/FP32/1/dldt/mobilenetv2-int8-onnx-0001.xml",
"icv-headpose-sn1.1/caffe/caffe/FP32/1/dldt/icv-headpose-sn1.1.xml",
"efficientnet-b3/onnx/onnx/FP32/1/dldt/efficientnet-b3.xml",
"person-vehicle-bike-detection-2004/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-2004.xml",
"mobilenet-v1-0.50-224/tf/tf_frozen/FP32/1/dldt/mobilenet-v1-0.50-224.xml",
"icvface-0035/caffe/caffe/FP32/1/dldt/icvface-0035.xml",
"dilation/tf/tf_frozen/FP32/1/dldt/dilation.xml",
"person-detection-0102/onnx/onnx/FP32/1/dldt/person-detection-0102.xml",
"shufflenet-v2-x0.33/caffe/caffe/FP32/1/dldt/shufflenet-v2-x0.33.xml",
"faster-rcnn-inception-resnet-v2-atrous-lowproposals-oid/tf/tf_frozen/FP32/1/dldt/faster-rcnn-inception-resnet-v2-atrous-lowproposals-oid.xml",
"fastseg-large/onnx/onnx/FP32/1/dldt/fastseg-large.xml",
"tiramisu-fc-densenet-103/tf2/tf2_saved_model/FP32/1/dldt/tiramisu-fc-densenet-103.xml",
"person-vehicle-bike-detection-2001/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-2001.xml",
"vehicle-detection-0202/onnx/onnx/FP32/1/dldt/vehicle-detection-0202.xml",
"person-detection-0200/onnx/onnx/FP32/1/dldt/person-detection-0200.xml",
"openpose-hand/caffe/caffe/FP32/1/dldt/openpose-hand.xml",
"fastseg-small/onnx/onnx/FP32/1/dldt/fastseg-small.xml",
"person-detection-0201/onnx/onnx/FP32/1/dldt/person-detection-0201.xml",
"person-detection-0202/onnx/onnx/FP32/1/dldt/person-detection-0202.xml",
"unet3d_mlperf/tf/tf_frozen/FP32/1/dldt/unet3d_mlperf.xml",
"wavernn-rnn/onnx/onnx/FP32/1/dldt/wavernn-rnn.xml",
"person-detection-0100/onnx/onnx/FP32/1/dldt/person-detection-0100.xml",
"pedestrian-detection-adas-0002/caffe/caffe/FP32/1/dldt/pedestrian-detection-adas-0002.xml",
"person-vehicle-bike-detection-2000/onnx/onnx/FP32/1/dldt/person-vehicle-bike-detection-2000.xml",
"vehicle-detection-0201/onnx/onnx/FP32/1/dldt/vehicle-detection-0201.xml",
]
os.chdir(binA)
result = []
log = open(f'{cwd}/{output_base}_detail.log', 'w')
out_f = open(f'{cwd}/{output_base}.log', 'w')
for idx, f in enumerate(files):
print(f'{idx:3d} {f}... ', end=''),
for i in range(3):
outputA = subprocess.run(['./benchmark_app', '-m', base + f] + args, capture_output=True)
out = outputA.stdout.decode()
log.write(out)
if outputA.returncode == 0:
fps = out.split('Throughput')[-1]
fps = fps.split()[1]
line = f'{fps} {f}'
result.append(line)
print(f'{fps}', end=' '),
else:
line = f'{f}'
result.append(line)
out_f.write(line + '\n')
out_f.flush()
print(' ')
# with open(f'{cwd}/{output_base}.log', 'w') as f:
# f.write('\n'.join(result))