@@ -124,8 +124,6 @@ def test_otx_resume(self, template, tmp_dir_path):
124124 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
125125 @pytest .mark .parametrize ("dump_features" , [True , False ])
126126 def test_otx_export (self , template , tmp_dir_path , dump_features ):
127- if template .name == "DeiT-Tiny" and dump_features :
128- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
129127 tmp_dir_path = tmp_dir_path / "multi_class_cls"
130128 otx_export_testing (template , tmp_dir_path , dump_features , check_ir_meta = True )
131129
@@ -150,48 +148,36 @@ def test_otx_eval(self, template, tmp_dir_path):
150148 @e2e_pytest_component
151149 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
152150 def test_otx_explain (self , template , tmp_dir_path ):
153- if template .name == "DeiT-Tiny" :
154- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
155151 tmp_dir_path = tmp_dir_path / "multi_class_cls"
156152 otx_explain_testing (template , tmp_dir_path , otx_dir , args )
157153
158154 @e2e_pytest_component
159155 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
160156 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
161- if template .name == "DeiT-Tiny" :
162- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
163157 tmp_dir_path = tmp_dir_path / "multi_class_cls"
164158 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args )
165159
166160 @e2e_pytest_component
167161 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
168162 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
169- if template .name == "DeiT-Tiny" :
170- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
171163 tmp_dir_path = tmp_dir_path / "multi_class_cls"
172164 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args )
173165
174166 @e2e_pytest_component
175167 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
176168 def test_otx_explain_openvino (self , template , tmp_dir_path ):
177- if template .name == "DeiT-Tiny" :
178- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
179169 tmp_dir_path = tmp_dir_path / "multi_class_cls"
180170 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args )
181171
182172 @e2e_pytest_component
183173 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
184174 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
185- if template .name == "DeiT-Tiny" :
186- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
187175 tmp_dir_path = tmp_dir_path / "multi_class_cls"
188176 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args )
189177
190178 @e2e_pytest_component
191179 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
192180 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
193- if template .name == "DeiT-Tiny" :
194- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
195181 tmp_dir_path = tmp_dir_path / "multi_class_cls"
196182 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args )
197183
@@ -365,48 +351,36 @@ def test_otx_eval(self, template, tmp_dir_path):
365351 @e2e_pytest_component
366352 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
367353 def test_otx_explain (self , template , tmp_dir_path ):
368- if template .name == "DeiT-Tiny" :
369- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
370354 tmp_dir_path = tmp_dir_path / "multi_label_cls"
371355 otx_explain_testing (template , tmp_dir_path , otx_dir , args_m )
372356
373357 @e2e_pytest_component
374358 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
375359 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
376- if template .name == "DeiT-Tiny" :
377- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
378360 tmp_dir_path = tmp_dir_path / "multi_label_cls"
379361 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args_m )
380362
381363 @e2e_pytest_component
382364 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
383365 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
384- if template .name == "DeiT-Tiny" :
385- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
386366 tmp_dir_path = tmp_dir_path / "multi_label_cls"
387367 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args_m )
388368
389369 @e2e_pytest_component
390370 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
391371 def test_otx_explain_openvino (self , template , tmp_dir_path ):
392- if template .name == "DeiT-Tiny" :
393- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
394372 tmp_dir_path = tmp_dir_path / "multi_label_cls"
395373 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
396374
397375 @e2e_pytest_component
398376 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
399377 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
400- if template .name == "DeiT-Tiny" :
401- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
402378 tmp_dir_path = tmp_dir_path / "multi_label_cls"
403379 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
404380
405381 @e2e_pytest_component
406382 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
407383 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
408- if template .name == "DeiT-Tiny" :
409- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
410384 tmp_dir_path = tmp_dir_path / "multi_label_cls"
411385 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
412386
@@ -502,48 +476,36 @@ def test_otx_eval(self, template, tmp_dir_path):
502476 @e2e_pytest_component
503477 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
504478 def test_otx_explain (self , template , tmp_dir_path ):
505- if template .name == "DeiT-Tiny" :
506- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
507479 tmp_dir_path = tmp_dir_path / "h_label_cls"
508480 otx_explain_testing (template , tmp_dir_path , otx_dir , args_h )
509481
510482 @e2e_pytest_component
511483 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
512484 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
513- if template .name == "DeiT-Tiny" :
514- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
515485 tmp_dir_path = tmp_dir_path / "h_label_cls"
516486 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args_h )
517487
518488 @e2e_pytest_component
519489 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
520490 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
521- if template .name == "DeiT-Tiny" :
522- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
523491 tmp_dir_path = tmp_dir_path / "h_label_cls"
524492 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args_h )
525493
526494 @e2e_pytest_component
527495 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
528496 def test_otx_explain_openvino (self , template , tmp_dir_path ):
529- if template .name == "DeiT-Tiny" :
530- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
531497 tmp_dir_path = tmp_dir_path / "h_label_cls"
532498 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
533499
534500 @e2e_pytest_component
535501 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
536502 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
537- if template .name == "DeiT-Tiny" :
538- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
539503 tmp_dir_path = tmp_dir_path / "h_label_cls"
540504 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
541505
542506 @e2e_pytest_component
543507 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
544508 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
545- if template .name == "DeiT-Tiny" :
546- pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
547509 tmp_dir_path = tmp_dir_path / "h_label_cls"
548510 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
549511
0 commit comments