forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathie_docs.xml
984 lines (982 loc) · 101 KB
/
ie_docs.xml
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
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<doxygenlayout version="1.0">
<!-- Generated by doxygen 1.8.12 -->
<!-- Navigation index tabs for HTML output -->
<navindex>
<tab type="mainpage" title="OpenVINO Home" url="@ref index"/>
<!-- Overview/ Getting Started category -->
<tab type="usergroup" title="GETTING STARTED" url="index.html">
<tab type="user" title="OpenVINO Toolkit Overview" url="index.html"/>
<tab type="usergroup" title="Install Intel® Distribution of OpenVINO™ toolkit for Linux* OS" url="@ref openvino_docs_install_guides_installing_openvino_linux">
<tab type="user" title="Configuration Guide for the Intel® Distribution of OpenVINO™ toolkit and the Intel® Vision Accelerator Design with Intel® Movidius™ VPUs on Linux*" url="@ref openvino_docs_install_guides_installing_openvino_linux_ivad_vpu"/>
</tab>
<tab type="user" title="Get Started with OpenVINO™ toolkit on Linux*" url="@ref openvino_docs_get_started_get_started_linux"/>
<tab type="usergroup" title="Install Intel® Distribution of OpenVINO™ toolkit for Linux with FPGA Support" url="@ref openvino_docs_install_guides_installing_openvino_linux_fpga">
<tab type="user" title="Configuration Guide for OpenVINO and the Intel® Vision Accelerator Design with an Intel® Arria 10 FPGA SG2 (IEIs Mustang-F100-A10) on Linux" url="@ref openvino_docs_install_guides_VisionAcceleratorFPGA_Configure"/>
<tab type="user" title="Configuration Guide for Intel® Distribution of OpenVINO™ toolkit and the Intel® Programmable Acceleration Card with Intel® Arria® 10 FPGA GX on CentOS or Ubuntu*" url="@ref openvino_docs_install_guides_PAC_Configure"/>
</tab>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Windows* 10" url="@ref openvino_docs_install_guides_installing_openvino_windows"/>
<tab type="usergroup" title="Install Intel® Distribution of OpenVINO™ toolkit for Windows* with FPGA support" url="@ref openvino_docs_install_guides_installing_openvino_windows_fpga">
<tab type="user" title="Configuration Guide for OpenVINO and the Intel® Vision Accelerator Design with an Intel® Arria 10 FPGA SG2 (IEIs Mustang-F100-A10) on Windows*" url="@ref openvino_docs_install_guides_VisionAcceleratorFPGA_Configure_Windows"/>
</tab>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for macOS*" url="@ref openvino_docs_install_guides_installing_openvino_macos"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Raspbian* OS" url="@ref openvino_docs_install_guides_installing_openvino_raspbian"/>
<tab type="user" title="Intel® Movidius™ VPUs Setup Guide for Use with Intel® Distribution of OpenVINO™ toolkit" url="@ref openvino_docs_install_guides_movidius_setup_guide"/>
<tab type="user" title="Intel® Movidius™ VPUs Programming Guide for Use with Intel® Distribution of OpenVINO™ toolkit" url="@ref openvino_docs_install_guides_movidius_programming_guide"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Linux* from a Docker* Image" url="@ref openvino_docs_install_guides_installing_openvino_docker_linux"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Windows* from a Docker* Image" url="@ref openvino_docs_install_guides_installing_openvino_docker_windows"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Linux* Using APT Repository" url="@ref openvino_docs_install_guides_installing_openvino_apt"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit for Linux* Using YUM Repository" url="@ref openvino_docs_install_guides_installing_openvino_yum"/>
<tab type="user" title="Install Intel® Distribution of OpenVINO™ toolkit from Anaconda* Cloud" url="@ref openvino_docs_install_guides_installing_openvino_conda"/>
<tab type="user" title="Create a Yocto* Image with OpenVINO™ toolkit" url="@ref openvino_docs_install_guides_installing_openvino_yocto"/>
</tab>
<!-- How To category -->
<tab type="usergroup" title="HOW TOs" url="@ref openvino_docs_how_tos_how_to_links">
<tab type="user" title=""Hot Topic" How-To Links" url="@ref openvino_docs_how_tos_how_to_links"/>
<tab type="user" title="Custom Layers Guide" url="@ref openvino_docs_HOWTO_Custom_Layers_Guide"/>
</tab>
<tab type="usergroup" title="GUIDES" url="@ref openvino_docs_IE_DG_Introduction">
<!-- Intro -->
<tab type="user" title="Overview" url="@ref openvino_docs_IE_DG_Introduction"/>
<!-- DLDT -->
<tab type="usergroup" title="GUIDES" url="@ref openvino_docs_IE_DG_Introduction">
<!-- Model Optimizer -->
<tab type="usergroup" title="Model Optimizer Developer Guide" url="@ref openvino_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide">
<tab type="usergroup" title="Preparing and Optimizing Your Trained Model" url="@ref openvino_docs_MO_DG_prepare_model_Prepare_Trained_Model">
<tab type="user" title="Configuring the Model Optimizer" url="@ref openvino_docs_MO_DG_prepare_model_Config_Model_Optimizer"/>
<tab type="usergroup" title="Converting a Model to Intermediate Representation (IR)" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Converting_Model">
<tab type="user" title="Converting a Model Using General Conversion Parameters" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Converting_Model_General"/>
<tab type="user" title="Converting a Caffe* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_Caffe"/>
<tab type="usergroup" title="Converting a TensorFlow* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_TensorFlow">
<tab type="user" title="Converting YOLO* Models from DarkNet to the Intermediate Representation" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_YOLO_From_Tensorflow"/>
<tab type="user" title="Converting FaceNet Models from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_FaceNet_From_Tensorflow"/>
<tab type="user" title="Converting Neural Collaborative Filtering Model from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_NCF_From_Tensorflow"/>
<tab type="user" title="Converting DeepSpeech Model from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_DeepSpeech_From_Tensorflow"/>
<tab type="user" title="Converting Language Model on One Billion Word Benchmark from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_lm_1b_From_Tensorflow"/>
<tab type="user" title="Converting TensorFlow* Object Detection API Models" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_Object_Detection_API_Models"/>
<tab type="user" title="Converting TensorFlow*-Slim Image Classification Model Library Models" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_Slim_Library_Models"/>
<tab type="user" title="Converting CRNN Model from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_CRNN_From_Tensorflow"/>
<tab type="user" title="Converting GNMT from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_GNMT_From_Tensorflow"/>
<tab type="user" title="Converting BERT from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_BERT_From_Tensorflow"/>
<tab type="user" title="Convert TensorFlow* XLNet Model to the Intermediate Representation" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_XLNet_From_Tensorflow"/>
<tab type="user" title="Converting TensorFlow* Wide and Deep Models from TensorFlow" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_tf_specific_Convert_WideAndDeep_Family_Models"/>
</tab>
<tab type="usergroup" title="Converting a MXNet* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_MxNet">
<tab type="user" title="Converting a Style Transfer Model from MXNet" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_mxnet_specific_Convert_Style_Transfer_From_MXNet"/>
<tab type="user" title="Converting GluonCV* Models" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_mxnet_specific_Convert_GluonCV_Models"/>
</tab>
<tab type="usergroup" title="Converting Your Kaldi* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_Kaldi">
<tab type="user" title="Convert Kaldi* ASpIRE Chain Time Delay Neural Network (TDNN) Model to the Intermediate Representation" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_kaldi_specific_Aspire_Tdnn_Model"/>
</tab>
<tab type="usergroup" title="Converting Your ONNX* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_ONNX">
<tab type="user" title="Convert ONNX* Mask R-CNN Model to the Intermediate Representation" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_onnx_specific_Convert_Mask_RCNN"/>
<tab type="user" title="Converting DLRM ONNX* Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_onnx_specific_Convert_DLRM"/>
</tab>
<tab type="user" title="Model Optimizations Techniques" url="@ref openvino_docs_MO_DG_prepare_model_Model_Optimization_Techniques"/>
<tab type="user" title="Cutting off Parts of a Model" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Cutting_Model"/>
<tab type="usergroup" title="Sub-graph Replacement in Model Optimizer" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_Subgraph_Replacement_Model_Optimizer">
<tab type="user" title="(Deprecated) Case-Study: Converting SSD models created with the TensorFlow* Object Detection API" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_TensorFlow_SSD_ObjectDetection_API"/>
<tab type="user" title="(Deprecated) Case-Study: Converting Faster R-CNN models created with the TensorFlow* Object Detection API" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_TensorFlow_Faster_RCNN_ObjectDetection_API"/>
</tab>
<tab type="user" title="Supported Framework Layers" url="@ref openvino_docs_MO_DG_prepare_model_Supported_Frameworks_Layers"/>
<tab type="user" title="[Deprecated] IR Notation Reference" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_Legacy_IR_Layers_Catalog_Spec"/>
<tab type="user" title="IR suitable for INT8 inference" url="@ref openvino_docs_MO_DG_prepare_model_convert_model_IR_suitable_for_INT8_inference"/>
</tab>
<tab type="usergroup" title="Custom Layers in Model Optimizer" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_Customize_Model_Optimizer">
<tab type="user" title="Extending Model Optimizer with New Primitives" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_Extending_Model_Optimizer_with_New_Primitives"/>
<tab type="user" title="Extending MXNet Model Optimizer with New Primitives" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_Extending_MXNet_Model_Optimizer_with_New_Primitives"/>
<tab type="user" title="Legacy Mode for Caffe* Custom Layers" url="@ref openvino_docs_MO_DG_prepare_model_customize_model_optimizer_Legacy_Mode_for_Caffe_Custom_Layers"/>
<tab type="user" title="[DEPRECATED] Offloading Sub-Graph Inference" url="https://docs.openvinotoolkit.org/2020.1/_docs_MO_DG_prepare_model_customize_model_optimizer_Offloading_Sub_Graph_Inference.html"/>
</tab>
</tab>
<tab type="user" title="Model Optimizer Frequently Asked Questions" url="@ref openvino_docs_MO_DG_prepare_model_Model_Optimizer_FAQ"/>
<tab type="user" title="Known Issues" url="@ref openvino_docs_MO_DG_Known_Issues_Limitations"/>
</tab>
<!-- IR -->
<tab type="usergroup" title="Intermediate Representation and Operations Sets" url="@ref openvino_docs_MO_DG_IR_and_opsets">
<tab type="usergroup" title="Available Operations Sets" url="@ref openvino_docs_ops_opset">
<tab type="user" title="opset4 Specification" url="@ref openvino_docs_ops_opset4"/>
<tab type="user" title="opset3 Specification" url="@ref openvino_docs_ops_opset3"/>
<tab type="user" title="opset2 Specification" url="@ref openvino_docs_ops_opset2"/>
<tab type="user" title="opset1 Specification" url="@ref openvino_docs_ops_opset1"/>
</tab>
<tab type="usergroup" title="Operations Specifications" url="">
<tab type="user" title="Abs-1" url="@ref openvino_docs_ops_arithmetic_Abs_1"/>
<tab type="user" title="Acos-1" url="@ref openvino_docs_ops_arithmetic_Acos_1"/>
<tab type="user" title="Acosh-1" url="@ref openvino_docs_ops_arithmetic_Acosh_1"/>
<tab type="user" title="Acosh-3" url="@ref openvino_docs_ops_arithmetic_Acosh_3"/>
<tab type="user" title="Add-1" url="@ref openvino_docs_ops_arithmetic_Add_1"/>
<tab type="user" title="Asin-1" url="@ref openvino_docs_ops_arithmetic_Asin_1"/>
<tab type="user" title="Asinh-1" url="@ref openvino_docs_ops_arithmetic_Asinh_1"/>
<tab type="user" title="Asinh-3" url="@ref openvino_docs_ops_arithmetic_Asinh_3"/>
<tab type="user" title="Assign-3" url="@ref openvino_docs_ops_infrastructure_Assign_3"/>
<tab type="user" title="Atan-1" url="@ref openvino_docs_ops_arithmetic_Atan_1"/>
<tab type="user" title="Atanh-1" url="@ref openvino_docs_ops_arithmetic_Atanh_1"/>
<tab type="user" title="Atanh-3" url="@ref openvino_docs_ops_arithmetic_Atanh_3"/>
<tab type="user" title="AvgPool-1" url="@ref openvino_docs_ops_pooling_AvgPool_1"/>
<tab type="user" title="BatchNormInference-1" url="@ref openvino_docs_ops_normalization_BatchNormInference_1"/>
<tab type="user" title="BatchToSpace-2" url="@ref openvino_docs_ops_movement_BatchToSpace_2"/>
<tab type="user" title="BinaryConvolution-1" url="@ref openvino_docs_ops_convolution_BinaryConvolution_1"/>
<tab type="user" title="Broadcast-1" url="@ref openvino_docs_ops_movement_Broadcast_1"/>
<tab type="user" title="Broadcast-3" url="@ref openvino_docs_ops_movement_Broadcast_3"/>
<tab type="user" title="Bucketize-3" url="@ref openvino_docs_ops_condition_Bucketize_3"/>
<tab type="user" title="CTCGreedyDecoder-1" url="@ref openvino_docs_ops_sequence_CTCGreedyDecoder_1"/>
<tab type="user" title="Ceiling-1" url="@ref openvino_docs_ops_arithmetic_Ceiling_1"/>
<tab type="user" title="Clamp-1" url="@ref openvino_docs_ops_activation_Clamp_1"/>
<tab type="user" title="Concat-1" url="@ref openvino_docs_ops_movement_Concat_1"/>
<tab type="user" title="Constant-1" url="@ref openvino_docs_ops_infrastructure_Constant_1"/>
<tab type="user" title="ConvertLike-1" url="@ref openvino_docs_ops_type_ConvertLike_1"/>
<tab type="user" title="Convert-1" url="@ref openvino_docs_ops_type_Convert_1"/>
<tab type="user" title="ConvolutionBackpropData-1" url="@ref openvino_docs_ops_convolution_ConvolutionBackpropData_1"/>
<tab type="user" title="Convolution-1" url="@ref openvino_docs_ops_convolution_Convolution_1"/>
<tab type="user" title="Cos-1" url="@ref openvino_docs_ops_arithmetic_Cos_1"/>
<tab type="user" title="Cosh-1" url="@ref openvino_docs_ops_arithmetic_Cosh_1"/>
<tab type="user" title="CTCLoss-4" url="@ref openvino_docs_ops_sequence_CTCLoss_4"/>
<tab type="user" title="CumSum" url="@ref openvino_docs_ops_arithmetic_CumSum_3"/>
<tab type="user" title="DeformableConvolution-1" url="@ref openvino_docs_ops_convolution_DeformableConvolution_1"/>
<tab type="user" title="DeformablePSROIPooling-1" url="@ref openvino_docs_ops_detection_DeformablePSROIPooling_1"/>
<tab type="user" title="DepthToSpace-1" url="@ref openvino_docs_ops_movement_DepthToSpace_1"/>
<tab type="user" title="DetectionOutput-1" url="@ref openvino_docs_ops_detection_DetectionOutput_1"/>
<tab type="user" title="Divide-1" url="@ref openvino_docs_ops_arithmetic_Divide_1"/>
<tab type="user" title="Elu-1" url="@ref openvino_docs_ops_activation_Elu_1"/>
<tab type="user" title="EmbeddingBagOffsetsSum-3" url="@ref openvino_docs_ops_sparse_EmbeddingBagOffsetsSum_3"/>
<tab type="user" title="EmbeddingBagPackedSum-3" url="@ref openvino_docs_ops_sparse_EmbeddingBagPackedSum_3"/>
<tab type="user" title="EmbeddingSegmentsSum-3" url="@ref openvino_docs_ops_sparse_EmbeddingSegmentsSum_3"/>
<tab type="user" title="Equal-1" url="@ref openvino_docs_ops_comparison_Equal_1"/>
<tab type="user" title="Erf-1" url="@ref openvino_docs_ops_arithmetic_Erf_1"/>
<tab type="user" title="Exp-1" url="@ref openvino_docs_ops_activation_Exp_1"/>
<tab type="user" title="ExtractImagePatches-3" url="@ref openvino_docs_ops_movement_ExtractImagePatches_3"/>
<tab type="user" title="FakeQuantize-1" url="@ref openvino_docs_ops_quantization_FakeQuantize_1"/>
<tab type="user" title="FloorMod-1" url="@ref openvino_docs_ops_arithmetic_FloorMod_1"/>
<tab type="user" title="Floor_1" url="@ref openvino_docs_ops_arithmetic_Floor_1"/>
<tab type="user" title="GRN-1" url="@ref openvino_docs_ops_normalization_GRN_1"/>
<tab type="user" title="GRUCell-3" url="@ref openvino_docs_ops_sequence_GRUCell_3"/>
<tab type="user" title="GatherTree-1" url="@ref openvino_docs_ops_movement_GatherTree_1"/>
<tab type="user" title="Gather-1" url="@ref openvino_docs_ops_movement_Gather_1"/>
<tab type="user" title="Gelu-2" url="@ref openvino_docs_ops_activation_GELU_2"/>
<tab type="user" title="GreaterEqual-1" url="@ref openvino_docs_ops_comparison_GreaterEqual_1"/>
<tab type="user" title="Greater-1" url="@ref openvino_docs_ops_comparison_Greater_1"/>
<tab type="user" title="GroupConvolutionBackpropData-1" url="@ref openvino_docs_ops_convolution_GroupConvolutionBackpropData_1"/>
<tab type="user" title="GroupConvolution-1" url="@ref openvino_docs_ops_convolution_GroupConvolution_1"/>
<tab type="user" title="HardSigmoid-1" url="@ref openvino_docs_ops_activation_HardSigmoid_1"/>
<tab type="user" title="Interpolate-1" url="@ref openvino_docs_ops_image_Interpolate_1"/>
<tab type="user" title="Interpolate-1" url="@ref openvino_docs_ops_image_Interpolate_4"/>
<tab type="user" title="LRN-1" url="@ref openvino_docs_ops_normalization_LRN_1"/>
<tab type="user" title="LSTMCell-1" url="@ref openvino_docs_ops_sequence_LSTMCell_1"/>
<tab type="user" title="LSTMSequence-1" url="@ref openvino_docs_ops_sequence_LSTMSequence_1"/>
<tab type="user" title="LessEqual-1" url="@ref openvino_docs_ops_comparison_LessEqual_1"/>
<tab type="user" title="Less-1" url="@ref openvino_docs_ops_comparison_Less_1"/>
<tab type="user" title="Log-1" url="@ref openvino_docs_ops_arithmetic_Log_1"/>
<tab type="user" title="LogicalAnd-1" url="@ref openvino_docs_ops_logical_LogicalAnd_1"/>
<tab type="user" title="LogicalNot-1" url="@ref openvino_docs_ops_logical_LogicalNot_1"/>
<tab type="user" title="LogicalOr-1" url="@ref openvino_docs_ops_logical_LogicalOr_1"/>
<tab type="user" title="LogicalXor-1" url="@ref openvino_docs_ops_logical_LogicalXor_1"/>
<tab type="user" title="MVN-1" url="@ref openvino_docs_ops_normalization_MVN_1"/>
<tab type="user" title="MatMul-1" url="@ref openvino_docs_ops_matrix_MatMul_1"/>
<tab type="user" title="MaxPool-1" url="@ref openvino_docs_ops_pooling_MaxPool_1"/>
<tab type="user" title="Maximum-1" url="@ref openvino_docs_ops_arithmetic_Maximum_1"/>
<tab type="user" title="Minimum-1" url="@ref openvino_docs_ops_arithmetic_Minimum_1"/>
<tab type="user" title="Mish-4" url="@ref openvino_docs_ops_activation_Mish_4"/>
<tab type="user" title="Mod-1" url="@ref openvino_docs_ops_arithmetic_Mod_1"/>
<tab type="user" title="Multiply-1" url="@ref openvino_docs_ops_arithmetic_Multiply_1"/>
<tab type="user" title="Negative-1" url="@ref openvino_docs_ops_arithmetic_Negative_1"/>
<tab type="user" title="NonMaxSuppression-1" url="@ref openvino_docs_ops_sort_NonMaxSuppression_1"/>
<tab type="user" title="NonMaxSuppression-3" url="@ref openvino_docs_ops_sort_NonMaxSuppression_3"/>
<tab type="user" title="NonMaxSuppression-4" url="@ref openvino_docs_ops_sort_NonMaxSuppression_4"/>
<tab type="user" title="NonZero-3" url="@ref openvino_docs_ops_condition_NonZero_3"/>
<tab type="user" title="NormalizeL2-1" url="@ref openvino_docs_ops_normalization_NormalizeL2_1"/>
<tab type="user" title="NotEqual-1" url="@ref openvino_docs_ops_comparison_NotEqual_1"/>
<tab type="user" title="OneHot-1" url="@ref openvino_docs_ops_sequence_OneHot_1"/>
<tab type="user" title="PReLU-1" url="@ref openvino_docs_ops_activation_PReLU_1"/>
<tab type="user" title="PSROIPooling-1" url="@ref openvino_docs_ops_detection_PSROIPooling_1"/>
<tab type="user" title="Pad-1" url="@ref openvino_docs_ops_movement_Pad_1"/>
<tab type="user" title="Parameter-1" url="@ref openvino_docs_ops_infrastructure_Parameter_1"/>
<tab type="user" title="Power-1" url="@ref openvino_docs_ops_arithmetic_Power_1"/>
<tab type="user" title="PriorBoxClustered-1" url="@ref openvino_docs_ops_detection_PriorBoxClustered_1"/>
<tab type="user" title="PriorBox-1" url="@ref openvino_docs_ops_detection_PriorBox_1"/>
<tab type="user" title="Proposal-1" url="@ref openvino_docs_ops_detection_Proposal_1"/>
<tab type="user" title="Range-1" url="@ref openvino_docs_ops_generation_Range_1"/>
<tab type="user" title="ReadValue-3" url="@ref openvino_docs_ops_infrastructure_ReadValue_3"/>
<tab type="user" title="ReLU-1" url="@ref openvino_docs_ops_activation_ReLU_1"/>
<tab type="user" title="ReduceLogicalAnd-1" url="@ref openvino_docs_ops_reduction_ReduceLogicalAnd_1"/>
<tab type="user" title="ReduceLogicalOr-1" url="@ref openvino_docs_ops_reduction_ReduceLogicalOr_1"/>
<tab type="user" title="ReduceMax-1" url="@ref openvino_docs_ops_reduction_ReduceMax_1"/>
<tab type="user" title="ReduceMean-1" url="@ref openvino_docs_ops_reduction_ReduceMean_1"/>
<tab type="user" title="ReduceMin-1" url="@ref openvino_docs_ops_reduction_ReduceMin_1"/>
<tab type="user" title="ReduceProd-1" url="@ref openvino_docs_ops_reduction_ReduceProd_1"/>
<tab type="user" title="ReduceSum-1" url="@ref openvino_docs_ops_reduction_ReduceSum_1"/>
<tab type="user" title="RegionYolo-1" url="@ref openvino_docs_ops_detection_RegionYolo_1"/>
<tab type="user" title="ReorgYolo-1" url="@ref openvino_docs_ops_detection_ReorgYolo_1"/>
<tab type="user" title="Reshape-1" url="@ref openvino_docs_ops_shape_Reshape_1"/>
<tab type="user" title="Result-1" url="@ref openvino_docs_ops_infrastructure_Result_1"/>
<tab type="user" title="Reverse" url="@ref openvino_docs_ops_movement_Reverse_1"/>
<tab type="user" title="ReverseSequence-1" url="@ref openvino_docs_ops_movement_ReverseSequence_1"/>
<tab type="user" title="RNNCell-3" url="@ref openvino_docs_ops_sequence_RNNCell_3"/>
<tab type="user" title="ROIAlign-3" url="@ref openvino_docs_ops_detection_ROIAlign_3"/>
<tab type="user" title="ROIPooling-1" url="@ref openvino_docs_ops_detection_ROIPooling_1"/>
<tab type="user" title="ScatterElementsUpdate-3" url="@ref openvino_docs_ops_movement_ScatterElementsUpdate_3"/>
<tab type="user" title="ScatterNDUpdate" url="@ref openvino_docs_ops_movement_ScatterNDUpdate_3"/>
<tab type="user" title="ScatterUpdate-3" url="@ref openvino_docs_ops_movement_ScatterUpdate_3"/>
<tab type="user" title="Select-1" url="@ref openvino_docs_ops_condition_Select_1"/>
<tab type="user" title="Selu-1" url="@ref openvino_docs_ops_arithmetic_Selu_1"/>
<tab type="user" title="ShapeOf-1" url="@ref openvino_docs_ops_shape_ShapeOf_1"/>
<tab type="user" title="ShapeOf-3" url="@ref openvino_docs_ops_shape_ShapeOf_3"/>
<tab type="user" title="ShuffleChannels-1" url="@ref openvino_docs_ops_movement_ShuffleChannels_1"/>
<tab type="user" title="Sigmoid-1" url="@ref openvino_docs_ops_activation_Sigmoid_1"/>
<tab type="user" title="Sign-1" url="@ref openvino_docs_ops_arithmetic_Sign_1"/>
<tab type="user" title="Sin-1" url="@ref openvino_docs_ops_arithmetic_Sin_1"/>
<tab type="user" title="Sinh-1" url="@ref openvino_docs_ops_arithmetic_Sinh_1"/>
<tab type="user" title="SoftMax-1" url="@ref openvino_docs_ops_activation_SoftMax_1"/>
<tab type="user" title="SoftPlus-4" url="@ref openvino_docs_ops_activation_SoftPlus_4"/>
<tab type="user" title="SpaceToBatch-2" url="@ref openvino_docs_ops_movement_SpaceToBatch_2"/>
<tab type="user" title="SpaceToDepth-1" url="@ref openvino_docs_ops_movement_SpaceToDepth_1"/>
<tab type="user" title="Split-1" url="@ref openvino_docs_ops_movement_Split_1"/>
<tab type="user" title="Sqrt-1" url="@ref openvino_docs_ops_arithmetic_Sqrt_1"/>
<tab type="user" title="SquaredDifference-1" url="@ref openvino_docs_ops_arithmetic_SquaredDifference_1"/>
<tab type="user" title="Squeeze-1" url="@ref openvino_docs_ops_shape_Squeeze_1"/>
<tab type="user" title="StridedSlice-1" url="@ref openvino_docs_ops_movement_StridedSlice_1"/>
<tab type="user" title="Subtract-1" url="@ref openvino_docs_ops_arithmetic_Subtract_1"/>
<tab type="user" title="Swish-4" url="@ref openvino_docs_ops_activation_Swish_4"/>
<tab type="user" title="Tan-1" url="@ref openvino_docs_ops_arithmetic_Tan_1"/>
<tab type="user" title="Tanh-1" url="@ref openvino_docs_ops_arithmetic_Tanh_1"/>
<tab type="user" title="TensorIterator-1" url="@ref openvino_docs_ops_infrastructure_TensorIterator_1"/>
<tab type="user" title="Tile-1" url="@ref openvino_docs_ops_movement_Tile_1"/>
<tab type="user" title="TopK-1" url="@ref openvino_docs_ops_sort_TopK_1"/>
<tab type="user" title="TopK-3" url="@ref openvino_docs_ops_sort_TopK_3"/>
<tab type="user" title="Transpose-1" url="@ref openvino_docs_ops_movement_Transpose_1"/>
<tab type="user" title="Unsqueeze-1" url="@ref openvino_docs_ops_shape_Unsqueeze_1"/>
<tab type="user" title="VariadicSplit-1" url="@ref openvino_docs_ops_movement_VariadicSplit_1"/>
</tab>
</tab>
<!-- Inference Engine -->
<tab type="usergroup" title="Inference Engine Developer Guide" url="@ref openvino_docs_IE_DG_Deep_Learning_Inference_Engine_DevGuide">
<tab type="user" title="Introduction to Inference Engine" url="@ref openvino_docs_IE_DG_inference_engine_intro"/>
<tab type="user" title="Inference Engine API Changes History" url="@ref openvino_docs_IE_DG_API_Changes"/>
<tab type="user" title="Inference Engine Memory primitives" url="@ref openvino_docs_IE_DG_Memory_primitives"/>
<tab type="user" title="Inference Engine Device Query API" url="@ref openvino_docs_IE_DG_InferenceEngine_QueryAPI"/>
<tab type="user" title="Place of nGraph in the Inference Engine" url="@ref openvino_docs_IE_DG_nGraph_Flow"/>
<tab type="usergroup" title="Inference Engine Extensibility Mechanism" url="@ref openvino_docs_IE_DG_Extensibility_DG_Intro">
<tab type="user" title="Extension Library" url="@ref openvino_docs_IE_DG_Extensibility_DG_Extension"/>
<tab type="user" title="Custom Operations" url="@ref openvino_docs_IE_DG_Extensibility_DG_AddingNGraphOps"/>
<tab type="user" title="CPU Kernels Extensibility" url="@ref openvino_docs_IE_DG_Extensibility_DG_CPU_Kernel"/>
<tab type="user" title="GPU Kernels Extensibility" url="@ref openvino_docs_IE_DG_Extensibility_DG_GPU_Kernel"/>
<tab type="user" title="VPU Kernels Extensibility" url="@ref openvino_docs_IE_DG_Extensibility_DG_VPU_Kernel"/>
<tab type="user" title="Build Extension Library Using CMake" url="@ref openvino_docs_IE_DG_Extensibility_DG_Building"/>
</tab>
<tab type="user" title="Integrate the Inference Engine with Your Application" url="@ref openvino_docs_IE_DG_Integrate_with_customer_application_new_API"/>
<tab type="user" title="[DEPRECATED] Migration from Inference Engine Plugin API to Core API" url="@ref openvino_docs_IE_DG_Migration_CoreAPI"/>
<tab type="user" title="Introduction to Performance Topics" url="@ref openvino_docs_IE_DG_Intro_to_Performance"/>
<tab type="user" title="Inference Engine Python* API Overview" url="@ref openvino_inference_engine_ie_bridges_python_docs_api_overview"/>
<tab type="user" title="Build a Model with nGraph" url="@ref openvino_docs_IE_DG_nGraphTutorial"/>
<tab type="user" title="Read an ONNX model" url="@ref openvino_docs_IE_DG_ONNX_Support"/>
<tab type="user" title="[DEPRECATED] Import an ONNX model" url="@ref openvino_docs_IE_DG_OnnxImporterTutorial"/>
<tab type="user" title="Graph Debug Capabilities" url="@ref openvino_docs_IE_DG_Graph_debug_capabilities"/>
<tab type="user" title="Using Dynamic Batching Feature" url="@ref openvino_docs_IE_DG_DynamicBatching"/>
<tab type="user" title="Using Static Shape Infer Feature" url="@ref openvino_docs_IE_DG_ShapeInference"/>
<tab type="user" title="Using GPU kernels tuning" url="@ref openvino_docs_IE_DG_GPU_Kernels_Tuning"/>
<tab type="usergroup" title="Using Bfloat16 Inference" url="@ref openvino_docs_IE_DG_Bfloat16Inference">
</tab>
<tab type="usergroup" title="Using Low-Precision 8-bit Integer Inference" url="@ref openvino_docs_IE_DG_Int8Inference">
</tab>
<tab type="usergroup" title="Utilities to Validate Your Converted Model" url="">
<tab type="user" title="Using Cross Check Tool for Per-Layer Comparison Between Plugins" url="@ref openvino_inference_engine_tools_cross_check_tool_README"/>
</tab>
<tab type="usergroup" title="Supported Devices" url="@ref openvino_docs_IE_DG_supported_plugins_Supported_Devices">
<tab type="usergroup" title="GPU Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_CL_DNN">
<tab type="user" title="RemoteBlob API of GPU Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_GPU_RemoteBlob_API"/>
</tab>
<tab type="user" title="CPU Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_CPU"/>
<tab type="user" title="FPGA Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_FPGA"/>
<tab type="usergroup" title="VPU Plugins" url="@ref openvino_docs_IE_DG_supported_plugins_VPU">
<tab type="user" title="MYRIAD Plugin " url="@ref openvino_docs_IE_DG_supported_plugins_MYRIAD"/>
<tab type="user" title="HDDL Plugin " url="@ref openvino_docs_IE_DG_supported_plugins_HDDL"/>
</tab>
<tab type="user" title="Heterogeneous Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_HETERO"/>
<tab type="user" title="Multi-Device Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_MULTI"/>
<tab type="user" title="GNA Plugin" url="@ref openvino_docs_IE_DG_supported_plugins_GNA"/>
</tab>
<tab type="user" title="Known Issues" url="@ref openvino_docs_IE_DG_Known_Issues_Limitations"/>
<tab type="user" title="Optimization Notice" url="@ref openvino_docs_Optimization_notice"/>
<tab type="user" title="Glossary" url="@ref openvino_docs_IE_DG_Glossary"/>
</tab>
<!-- Workbench -->
<tab type="usergroup" title="Deep Learning Workbench" url="@ref workbench_docs_Workbench_DG_Introduction">
<tab type="user" title="Introduction to DL Workbench" url="@ref workbench_docs_Workbench_DG_Introduction"/>
<tab type="usergroup" title="DL Workbench Installation Guide" url="@ref workbench_docs_Workbench_DG_Install_Workbench">
<tab type="user" title="Install from Docker Hub*" url="@ref workbench_docs_Workbench_DG_Install_from_Docker_Hub"/>
<tab type="user" title="Install from the Intel® Distribution of OpenVINO™ Toolkit Package" url="@ref workbench_docs_Workbench_DG_Install_from_Package"/>
<tab type="user" title="Enter DL Workbench" url="@ref workbench_docs_Workbench_DG_Authentication"/>
</tab>
<tab type="usergroup" title="DL Workbench Get Started Guide" url="@ref workbench_docs_Workbench_DG_Work_with_Models_and_Sample_Datasets">
<tab type="usergroup" title="Select Models" url="@ref workbench_docs_Workbench_DG_Select_Model">
<tab type="user" title="Import Models" url="@ref workbench_docs_Workbench_DG_Select_Models"/>
<tab type="user" title="Import Frozen TensorFlow* SSD MobileNet v2 COCO Tutorial" url="@ref workbench_docs_Workbench_DG_Import_TensorFlow"/>
<tab type="user" title="Import MXNet* MobileNet v2 Tutorial" url="@ref workbench_docs_Workbench_DG_Import_MXNet"/>
<tab type="user" title="Import ONNX* MobileNet v2 Tutorial" url="@ref workbench_docs_Workbench_DG_Import_ONNX"/>
</tab>
<tab type="usergroup" title="Select Datasets" url="@ref workbench_docs_Workbench_DG_Select_Datasets">
<tab type="user" title="Import Datasets" url="@ref workbench_docs_Workbench_DG_Import_Datasets"/>
<tab type="user" title="Generate Datasets" url="@ref workbench_docs_Workbench_DG_Generate_Datasets"/>
<tab type="user" title="Dataset Types" url="@ref workbench_docs_Workbench_DG_Dataset_Types"/>
<tab type="user" title="Download and Cut Datasets" url="@ref workbench_docs_Workbench_DG_Download_and_Cut_Datasets"/>
</tab>
<tab type="user" title="Select Environment" url="@ref workbench_docs_Workbench_DG_Select_Environment"/>
<tab type="user" title="Run Baseline Inference" url="@ref workbench_docs_Workbench_DG_Run_Baseline_Inference"/>
</tab>
<tab type="usergroup" title="DL Workbench Developer Guide" url="@ref workbench_docs_Workbench_DG_Run_Single_Inference">
<tab type="usergroup" title="Measure and Interpret Model Performance" url="@ref workbench_docs_Workbench_DG_Run_Single_Inference">
<tab type="user" title="Run Single Inference" url="@ref workbench_docs_Workbench_DG_Run_Single_Inference"/>
<tab type="user" title="Run Group Inference" url="@ref workbench_docs_Workbench_DG_Run_Range_of_Inferences"/>
<tab type="usergroup" title="View Inference Results" url="@ref workbench_docs_Workbench_DG_View_Inference_Results">
<tab type="user" title="Visualize Model" url="@ref workbench_docs_Workbench_DG_Visualize_Model"/>
</tab>
<tab type="user" title="Compare Performance between Two Versions of a Model" url="@ref workbench_docs_Workbench_DG_Compare_Performance_between_Two_Versions_of_Models"/>
</tab>
<tab type="usergroup" title="Tune Model for Enhanced Performance" url="@ref workbench_docs_Workbench_DG_Int_8_Quantization">
<tab type="user" title="INT8 Calibration" url="@ref workbench_docs_Workbench_DG_Int_8_Quantization"/>
<tab type="user" title="Winograd Algorithmic Tuning" url="@ref workbench_docs_Workbench_DG_Winograd_Algorithmic_Tuning"/>
</tab>
<tab type="usergroup" title="Accuracy Measurements" url="@ref workbench_docs_Workbench_DG_Measure_Accuracy">
<tab type="user" title="Measure Accuracy" url="@ref workbench_docs_Workbench_DG_Measure_Accuracy"/>
<tab type="user" title="Configure Accuracy Settings" url="@ref workbench_docs_Workbench_DG_Configure_Accuracy_Settings"/>
</tab>
<tab type="usergroup" title="Remote Profiling" url="@ref workbench_docs_Workbench_DG_Remote_Profiling">
<tab type="user" title="Profile on Remote Machine" url="@ref workbench_docs_Workbench_DG_Profile_on_Remote_Machine"/>
<tab type="user" title="Set Up Target for Remote Profiling" url="@ref workbench_docs_Workbench_DG_Setup_Remote_Target"/>
<tab type="user" title="Register Remote Target in DL Workbench" url="@ref workbench_docs_Workbench_DG_Add_Remote_Target"/>
<tab type="user" title="Remote Machines" url="@ref workbench_docs_Workbench_DG_Remote_Machines"/>
</tab>
<tab type="user" title="Build Application with Deployment Package" url="@ref workbench_docs_Workbench_DG_Deployment_Package"/>
<tab type="user" title="Deploy and Integrate Performance Criteria into Application" url="@ref workbench_docs_Workbench_DG_Deploy_and_Integrate_Performance_Criteria_into_Application"/>
<tab type="user" title="Persist Database State" url="@ref workbench_docs_Workbench_DG_Persist_Database"/>
<tab type="user" title="Work with Docker Container" url="@ref workbench_docs_Workbench_DG_Docker_Container"/>
</tab>
<tab type="usergroup" title="DL Workbench Security Guide" url="@ref workbench_docs_Workbench_DG_Configure_TLS">
<tab type="user" title="Configure Transport Layer Security (TLS)" url="@ref workbench_docs_Workbench_DG_Configure_TLS"/>
<tab type="user" title="Configure Authentication Token Saving" url="@ref workbench_docs_Workbench_DG_Configure_Token_Saving"/>
</tab>
<tab type="user" title="Troubleshooting" url="@ref workbench_docs_Workbench_DG_Troubleshooting"/>
</tab>
<!-- Inference Engine Plugin Development Guide-->
<tab type="user" title="Inference Engine Plugin Development Guide" url="ie_plugin_api/index.html"/>
<!-- Deployment Manager-->
<tab type="user" title="Deployment Manager Guide" url="@ref openvino_docs_install_guides_deployment_manager_tool"/>
<!-- Security -->
<tab type="usergroup" title="Security" url="@ref openvino_docs_security_guide_introduction">
<tab type="user" title="Introduction" url="@ref openvino_docs_security_guide_introduction"/>
<tab type="user" title="Using DL Workbench Securely" url="@ref openvino_docs_security_guide_workbench"/>
<tab type="user" title="Using Encrypted Models" url="@ref openvino_docs_IE_DG_protecting_model_guide"/>
</tab>
<!-- Optimization Guide -->
<tab type="user" title="Optimization Guide" url="@ref openvino_docs_optimization_guide_dldt_optimization_guide"/>
</tab>
<!-- OpenVX -->
<tab type="user" title="OpenVX* Developer Guide" url="https://software.intel.com/en-us/openvino-ovx-guide"/>
<!-- OpenCV -->
<tab type="user" title="OpenCV* Developer Guide" url="https://docs.opencv.org/master/"/>
<!-- OpenCL -->
<tab type="user" title="OpenCL™ Developer Guide" url="https://software.intel.com/en-us/openclsdk-devguide"/>
<tab type="user" title="Legal Information" url="@ref openvino_docs_Legal_Information"/>
</tab>
<!-- Resources category -->
<tab type="usergroup" title="RESOURCES" url="@ref openvino_docs_resources_introduction">
<tab type="user" title="Resource Overview" url="@ref openvino_docs_resources_introduction"/>
<!-- Samples -->
<tab type="usergroup" title="Samples" url="@ref openvino_docs_IE_DG_Samples_Overview">
<tab type="user" title="Image Classification C++ Sample Async" url="@ref openvino_inference_engine_samples_classification_sample_async_README"/>
<tab type="user" title="Image Classification Python* Sample Async" url="@ref openvino_inference_engine_ie_bridges_python_sample_classification_sample_async_README"/>
<tab type="user" title="Hello Classification C++ Sample" url="@ref openvino_inference_engine_samples_hello_classification_README"/>
<tab type="user" title="Hello Classification C Sample" url="@ref openvino_inference_engine_ie_bridges_c_samples_hello_classification_README"/>
<tab type="user" title="Image Classification Python* Sample" url="@ref openvino_inference_engine_ie_bridges_python_sample_classification_sample_README"/>
<tab type="user" title="Hello Reshape SSD C++ Sample" url="@ref openvino_inference_engine_samples_hello_reshape_ssd_README"/>
<tab type="user" title="Hello NV12 Input Classification C++ Sample" url="@ref openvino_inference_engine_samples_hello_nv12_input_classification_README"/>
<tab type="user" title="Hello NV12 Input Classification C Sample" url="@ref openvino_inference_engine_ie_bridges_c_samples_hello_nv12_input_classification_README"/>
<tab type="user" title="Hello Query Device C++ Sample" url="@ref openvino_inference_engine_samples_hello_query_device_README"/>
<tab type="user" title="Hello Query Device Python* Sample" url="@ref openvino_inference_engine_ie_bridges_python_sample_hello_query_device_README"/>
<tab type="user" title="nGraph Function C++ Sample" url="@ref openvino_inference_engine_samples_ngraph_function_creation_sample_README"/>
<tab type="user" title="Object Detection C++ Sample SSD" url="@ref openvino_inference_engine_samples_object_detection_sample_ssd_README"/>
<tab type="user" title="Object Detection Python* Sample SSD" url="@ref openvino_inference_engine_ie_bridges_python_sample_object_detection_sample_ssd_README"/>
<tab type="user" title="Object Detection C Sample SSD" url="@ref openvino_inference_engine_ie_bridges_c_samples_object_detection_sample_ssd_README"/>
<tab type="user" title="Automatic Speech Recognition C++ Sample" url="@ref openvino_inference_engine_samples_speech_sample_README"/>
<tab type="user" title="Neural Style Transfer C++ Sample" url="@ref openvino_inference_engine_samples_style_transfer_sample_README"/>
<tab type="user" title="Neural Style Transfer Python* Sample" url="@ref openvino_inference_engine_ie_bridges_python_sample_style_transfer_sample_README"/>
<tab type="user" title="Benchmark C++ App" url="@ref openvino_inference_engine_samples_benchmark_app_README"/>
<tab type="user" title="Benchmark Python* App" url="@ref openvino_inference_engine_tools_benchmark_tool_README"/>
</tab>
<tab type="usergroup" title="DL Streamer Samples" url="@ref gst_samples_README">
<tab type="usergroup" title="Command Line Samples" url="">
<tab type="user" title="Face Detection And Classification Sample" url="@ref gst_samples_gst_launch_face_detection_and_classification_README"/>
<tab type="user" title="Vehicle and Pedestrian Tracking Sample" url="@ref gst_samples_gst_launch_vehicle_pedestrian_tracking_README"/>
<tab type="usergroup" title="Metadata Publishing Sample" url="@ref gst_samples_gst_launch_metapublish_README">
<tab type="user" title="MetaPublish Listeners" url="@ref gst_samples_gst_launch_metapublish_listener"/>
</tab>
<tab type="user" title="gvapython Sample" url="@ref gst_samples_gst_launch_gvapython_face_detection_and_classification_README"/>
</tab>
<tab type="user" title="Draw Face Attributes C++ Sample" url="@ref gst_samples_cpp_draw_face_attributes_README"/>
<tab type="user" title="Draw Face Attributes Python Sample" url="@ref gst_samples_python_draw_face_attributes_README"/>
<tab type="user" title="Benchmark Sample" url="@ref gst_samples_benchmark_README"/>
</tab>
<tab type="usergroup" title="Demos" url="@ref omz_demos_README">
<tab type="user" title="Crossroad Camera C++ Demo" url="@ref omz_demos_crossroad_camera_demo_README"/>
<tab type="user" title="Colorization Python Demo" url="@ref omz_demos_python_demos_colorization_demo_README"/>
<tab type="user" title="Image Inpainting Python Demo" url="@ref omz_demos_python_demos_image_inpainting_demo_README"/>
<tab type="user" title="Monodepth Python* Demo" url="@ref omz_demos_python_demos_monodepth_demo_README"/>
<tab type="user" title="Interactive Face Detection C++ Demo" url="@ref omz_demos_interactive_face_detection_demo_README"/>
<tab type="user" title="TensorFlow* Object Detection Mask R-CNNs Segmentation Demo" url="@ref omz_demos_mask_rcnn_demo_README"/>
<tab type="usergroup" title="Multi-Channel Demos" url="@ref omz_demos_multi_channel_README">
<tab type="user" title="Multi-Channel Face Detection C++ Demo" url="@ref omz_demos_multi_channel_face_detection_demo_README"/>
<tab type="user" title="Multi-Channel Human Pose Estimation C++ Demo" url="@ref omz_demos_multi_channel_human_pose_estimation_demo_README"/>
<tab type="user" title="Multi-Channel Object Detection YOLO* V3 C++ Demo" url="@ref omz_demos_multi_channel_object_detection_demo_yolov3_README"/>
</tab>
<tab type="user" title="Object Detection Faster R-CNN Demo" url="@ref omz_demos_object_detection_demo_faster_rcnn_README"/>
<tab type="user" title="Object Detection for RetinaFace Python* Demo" url="@ref omz_demos_python_demos_object_detection_demo_retinaface_README"/>
<tab type="user" title="Object Detection for CenterNet Python* Demo" url="@ref omz_demos_python_demos_object_detection_demo_centernet_README"/>
<tab type="user" title="Object Detection SSD C++ Demo, Async API Performance Showcase" url="@ref omz_demos_object_detection_demo_ssd_async_README"/>
<tab type="user" title="Object Detection SSD Python* Demo, Async API Performance Showcase" url="@ref omz_demos_python_demos_object_detection_demo_ssd_async_README"/>
<tab type="user" title="Security Barrier Camera Demo" url="@ref omz_demos_security_barrier_camera_demo_README"/>
<tab type="user" title="Image Segmentation C++ Demo" url="@ref omz_demos_segmentation_demo_README"/>
<tab type="user" title="Single Human Pose Estimation Python* Demo" url="@ref omz_demos_python_demos_single_human_pose_estimation_demo_README"/>
<tab type="user" title="Image Segmentation Python* Demo" url="@ref omz_demos_python_demos_segmentation_demo_README"/>
<tab type="user" title="Smart Classroom Demo" url="@ref omz_demos_smart_classroom_demo_README"/>
<tab type="user" title="Text Detection Demo" url="@ref omz_demos_text_detection_demo_README"/>
<tab type="user" title="Text Spotting Python* Demo" url="@ref omz_demos_python_demos_text_spotting_demo_README"/>
<tab type="user" title="Handwritten Japanese Recognition Python* Demo" url="@ref omz_demos_python_demos_handwritten_japanese_recognition_demo_README"/>
<tab type="user" title="Gaze Estimation Demo" url="@ref omz_demos_gaze_estimation_demo_README"/>
<tab type="user" title="Human Pose Estimation Demo" url="@ref omz_demos_human_pose_estimation_demo_README"/>
<tab type="user" title="3D Human Pose Estimation Python* Demo" url="@ref omz_demos_python_demos_human_pose_estimation_3d_demo_README"/>
<tab type="user" title="Pedestrian Tracker Demo" url="@ref omz_demos_pedestrian_tracker_demo_README"/>
<tab type="user" title="Super Resolution Demo" url="@ref omz_demos_super_resolution_demo_README"/>
<tab type="user" title="Object Detection YOLO* V3 C++ Demo, Async API Performance Showcase" url="@ref omz_demos_object_detection_demo_yolov3_async_README"/>
<tab type="user" title="Object Detection YOLO* V3 Python* Demo, Async API Performance Showcase" url="@ref omz_demos_python_demos_object_detection_demo_yolov3_async_README"/>
<tab type="user" title="Action Recognition Demo" url="@ref omz_demos_python_demos_action_recognition_README"/>
<tab type="user" title="Instance Segmentation Demo" url="@ref omz_demos_python_demos_instance_segmentation_demo_README"/>
<tab type="user" title="3D Segmentation Demo" url="@ref omz_demos_python_demos_3d_segmentation_demo_README"/>
<tab type="user" title="Image Retrieval Python* Demo" url="@ref omz_demos_python_demos_image_retrieval_demo_README"/>
<tab type="user" title="Multi-Camera Multi-Target Tracking Python* Demo" url="@ref omz_demos_python_demos_multi_camera_multi_target_tracking_README"/>
<tab type="usergroup" title="Speech Library and Speech Recognition Demos" url="@ref openvino_inference_engine_samples_speech_libs_and_demos_Speech_libs_and_demos">
<tab type="user" title="Speech Library" url="@ref openvino_inference_engine_samples_speech_libs_and_demos_Speech_library"/>
<tab type="user" title="Offline Speech Recognition Demo" url="@ref openvino_inference_engine_samples_speech_libs_and_demos_Offline_speech_recognition_demo"/>
<tab type="user" title="Live Speech Recognition Demo" url="@ref openvino_inference_engine_samples_speech_libs_and_demos_Live_speech_recognition_demo"/>
<tab type="user" title="Kaldi* Statistical Language Model Conversion Tool" url="@ref openvino_inference_engine_samples_speech_libs_and_demos_Kaldi_SLM_conversion_tool"/>
</tab>
</tab>
<tab type="usergroup" title="Tools" url="@ref openvino_docs_IE_DG_Tools_Overview">
<tab type="usergroup" title="Accuracy Checker Tool" url="@ref omz_tools_accuracy_checker_README">
<tab type="user" title="Accuracy Checker Sample" url="@ref omz_tools_accuracy_checker_sample_README"/>
<tab type="user" title="Configure Caffe* Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_caffe_launcher_readme"/>
<tab type="user" title="Configure OpenVINO Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_dlsdk_launcher_readme"/>
<tab type="user" title="Configure OpenCV* Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_opencv_launcher_readme"/>
<tab type="user" title="Configure MxNet* Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_mxnet_launcher_readme"/>
<tab type="user" title="Configure TensorFlow* Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_tf_launcher_readme"/>
<tab type="user" title="Configure TensorFlow* Lite Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_tf_lite_launcher_readme"/>
<tab type="user" title="Configure ONNX* Runtime Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_onnx_runtime_launcher_readme"/>
<tab type="user" title="Configure *PyTorch Launcher" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_pytorch_launcher_readme"/>
<tab type="user" title="Adapters" url="@ref omz_tools_accuracy_checker_accuracy_checker_adapters_README"/>
<tab type="user" title="Annotation Converters" url="@ref omz_tools_accuracy_checker_accuracy_checker_annotation_converters_README"/>
<tab type="user" title="Preprocessors" url="@ref omz_tools_accuracy_checker_accuracy_checker_preprocessor_README"/>
<tab type="user" title="Postprocessors" url="@ref omz_tools_accuracy_checker_accuracy_checker_postprocessor_README"/>
<tab type="user" title="Metrics" url="@ref omz_tools_accuracy_checker_accuracy_checker_metrics_README"/>
<tab type="user" title="Custom Evaluators for Accuracy Checker" url="@ref omz_tools_accuracy_checker_accuracy_checker_evaluators_custom_evaluators_README"/>
<tab type="user" title="Readers" url="@ref omz_tools_accuracy_checker_accuracy_checker_data_readers_README"/>
<tab type="user" title="Caffe* Installation Tips" url="@ref omz_tools_accuracy_checker_accuracy_checker_launcher_caffe_installation_readme"/>
</tab>
<tab type="usergroup" title="Post-Training Optimization Tool" url="@ref pot_README">
<tab type="usergroup" title="Quantization" url="@ref pot_compression_algorithms_quantization_README">
<tab type="user" title="DefaultQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_default_README"/>
<tab type="user" title="AccuracyAwareQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_accuracy_aware_README"/>
<tab type="user" title="TunableQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_tunable_quantization_README"/>
</tab>
<tab type="usergroup" title="Quantization Hyperparameters Optimization" url="@ref pot_compression_optimization_README">
<tab type="usergroup" title="Tree-structured Parzen Estimator (TPE)" url="@ref pot_compression_optimization_tpe_README">
<tab type="user" title="TPE Multiple Node Configuration Based on MongoDB Database" url="@ref pot_compression_optimization_tpe_multinode"/>
</tab>
</tab>
<tab type="usergroup" title="Low Precision Optimization Guide" url="@ref pot_docs_LowPrecisionOptimizationGuide">
<tab type="user" title="Post-Training Optimization Best Practices" url="@ref pot_docs_BestPractices"/>
</tab>
<tab type="user" title="Use Post-Training Optimization Toolkit API" url="@ref pot_compression_api_README"/>
<tab type="usergroup" title="Define Configuration Files" url="@ref pot_configs_README">
<tab type="user" title="Examples of Configuration Files" url="@ref pot_configs_examples_README"/>
</tab>
</tab>
<tab type="user" title="Model Downloader" url="@ref omz_tools_downloader_README"/>
<tab type="user" title="Compile Tool" url="@ref openvino_inference_engine_tools_compile_tool_README"/>
<tab type="user" title="Cross Check Tool" url="@ref openvino_inference_engine_tools_cross_check_tool_README"/>
</tab>
<tab type="usergroup" title="Intel Pre-Trained Models" url="@ref omz_models_intel_index">
<tab type="usergroup" title="Object Detection Models" url="">
<tab type="user" title="faster-rcnn-resnet101-coco-sparse-60-0001" url="@ref omz_models_intel_faster_rcnn_resnet101_coco_sparse_60_0001_description_faster_rcnn_resnet101_coco_sparse_60_0001"/>
<tab type="user" title="face-detection-adas-0001" url="@ref omz_models_intel_face_detection_adas_0001_description_face_detection_adas_0001"/>
<tab type="user" title="face-detection-adas-binary-0001" url="@ref omz_models_intel_face_detection_adas_binary_0001_description_face_detection_adas_binary_0001"/>
<tab type="user" title="face-detection-retail-0004" url="@ref omz_models_intel_face_detection_retail_0004_description_face_detection_retail_0004"/>
<tab type="user" title="face-detection-retail-0005" url="@ref omz_models_intel_face_detection_retail_0005_description_face_detection_retail_0005"/>
<tab type="user" title="face-detection-0100" url="@ref omz_models_intel_face_detection_0100_description_face_detection_0100"/>
<tab type="user" title="face-detection-0102" url="@ref omz_models_intel_face_detection_0102_description_face_detection_0102"/>
<tab type="user" title="face-detection-0104" url="@ref omz_models_intel_face_detection_0104_description_face_detection_0104"/>
<tab type="user" title="face-detection-0105" url="@ref omz_models_intel_face_detection_0105_description_face_detection_0105"/>
<tab type="user" title="face-detection-0106" url="@ref omz_models_intel_face_detection_0106_description_face_detection_0106"/>
<tab type="user" title="person-detection-retail-0002" url="@ref omz_models_intel_person_detection_retail_0002_description_person_detection_retail_0002"/>
<tab type="user" title="person-detection-retail-0013" url="@ref omz_models_intel_person_detection_retail_0013_description_person_detection_retail_0013"/>
<tab type="user" title="person-detection-action-recognition-0005" url="@ref omz_models_intel_person_detection_action_recognition_0005_description_person_detection_action_recognition_0005"/>
<tab type="user" title="person-detection-action-recognition-0006" url="@ref omz_models_intel_person_detection_action_recognition_0006_description_person_detection_action_recognition_0006"/>
<tab type="user" title="person-detection-action-recognition-teacher-0002" url="@ref omz_models_intel_person_detection_action_recognition_teacher_0002_description_person_detection_action_recognition_teacher_0002"/>
<tab type="user" title="person-detection-raisinghand-recognition-0001" url="@ref omz_models_intel_person_detection_raisinghand_recognition_0001_description_person_detection_raisinghand_recognition_0001"/>
<tab type="user" title="person-detection-0100" url="@ref omz_models_intel_person_detection_0100_description_person_detection_0100"/>
<tab type="user" title="person-detection-0101" url="@ref omz_models_intel_person_detection_0101_description_person_detection_0101"/>
<tab type="user" title="person-detection-0102" url="@ref omz_models_intel_person_detection_0102_description_person_detection_0102"/>
<tab type="user" title="person-detection-0106" url="@ref omz_models_intel_person_detection_0106_description_person_detection_0106"/>
<tab type="user" title="person-detection-asl-0001" url="@ref omz_models_intel_person_detection_asl_0001_description_person_detection_asl_0001"/>
<tab type="user" title="pedestrian-detection-adas-0002" url="@ref omz_models_intel_pedestrian_detection_adas_0002_description_pedestrian_detection_adas_0002"/>
<tab type="user" title="pedestrian-detection-adas-binary-0001" url="@ref omz_models_intel_pedestrian_detection_adas_binary_0001_description_pedestrian_detection_adas_binary_0001"/>
<tab type="user" title="pedestrian-and-vehicle-detector-adas-0001" url="@ref omz_models_intel_pedestrian_and_vehicle_detector_adas_0001_description_pedestrian_and_vehicle_detector_adas_0001"/>
<tab type="user" title="vehicle-detection-adas-0002" url="@ref omz_models_intel_vehicle_detection_adas_0002_description_vehicle_detection_adas_0002"/>
<tab type="user" title="vehicle-detection-adas-binary-0001" url="@ref omz_models_intel_vehicle_detection_adas_binary_0001_description_vehicle_detection_adas_binary_0001"/>
<tab type="user" title="person-vehicle-bike-detection-crossroad-0078" url="@ref omz_models_intel_person_vehicle_bike_detection_crossroad_0078_description_person_vehicle_bike_detection_crossroad_0078"/>
<tab type="user" title="person-vehicle-bike-detection-crossroad-1016" url="@ref omz_models_intel_person_vehicle_bike_detection_crossroad_1016_description_person_vehicle_bike_detection_crossroad_1016"/>
<tab type="user" title="product-detection-0001" url="@ref omz_models_intel_product_detection_0001_description_product_detection_0001"/>
<tab type="user" title="vehicle-license-plate-detection-barrier-0106" url="@ref omz_models_intel_vehicle_license_plate_detection_barrier_0106_description_vehicle_license_plate_detection_barrier_0106"/>
<tab type="user" title="yolo-v2-ava-0001" url="@ref omz_models_intel_yolo_v2_ava_0001_description_yolo_v2_ava_0001"/>
<tab type="user" title="yolo-v2-ava-sparse-35-0001" url="@ref omz_models_intel_yolo_v2_ava_sparse_35_0001_description_yolo_v2_ava_sparse_35_0001"/>
<tab type="user" title="yolo-v2-ava-sparse-70-0001" url="@ref omz_models_intel_yolo_v2_ava_sparse_70_0001_description_yolo_v2_ava_sparse_70_0001"/>
<tab type="user" title="yolo-v2-tiny-ava-0001" url="@ref omz_models_intel_yolo_v2_tiny_ava_0001_description_yolo_v2_tiny_ava_0001"/>
<tab type="user" title="yolo-v2-tiny-ava-sparse-30-0001" url="@ref omz_models_intel_yolo_v2_tiny_ava_sparse_30_0001_description_yolo_v2_tiny_ava_sparse_30_0001"/>
<tab type="user" title="yolo-v2-tiny-ava-sparse-60-0001" url="@ref omz_models_intel_yolo_v2_tiny_ava_sparse_60_0001_description_yolo_v2_tiny_ava_sparse_60_0001"/>
<tab type="user" title="yolo-v2-tiny-vehicle-detection-0001" url="@ref omz_models_intel_yolo_v2_tiny_vehicle_detection_0001_description_yolo_v2_tiny_vehicle_detection_0001"/>
</tab>
<tab type="usergroup" title="Object Recognition Models" url="">
<tab type="user" title="age-gender-recognition-retail-0013" url="@ref omz_models_intel_age_gender_recognition_retail_0013_description_age_gender_recognition_retail_0013"/>
<tab type="user" title="head-pose-estimation-adas-0001" url="@ref omz_models_intel_head_pose_estimation_adas_0001_description_head_pose_estimation_adas_0001"/>
<tab type="user" title="license-plate-recognition-barrier-0001" url="@ref omz_models_intel_license_plate_recognition_barrier_0001_description_license_plate_recognition_barrier_0001"/>
<tab type="user" title="vehicle-attributes-recognition-barrier-0039" url="@ref omz_models_intel_vehicle_attributes_recognition_barrier_0039_description_vehicle_attributes_recognition_barrier_0039"/>
<tab type="user" title="vehicle-attributes-recognition-barrier-0042" url="@ref omz_models_intel_vehicle_attributes_recognition_barrier_0042_description_vehicle_attributes_recognition_barrier_0042"/>
<tab type="user" title="emotions-recognition-retail-0003" url="@ref omz_models_intel_emotions_recognition_retail_0003_description_emotions_recognition_retail_0003"/>
<tab type="user" title="landmarks-regression-retail-0009" url="@ref omz_models_intel_landmarks_regression_retail_0009_description_landmarks_regression_retail_0009"/>
<tab type="user" title="facial-landmarks-35-adas-0002" url="@ref omz_models_intel_facial_landmarks_35_adas_0002_description_facial_landmarks_35_adas_0002"/>
<tab type="user" title="person-attributes-recognition-crossroad-0230" url="@ref omz_models_intel_person_attributes_recognition_crossroad_0230_description_person_attributes_recognition_crossroad_0230"/>
<tab type="user" title="gaze-estimation-adas-0002" url="@ref omz_models_intel_gaze_estimation_adas_0002_description_gaze_estimation_adas_0002"/>
</tab>
<tab type="usergroup" title="Reidentification Models" url="">
<tab type="user" title="person-reidentification-retail-0248" url="@ref omz_models_intel_person_reidentification_retail_0248_description_person_reidentification_retail_0248"/>
<tab type="user" title="person-reidentification-retail-0265" url="@ref omz_models_intel_person_reidentification_retail_0265_description_person_reidentification_retail_0265"/>
<tab type="user" title="person-reidentification-retail-0267" url="@ref omz_models_intel_person_reidentification_retail_0267_description_person_reidentification_retail_0267"/>
<tab type="user" title="person-reidentification-retail-0270" url="@ref omz_models_intel_person_reidentification_retail_0270_description_person_reidentification_retail_0270"/>
</tab>
<tab type="usergroup" title="Semantic Segmentation Models" url="">
<tab type="user" title="road-segmentation-adas-0001" url="@ref omz_models_intel_road_segmentation_adas_0001_description_road_segmentation_adas_0001"/>
<tab type="user" title="semantic-segmentation-adas-0001" url="@ref omz_models_intel_semantic_segmentation_adas_0001_description_semantic_segmentation_adas_0001"/>
<tab type="user" title="icnet-camvid-ava-0001" url="@ref omz_models_intel_icnet_camvid_ava_0001_description_icnet_camvid_ava_0001"/>
<tab type="user" title="icnet-camvid-ava-sparse-30-0001" url="@ref omz_models_intel_icnet_camvid_ava_sparse_30_0001_description_icnet_camvid_ava_sparse_30_0001"/>
<tab type="user" title="icnet-camvid-ava-sparse-60-0001" url="@ref omz_models_intel_icnet_camvid_ava_sparse_60_0001_description_icnet_camvid_ava_sparse_60_0001"/>
<tab type="user" title="unet-camvid-onnx-0001" url="@ref omz_models_intel_unet_camvid_onnx_0001_description_unet_camvid_onnx_0001"/>
</tab>
<tab type="usergroup" title="Instance Segmentation Models" url="">
<tab type="user" title="instance-segmentation-security-0050" url="@ref omz_models_intel_instance_segmentation_security_0050_description_instance_segmentation_security_0050"/>
<tab type="user" title="instance-segmentation-security-0083" url="@ref omz_models_intel_instance_segmentation_security_0083_description_instance_segmentation_security_0083"/>
<tab type="user" title="instance-segmentation-security-0010" url="@ref omz_models_intel_instance_segmentation_security_0010_description_instance_segmentation_security_0010"/>
<tab type="user" title="instance-segmentation-security-1025" url="@ref omz_models_intel_instance_segmentation_security_1025_description_instance_segmentation_security_1025"/>
</tab>
<tab type="usergroup" title="Human Pose Estimation Models" url="">
<tab type="user" title="human-pose-estimation-0001" url="@ref omz_models_intel_human_pose_estimation_0001_description_human_pose_estimation_0001"/>
</tab>
<tab type="usergroup" title="Image Processing" url="">
<tab type="user" title="single-image-super-resolution-1032" url="@ref omz_models_intel_single_image_super_resolution_1032_description_single_image_super_resolution_1032"/>
<tab type="user" title="single-image-super-resolution-1033" url="@ref omz_models_intel_single_image_super_resolution_1033_description_single_image_super_resolution_1033"/>
<tab type="user" title="text-image-super-resolution-0001" url="@ref omz_models_intel_text_image_super_resolution_0001_description_text_image_super_resolution_0001"/>
</tab>
<tab type="usergroup" title="Text Detection" url="">
<tab type="user" title="text-detection-0003" url="@ref omz_models_intel_text_detection_0003_description_text_detection_0003"/>
<tab type="user" title="text-detection-0004" url="@ref omz_models_intel_text_detection_0004_description_text_detection_0004"/>
</tab>
<tab type="usergroup" title="Text Recognition" url="">
<tab type="user" title="text-recognition-0012" url="@ref omz_models_intel_text_recognition_0012_description_text_recognition_0012"/>
<tab type="user" title="handwritten-score-recognition-0003" url="@ref omz_models_intel_handwritten_score_recognition_0003_description_handwritten_score_recognition_0003"/>
<tab type="user" title="handwritten-japanese-recognition-0001" url="@ref omz_models_intel_handwritten_japanese_recognition_0001_description_handwritten_japanese_recognition_0001"/>
</tab>
<tab type="usergroup" title="Text Spotting" url="">
<tab type="user" title="text-spotting-0002" url="@ref omz_models_intel_text_spotting_0002_description_text_spotting_0002"/>
</tab>
<tab type="usergroup" title="Action Recognition Models" url="">
<tab type="user" title="driver-action-recognition-adas-0002" url="@ref omz_models_intel_driver_action_recognition_adas_0002_description_driver_action_recognition_adas_0002"/>
<tab type="user" title="action-recognition-0001" url="@ref omz_models_intel_action_recognition_0001_description_action_recognition_0001"/>
<tab type="user" title="asl-recognition-0004" url="@ref omz_models_intel_asl_recognition_0004_description_asl_recognition_0004"/>
<tab type="user" title="weld-porosity-detection-0001" url="@ref omz_models_intel_weld_porosity_detection_0001_description_weld_porosity_detection_0001"/>
</tab>
<tab type="usergroup" title="Image Retrieval" url="">
<tab type="user" title="image-retrieval-0001" url="@ref omz_models_intel_image_retrieval_0001_description_image_retrieval_0001"/>
</tab>
<tab type="usergroup" title="Compressed Models" url="">
<tab type="user" title="resnet50-binary-0001" url="@ref omz_models_intel_resnet50_binary_0001_description_resnet50_binary_0001"/>
<tab type="user" title="resnet18-xnor-binary-onnx-0001" url="@ref omz_models_intel_resnet18_xnor_binary_onnx_0001_description_resnet18_xnor_binary_onnx_0001"/>
</tab>
<tab type="usergroup" title="Question Answering" url="">
<tab type="user" title="bert-large-uncased-whole-word-masking-squad-fp32-0001" url="@ref omz_models_intel_bert_large_uncased_whole_word_masking_squad_fp32_0001_description_bert_large_uncased_whole_word_masking_squad_fp32_0001"/>
<tab type="user" title="bert-large-uncased-whole-word-masking-squad-int8-0001" url="@ref omz_models_intel_bert_large_uncased_whole_word_masking_squad_int8_0001_description_bert_large_uncased_whole_word_masking_squad_int8_0001"/>
<tab type="user" title="bert-small-uncased-whole-word-masking-squad-0001" url="@ref omz_models_intel_bert_small_uncased_whole_word_masking_squad_0001_description_bert_small_uncased_whole_word_masking_squad_0001"/>
</tab>
</tab>
<tab type="usergroup" title="Public Pre-trained Models Available with OpenVINO™ from Open Model Zoo" url="@ref omz_models_public_index">
<tab type="usergroup" title="Classification" url="">
<tab type="user" title="AlexNet" url="@ref omz_models_public_alexnet_alexnet"/>
<tab type="user" title="CaffeNet" url="@ref omz_models_public_caffenet_caffenet"/>
<tab type="user" title="DenseNet 121" url="@ref omz_models_public_densenet_121_densenet_121"/>
<tab type="user" title="densenet-121-tf" url="@ref omz_models_public_densenet_121_tf_densenet_121_tf"/>
<tab type="user" title="densenet-121-caffe2" url="@ref omz_models_public_densenet_121_caffe2_densenet_121_caffe2"/>
<tab type="user" title="DenseNet 161" url="@ref omz_models_public_densenet_161_densenet_161"/>
<tab type="user" title="densenet-161-tf" url="@ref omz_models_public_densenet_161_tf_densenet_161_tf"/>
<tab type="user" title="DenseNet 169" url="@ref omz_models_public_densenet_169_densenet_169"/>
<tab type="user" title="densenet-169-tf" url="@ref omz_models_public_densenet_169_tf_densenet_169_tf"/>
<tab type="user" title="DenseNet 201" url="@ref omz_models_public_densenet_201_densenet_201"/>
<tab type="user" title="EfficientNet B0" url="@ref omz_models_public_efficientnet_b0_efficientnet_b0"/>
<tab type="user" title="efficientnet-b0-pytorch" url="@ref omz_models_public_efficientnet_b0_pytorch_efficientnet_b0_pytorch"/>
<tab type="user" title="EfficientNet B0 AutoAugment" url="@ref omz_models_public_efficientnet_b0_auto_aug_efficientnet_b0_auto_aug"/>
<tab type="user" title="EfficientNet B5" url="@ref omz_models_public_efficientnet_b5_efficientnet_b5"/>
<tab type="user" title="efficientnet-b5-pytorch" url="@ref omz_models_public_efficientnet_b5_pytorch_efficientnet_b5_pytorch"/>
<tab type="user" title="EfficientNet B7" url="@ref omz_models_public_efficientnet_b7_pytorch_efficientnet_b7_pytorch"/>
<tab type="user" title="EfficientNet B7 AutoAugment" url="@ref omz_models_public_efficientnet_b7_auto_aug_efficientnet_b7_auto_aug"/>
<tab type="user" title="HBONet 1.0" url="@ref omz_models_public_hbonet_1_0_hbonet_1_0"/>
<tab type="user" title="HBONet 0.5" url="@ref omz_models_public_hbonet_0_5_hbonet_0_5"/>
<tab type="user" title="HBONet 0.25" url="@ref omz_models_public_hbonet_0_25_hbonet_0_25"/>
<tab type="user" title="Inception (GoogleNet) V1" url="@ref omz_models_public_googlenet_v1_googlenet_v1"/>
<tab type="user" title="googlenet-v1-tf" url="@ref omz_models_public_googlenet_v1_tf_googlenet_v1_tf"/>
<tab type="user" title="Inception (GoogleNet) V2" url="@ref omz_models_public_googlenet_v2_googlenet_v2"/>
<tab type="user" title="googlenet-v2-tf" url="@ref omz_models_public_googlenet_v2_tf_googlenet_v2_tf"/>
<tab type="user" title="Inception (GoogleNet) V3" url="@ref omz_models_public_googlenet_v3_googlenet_v3"/>
<tab type="user" title="googlenet-v3-pytorch" url="@ref omz_models_public_googlenet_v3_pytorch_googlenet_v3_pytorch"/>
<tab type="user" title="Inception (GoogleNet) V4" url="@ref omz_models_public_googlenet_v4_tf_googlenet_v4_tf"/>
<tab type="user" title="Inception-ResNet V2" url="@ref omz_models_public_inception_resnet_v2_tf_inception_resnet_v2_tf"/>
<tab type="user" title="MobileNet V1 0.25 128" url="@ref omz_models_public_mobilenet_v1_0_25_128_mobilenet_v1_0_25_128"/>
<tab type="user" title="MobileNet V1 0.5 160" url="@ref omz_models_public_mobilenet_v1_0_50_160_mobilenet_v1_0_50_160"/>
<tab type="user" title="MobileNet V1 0.5 224" url="@ref omz_models_public_mobilenet_v1_0_50_224_mobilenet_v1_0_50_224"/>
<tab type="user" title="MobileNet V1 1.0 224" url="@ref omz_models_public_mobilenet_v1_1_0_224_mobilenet_v1_1_0_224"/>
<tab type="user" title="mobilenet-v1-1.0-224-tf" url="@ref omz_models_public_mobilenet_v1_1_0_224_tf_mobilenet_v1_1_0_224_tf"/>
<tab type="user" title="MobileNet V2 1.0 224" url="@ref omz_models_public_mobilenet_v2_mobilenet_v2"/>
<tab type="user" title="mobilenet-v2-1.0-224" url="@ref omz_models_public_mobilenet_v2_1_0_224_mobilenet_v2_1_0_224"/>
<tab type="user" title="mobilenet-v2-pytorch" url="@ref omz_models_public_mobilenet_v2_pytorch_mobilenet_v2_pytorch"/>
<tab type="user" title="MobileNet V2 1.4 224" url="@ref omz_models_public_mobilenet_v2_1_4_224_mobilenet_v2_1_4_224"/>
<tab type="user" title="MobileNet V3 Small 1.0" url="@ref omz_models_public_mobilenet_v3_small_1_0_224_tf_mobilenet_v3_small_1_0_224_tf"/>
<tab type="user" title="MobileNet V3 Large 1.0" url="@ref omz_models_public_mobilenet_v3_large_1_0_224_tf_mobilenet_v3_large_1_0_224_tf"/>
<tab type="user" title="DenseNet 121, alpha=0.125" url="@ref omz_models_public_octave_densenet_121_0_125_octave_densenet_121_0_125"/>
<tab type="user" title="ResNet 26, alpha=0.25" url="@ref omz_models_public_octave_resnet_26_0_25_octave_resnet_26_0_25"/>
<tab type="user" title="ResNet 50, alpha=0.125" url="@ref omz_models_public_octave_resnet_50_0_125_octave_resnet_50_0_125"/>
<tab type="user" title="ResNet 101, alpha=0.125" url="@ref omz_models_public_octave_resnet_101_0_125_octave_resnet_101_0_125"/>
<tab type="user" title="ResNet 200, alpha=0.125" url="@ref omz_models_public_octave_resnet_200_0_125_octave_resnet_200_0_125"/>
<tab type="user" title="ResNeXt 50, alpha=0.25" url="@ref omz_models_public_octave_resnext_50_0_25_octave_resnext_50_0_25"/>
<tab type="user" title="ResNeXt 101, alpha=0.25" url="@ref omz_models_public_octave_resnext_101_0_25_octave_resnext_101_0_25"/>
<tab type="user" title="SE-ResNet 50, alpha=0.125" url="@ref omz_models_public_octave_se_resnet_50_0_125_octave_se_resnet_50_0_125"/>
<tab type="user" title="open-closed-eye-0001" url="@ref omz_models_public_open_closed_eye_0001_description_open_closed_eye_0001"/>
<tab type="user" title="ResNet 18" url="@ref omz_models_public_resnet_18_pytorch_resnet_18_pytorch"/>
<tab type="user" title="ResNet 34" url="@ref omz_models_public_resnet_34_pytorch_resnet_34_pytorch"/>
<tab type="user" title="ResNet 50" url="@ref omz_models_public_resnet_50_resnet_50"/>
<tab type="user" title="resnet-50-pytorch" url="@ref omz_models_public_resnet_50_pytorch_resnet_50_pytorch"/>
<tab type="user" title="resnet-50-caffe2" url="@ref omz_models_public_resnet_50_caffe2_resnet_50_caffe2"/>
<tab type="user" title="resnet-50-tf" url="@ref omz_models_public_resnet_50_tf_resnet_50_tf"/>
<tab type="user" title="ResNet 101" url="@ref omz_models_public_resnet_101_resnet_101"/>
<tab type="user" title="ResNet 152" url="@ref omz_models_public_resnet_152_resnet_152"/>
<tab type="user" title="SE-Inception" url="@ref omz_models_public_se_inception_se_inception"/>
<tab type="user" title="SE-ResNet 50" url="@ref omz_models_public_se_resnet_50_se_resnet_50"/>
<tab type="user" title="SE-ResNet 101" url="@ref omz_models_public_se_resnet_101_se_resnet_101"/>
<tab type="user" title="SE-ResNet 152" url="@ref omz_models_public_se_resnet_152_se_resnet_152"/>
<tab type="user" title="SE-ResNeXt 50" url="@ref omz_models_public_se_resnext_50_se_resnext_50"/>
<tab type="user" title="SE-ResNeXt 101" url="@ref omz_models_public_se_resnext_101_se_resnext_101"/>
<tab type="user" title="SqueezeNet v1.0" url="@ref omz_models_public_squeezenet1_0_squeezenet1_0"/>
<tab type="user" title="SqueezeNet v1.1" url="@ref omz_models_public_squeezenet1_1_squeezenet1_1"/>
<tab type="user" title="squeezenet1.1-caffe2" url="@ref omz_models_public_squeezenet1_1_caffe2_squeezenet1_1_caffe2"/>
<tab type="user" title="VGG 16" url="@ref omz_models_public_vgg16_vgg16"/>
<tab type="user" title="VGG 19" url="@ref omz_models_public_vgg19_vgg19"/>
<tab type="user" title="vgg19-caffe2" url="@ref omz_models_public_vgg19_caffe2_vgg19_caffe2"/>
</tab>
<tab type="usergroup" title="Segmentation" url="">
<tab type="usergroup" title="Semantic Segmentation" url="">
<tab type="user" title="DeepLab V3" url="@ref omz_models_public_deeplabv3_deeplabv3"/>
</tab>
<tab type="usergroup" title="Instance Segmentation" url="">
<tab type="user" title="Mask R-CNN Inception ResNet V2" url="@ref omz_models_public_mask_rcnn_inception_resnet_v2_atrous_coco_mask_rcnn_inception_resnet_v2_atrous_coco"/>
<tab type="user" title="Mask R-CNN Inception V2" url="@ref omz_models_public_mask_rcnn_inception_v2_coco_mask_rcnn_inception_v2_coco"/>
<tab type="user" title="Mask R-CNN ResNet 50" url="@ref omz_models_public_mask_rcnn_resnet50_atrous_coco_mask_rcnn_resnet50_atrous_coco"/>
<tab type="user" title="Mask R-CNN ResNet 101" url="@ref omz_models_public_mask_rcnn_resnet101_atrous_coco_mask_rcnn_resnet101_atrous_coco"/>
</tab>
<tab type="usergroup" title="3D Semantic Segmentation" url="">
<tab type="user" title="Brain Tumor Segmentation" url="@ref omz_models_public_brain_tumor_segmentation_0001_brain_tumor_segmentation_0001"/>
<tab type="user" title="Brain Tumor Segmentation 2" url="@ref omz_models_public_brain_tumor_segmentation_0002_brain_tumor_segmentation_0002"/>
</tab>
</tab>
<tab type="usergroup" title="Object Detection" url="">
<tab type="user" title="CTPN" url="@ref omz_models_public_ctpn_ctpn"/>
<tab type="user" title="CenterNet (CTDET with DLAV0) 384x384" url="@ref omz_models_public_ctdet_coco_dlav0_384_ctdet_coco_dlav0_384"/>
<tab type="user" title="CenterNet (CTDET with DLAV0) 512x512" url="@ref omz_models_public_ctdet_coco_dlav0_512_ctdet_coco_dlav0_512"/>
<tab type="user" title="FaceBoxes" url="@ref omz_models_public_faceboxes_pytorch_faceboxes_pytorch"/>
<tab type="user" title="Faster R-CNN with Inception-ResNet v2" url="@ref omz_models_public_faster_rcnn_inception_resnet_v2_atrous_coco_faster_rcnn_inception_resnet_v2_atrous_coco"/>
<tab type="user" title="Faster R-CNN with Inception v2" url="@ref omz_models_public_faster_rcnn_inception_v2_coco_faster_rcnn_inception_v2_coco"/>
<tab type="user" title="Faster R-CNN with ResNet 50" url="@ref omz_models_public_faster_rcnn_resnet50_coco_faster_rcnn_resnet50_coco"/>
<tab type="user" title="Faster R-CNN with ResNet 101" url="@ref omz_models_public_faster_rcnn_resnet101_coco_faster_rcnn_resnet101_coco"/>
<tab type="user" title="MobileFace Detection V1" url="@ref omz_models_public_mobilefacedet_v1_mxnet_mobilefacedet_v1_mxnet"/>
<tab type="user" title="MTCNN" url="@ref omz_models_public_mtcnn_mtcnn"/>
<tab type="user" title="Pelee" url="@ref omz_models_public_pelee_coco_pelee_coco"/>
<tab type="user" title="RetinaNet with Resnet 50" url="@ref omz_models_public_retinanet_tf_retinanet_tf"/>
<tab type="user" title="R-FCN with Resnet-101" url="@ref omz_models_public_rfcn_resnet101_coco_tf_rfcn_resnet101_coco_tf"/>
<tab type="user" title="SSD 300" url="@ref omz_models_public_ssd300_ssd300"/>
<tab type="user" title="SSD 512" url="@ref omz_models_public_ssd512_ssd512"/>
<tab type="user" title="SSD with MobileNet" url="@ref omz_models_public_mobilenet_ssd_mobilenet_ssd"/>
<tab type="user" title="ssd_mobilenet_v1_coco" url="@ref omz_models_public_ssd_mobilenet_v1_coco_ssd_mobilenet_v1_coco"/>
<tab type="user" title="SSD with MobileNet FPN" url="@ref omz_models_public_ssd_mobilenet_v1_fpn_coco_ssd_mobilenet_v1_fpn_coco"/>
<tab type="user" title="SSD with MobileNet V2" url="@ref omz_models_public_ssd_mobilenet_v2_coco_ssd_mobilenet_v2_coco"/>
<tab type="user" title="SSD lite with MobileNet V2" url="@ref omz_models_public_ssdlite_mobilenet_v2_ssdlite_mobilenet_v2"/>
<tab type="user" title="SSD with ResNet-50 V1 FPN" url="@ref omz_models_public_ssd_resnet50_v1_fpn_coco_ssd_resnet50_v1_fpn_coco"/>
<tab type="user" title="SSD with ResNet 34 1200x1200" url="@ref omz_models_public_ssd_resnet34_1200_onnx_ssd_resnet34_1200_onnx"/>
<tab type="user" title="RetinaFace-R50" url="@ref omz_models_public_retinaface_resnet50_retinaface_resnet50"/>
<tab type="user" title="RetinaFace-Anti-Cov" url="@ref omz_models_public_retinaface_anti_cov_retinaface_anti_cov"/>
<tab type="user" title="YOLO v1 Tiny" url="@ref omz_models_public_yolo_v1_tiny_tf_yolo_v1_tiny_tf"/>
<tab type="user" title="YOLO v2 Tiny" url="@ref omz_models_public_yolo_v2_tiny_tf_yolo_v2_tiny_tf"/>
<tab type="user" title="YOLO v2" url="@ref omz_models_public_yolo_v2_tf_yolo_v2_tf"/>
<tab type="user" title="YOLO v3" url="@ref omz_models_public_yolo_v3_tf_yolo_v3_tf"/>
</tab>
<tab type="usergroup" title="Face Recognition" url="">
<tab type="user" title="FaceNet" url="@ref omz_models_public_facenet_20180408_102900_facenet_20180408_102900"/>
<tab type="user" title="LResNet34E-IR,ArcFace@ms1m-refine-v1" url="@ref omz_models_public_face_recognition_resnet34_arcface_face_recognition_resnet34_arcface"/>
<tab type="user" title="LResNet50E-IR,ArcFace@ms1m-refine-v1" url="@ref omz_models_public_face_recognition_resnet50_arcface_face_recognition_resnet50_arcface"/>
<tab type="user" title="LResNet100E-IR,ArcFace@ms1m-refine-v2" url="@ref omz_models_public_face_recognition_resnet100_arcface_face_recognition_resnet100_arcface"/>
<tab type="user" title="MobileFaceNet,ArcFace@ms1m-refine-v1" url="@ref omz_models_public_face_recognition_mobilefacenet_arcface_face_recognition_mobilefacenet_arcface"/>
<tab type="user" title="SphereFace" url="@ref omz_models_public_Sphereface_Sphereface"/>
</tab>
<tab type="usergroup" title="Human Pose Estimation" url="">
<tab type="user" title="human-pose-estimation-3d-0001" url="@ref omz_models_public_human_pose_estimation_3d_0001_description_human_pose_estimation_3d_0001"/>
<tab type="user" title="single-human-pose-estimation-0001" url="@ref omz_models_public_single_human_pose_estimation_0001_description_single_human_pose_estimation_0001"/>
</tab>
<tab type="usergroup" title="Monocular Depth Estimation" url="">
<tab type="user" title="midasnet" url="@ref omz_models_public_midasnet_midasnet"/>
</tab>
<tab type="usergroup" title="Image Inpainting" url="">
<tab type="user" title="GMCNN Inpainting" url="@ref omz_models_public_gmcnn_places2_tf_gmcnn_places2_tf"/>
</tab>
<tab type="usergroup" title="Style Transfer" url="">
<tab type="user" title="fast-neural-style-mosaic-onnx" url="@ref omz_models_public_fast_neural_style_mosaic_onnx_fast_neural_style_mosaic_onnx"/>
</tab>
<tab type="usergroup" title="Action Recognition" url="">
<tab type="user" title="RGB-I3D, pretrained on ImageNet\*" url="@ref omz_models_public_i3d_rgb_tf_i3d_rgb_tf"/>
</tab>
<tab type="Colorization" title="Colorization" url="">
<tab type="user" title="colorization-v2" url="@ref omz_models_public_colorization_v2_colorization_v2"/>
<tab type="user" title="colorization-v2-norebal" url="@ref omz_models_public_colorization_v2_norebal_colorization_v2_norebal"/>
</tab>
</tab>
</tab>
<!-- Performance Benchmarks -->
<tab type="usergroup" title="PERFORMANCE INFORMATION" url="@ref openvino_docs_performance_benchmarks">
<tab type="usergroup" title="Performance Information" url="@ref openvino_docs_performance_benchmarks">
<tab type="user" title="Performance Information Frequently Asked Questions" url="@ref openvino_docs_performance_benchmarks_faq"/>
<tab type="user" title="Download Performance Data Spreadsheet in MS Excel* Format" url="https://docs.openvinotoolkit.org/downloads/benchmark_files/OV-2020.4-Download-Excel.xlsx"/>
<tab type="user" title="INT8 vs. FP32 Comparison on Select Networks and Platforms" url="@ref openvino_docs_performance_int8_vs_fp32"/>
</tab>
<tab type="user" title="Performance Best Practices" url="@ref openvino_docs_optimization_guide_dldt_optimization_guide"/>
<tab type="usergroup" title="Post-Training Optimization Tool" url="@ref pot_README">
<tab type="usergroup" title="Quantization" url="@ref pot_compression_algorithms_quantization_README">
<tab type="user" title="DefaultQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_default_README"/>
<tab type="user" title="AccuracyAwareQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_accuracy_aware_README"/>
<tab type="user" title="TunableQuantization Algorithm" url="@ref pot_compression_algorithms_quantization_tunable_quantization_README"/>
</tab>
<tab type="usergroup" title="Quantization Hyperparameters Optimization" url="@ref pot_compression_optimization_README">
<tab type="usergroup" title="Tree-structured Parzen Estimator (TPE)" url="@ref pot_compression_optimization_tpe_README">
<tab type="user" title="TPE Multiple Node Configuration Based on MongoDB Database" url="@ref pot_compression_optimization_tpe_multinode"/>
</tab>
</tab>
<tab type="usergroup" title="Low Precision Optimization Guide" url="@ref pot_docs_LowPrecisionOptimizationGuide">
<tab type="user" title="Post-Training Optimization Best Practices" url="@ref pot_docs_BestPractices"/>
</tab>
<tab type="user" title="Use Post-Training Optimization Toolkit API" url="@ref pot_compression_api_README"/>
<tab type="usergroup" title="Define Configuration Files" url="@ref pot_configs_README">
<tab type="user" title="Examples of Configuration Files" url="@ref pot_configs_examples_README"/>
</tab>
</tab>
<tab type="user" title="Case Studies" url="https://www.intel.com/openvino-success-stories"/>
</tab>
<!-- API References -->
<tab type="usergroup" title="API REFERENCES" url="">
<!-- OpenVX -->
<tab type="user" title="OpenVX Developer Guide" url="https://khronos.org/openvx"/>
<!-- OpenCV -->
<tab type="user" title="OpenCV Developer Guide" url="https://docs.opencv.org/master/"/>
<!-- IE C -->
<tab type="user" title="Inference Engine C API Reference" url="ie_c_api/groups.html"/>
<!-- IE C++-->
<tab type="classes" visible="yes" title="Inference Engine С++ API Reference">
<tab type="classlist" visible="yes" title=""/>
<tab type="hierarchy" visible="yes" title=""/>
<tab type="namespacemembers" visible="yes" title="" intro=""/>
<tab type="pages" visible="no"/>
<tab type="files" visible="no"/>
<tab type="filelist" visible="no"/>
<tab type="globals" visible="no"/>
</tab>
<!-- IE Python -->
<tab type="user" title="Inference Engine Python API Reference" url="ie_python_api/annotated.html"/>
<!-- DL Streamer -->
<tab type="user" title="DL Streamer API Reference" url="https://opencv.github.io/gst-video-analytics/"/>
</tab>
<!-- Chinese docs -->
<tab type="user" title="中文文件" url="https://docs.openvinotoolkit.org/cn/index.html"/>
</navindex>
<!-- Layout definition for a class page -->
<class>
<briefdescription visible="yes"/>
<includes visible="$SHOW_INCLUDE_FILES"/>
<inheritancegraph visible="$CLASS_GRAPH"/>
<collaborationgraph visible="$COLLABORATION_GRAPH"/>
<memberdecl>
<nestedclasses visible="yes" title=""/>
<publictypes title=""/>
<services title=""/>
<interfaces title=""/>
<publicslots title=""/>
<signals title=""/>
<publicmethods title=""/>
<publicstaticmethods title=""/>
<publicattributes title=""/>
<publicstaticattributes title=""/>
<protectedtypes title=""/>
<protectedslots title=""/>
<protectedmethods title=""/>
<protectedstaticmethods title=""/>
<protectedattributes title=""/>
<protectedstaticattributes title=""/>
<packagetypes title=""/>
<packagemethods title=""/>
<packagestaticmethods title=""/>
<packageattributes title=""/>
<packagestaticattributes title=""/>
<properties title=""/>
<events title=""/>
<privatetypes title=""/>
<privateslots title=""/>
<privatemethods title=""/>
<privatestaticmethods title=""/>
<privateattributes title=""/>
<privatestaticattributes title=""/>
<friends title=""/>
<related title="" subtitle=""/>
<membergroups visible="yes"/>
</memberdecl>
<detaileddescription title=""/>
<memberdef>
<inlineclasses title=""/>
<typedefs title=""/>
<enums title=""/>
<services title=""/>
<interfaces title=""/>
<constructors title=""/>
<functions title=""/>
<related title=""/>
<variables title=""/>
<properties title=""/>
<events title=""/>
</memberdef>
<allmemberslink visible="yes"/>
<usedfiles visible="$SHOW_USED_FILES"/>
<authorsection visible="yes"/>
</class>
<!-- Layout definition for a namespace page -->
<namespace>
<briefdescription visible="yes"/>
<memberdecl>
<nestednamespaces visible="yes" title=""/>
<constantgroups visible="yes" title=""/>
<classes visible="yes" title=""/>
<typedefs title=""/>
<enums title=""/>
<functions title=""/>
<variables title=""/>
<membergroups visible="yes"/>
</memberdecl>
<detaileddescription title=""/>
<memberdef>
<inlineclasses title=""/>
<typedefs title=""/>
<enums title=""/>
<functions title=""/>
<variables title=""/>
</memberdef>
<authorsection visible="yes"/>
</namespace>
<!-- Layout definition for a file page -->
<file>
<briefdescription visible="yes"/>
<includes visible="$SHOW_INCLUDE_FILES"/>
<includegraph visible="$INCLUDE_GRAPH"/>
<includedbygraph visible="$INCLUDED_BY_GRAPH"/>
<sourcelink visible="yes"/>
<memberdecl>
<classes visible="yes" title=""/>
<namespaces visible="yes" title=""/>
<constantgroups visible="yes" title=""/>
<defines title=""/>
<typedefs title=""/>
<enums title=""/>
<functions title=""/>
<variables title=""/>
<membergroups visible="yes"/>
</memberdecl>
<detaileddescription title=""/>
<memberdef>
<inlineclasses title=""/>
<defines title=""/>
<typedefs title=""/>
<enums title=""/>
<functions title=""/>
<variables title=""/>
</memberdef>
<authorsection/>
</file>
<!-- Layout definition for a group page -->
<group>
<briefdescription visible="yes"/>
<groupgraph visible="$GROUP_GRAPHS"/>
<memberdecl>
<nestedgroups visible="yes" title=""/>
<dirs visible="yes" title=""/>
<files visible="yes" title=""/>
<namespaces visible="yes" title=""/>
<classes visible="yes" title=""/>
<defines title=""/>
<typedefs title=""/>
<enums title=""/>
<enumvalues title=""/>
<functions title=""/>
<variables title=""/>
<signals title=""/>
<publicslots title=""/>
<protectedslots title=""/>
<privateslots title=""/>
<events title=""/>
<properties title=""/>
<friends title=""/>
<membergroups visible="yes"/>
</memberdecl>
<detaileddescription title=""/>
<memberdef>
<pagedocs/>
<inlineclasses title=""/>
<defines title=""/>
<typedefs title=""/>
<enums title=""/>
<enumvalues title=""/>
<functions title=""/>
<variables title=""/>
<signals title=""/>
<publicslots title=""/>
<protectedslots title=""/>
<privateslots title=""/>
<events title=""/>
<properties title=""/>
<friends title=""/>
</memberdef>
<authorsection visible="yes"/>
</group>
<!-- Layout definition for a directory page -->
<directory>
<briefdescription visible="yes"/>
<directorygraph visible="yes"/>
<memberdecl>
<dirs visible="yes"/>
<files visible="yes"/>
</memberdecl>
<detaileddescription title=""/>
</directory>
</doxygenlayout>