@@ -114,7 +114,7 @@ def test_otx_resume(self, template, tmp_dir_path):
114114 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
115115 @pytest .mark .parametrize ("dump_features" , [True , False ])
116116 def test_otx_export (self , template , tmp_dir_path , dump_features ):
117- if template .name == "deit-tiny " and dump_features :
117+ if template .name == "DeiT-Tiny " and dump_features :
118118 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
119119 tmp_dir_path = tmp_dir_path / "multi_class_cls"
120120 otx_export_testing (template , tmp_dir_path , dump_features , check_ir_meta = True )
@@ -140,47 +140,47 @@ def test_otx_eval(self, template, tmp_dir_path):
140140 @e2e_pytest_component
141141 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
142142 def test_otx_explain (self , template , tmp_dir_path ):
143- if template .name == "deit-tiny " :
143+ if template .name == "DeiT-Tiny " :
144144 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
145145 tmp_dir_path = tmp_dir_path / "multi_class_cls"
146146 otx_explain_testing (template , tmp_dir_path , otx_dir , args )
147147
148148 @e2e_pytest_component
149149 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
150150 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
151- if template .name == "deit-tiny " :
151+ if template .name == "DeiT-Tiny " :
152152 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
153153 tmp_dir_path = tmp_dir_path / "multi_class_cls"
154154 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args )
155155
156156 @e2e_pytest_component
157157 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
158158 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
159- if template .name == "deit-tiny " :
159+ if template .name == "DeiT-Tiny " :
160160 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
161161 tmp_dir_path = tmp_dir_path / "multi_class_cls"
162162 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args )
163163
164164 @e2e_pytest_component
165165 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
166166 def test_otx_explain_openvino (self , template , tmp_dir_path ):
167- if template .name == "deit-tiny " :
167+ if template .name == "DeiT-Tiny " :
168168 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
169169 tmp_dir_path = tmp_dir_path / "multi_class_cls"
170170 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args )
171171
172172 @e2e_pytest_component
173173 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
174174 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
175- if template .name == "deit-tiny " :
175+ if template .name == "DeiT-Tiny " :
176176 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
177177 tmp_dir_path = tmp_dir_path / "multi_class_cls"
178178 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args )
179179
180180 @e2e_pytest_component
181181 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
182182 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
183- if template .name == "deit-tiny " :
183+ if template .name == "DeiT-Tiny " :
184184 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
185185 tmp_dir_path = tmp_dir_path / "multi_class_cls"
186186 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args )
@@ -346,47 +346,47 @@ def test_otx_eval(self, template, tmp_dir_path):
346346 @e2e_pytest_component
347347 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
348348 def test_otx_explain (self , template , tmp_dir_path ):
349- if template .name == "deit-tiny " :
349+ if template .name == "DeiT-Tiny " :
350350 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
351351 tmp_dir_path = tmp_dir_path / "multi_label_cls"
352352 otx_explain_testing (template , tmp_dir_path , otx_dir , args_m )
353353
354354 @e2e_pytest_component
355355 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
356356 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
357- if template .name == "deit-tiny " :
357+ if template .name == "DeiT-Tiny " :
358358 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
359359 tmp_dir_path = tmp_dir_path / "multi_label_cls"
360360 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args_m )
361361
362362 @e2e_pytest_component
363363 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
364364 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
365- if template .name == "deit-tiny " :
365+ if template .name == "DeiT-Tiny " :
366366 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
367367 tmp_dir_path = tmp_dir_path / "multi_label_cls"
368368 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args_m )
369369
370370 @e2e_pytest_component
371371 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
372372 def test_otx_explain_openvino (self , template , tmp_dir_path ):
373- if template .name == "deit-tiny " :
373+ if template .name == "DeiT-Tiny " :
374374 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
375375 tmp_dir_path = tmp_dir_path / "multi_label_cls"
376376 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
377377
378378 @e2e_pytest_component
379379 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
380380 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
381- if template .name == "deit-tiny " :
381+ if template .name == "DeiT-Tiny " :
382382 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
383383 tmp_dir_path = tmp_dir_path / "multi_label_cls"
384384 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
385385
386386 @e2e_pytest_component
387387 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
388388 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
389- if template .name == "deit-tiny " :
389+ if template .name == "DeiT-Tiny " :
390390 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
391391 tmp_dir_path = tmp_dir_path / "multi_label_cls"
392392 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args_m )
@@ -474,47 +474,47 @@ def test_otx_eval(self, template, tmp_dir_path):
474474 @e2e_pytest_component
475475 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
476476 def test_otx_explain (self , template , tmp_dir_path ):
477- if template .name == "deit-tiny " :
477+ if template .name == "DeiT-Tiny " :
478478 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
479479 tmp_dir_path = tmp_dir_path / "h_label_cls"
480480 otx_explain_testing (template , tmp_dir_path , otx_dir , args_h )
481481
482482 @e2e_pytest_component
483483 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
484484 def test_otx_explain_all_classes (self , template , tmp_dir_path ):
485- if template .name == "deit-tiny " :
485+ if template .name == "DeiT-Tiny " :
486486 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
487487 tmp_dir_path = tmp_dir_path / "h_label_cls"
488488 otx_explain_testing_all_classes (template , tmp_dir_path , otx_dir , args_h )
489489
490490 @e2e_pytest_component
491491 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
492492 def test_otx_explain_process_saliency_maps (self , template , tmp_dir_path ):
493- if template .name == "deit-tiny " :
493+ if template .name == "DeiT-Tiny " :
494494 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
495495 tmp_dir_path = tmp_dir_path / "h_label_cls"
496496 otx_explain_testing_process_saliency_maps (template , tmp_dir_path , otx_dir , args_h )
497497
498498 @e2e_pytest_component
499499 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
500500 def test_otx_explain_openvino (self , template , tmp_dir_path ):
501- if template .name == "deit-tiny " :
501+ if template .name == "DeiT-Tiny " :
502502 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
503503 tmp_dir_path = tmp_dir_path / "h_label_cls"
504504 otx_explain_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
505505
506506 @e2e_pytest_component
507507 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
508508 def test_otx_explain_all_classes_openvino (self , template , tmp_dir_path ):
509- if template .name == "deit-tiny " :
509+ if template .name == "DeiT-Tiny " :
510510 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
511511 tmp_dir_path = tmp_dir_path / "h_label_cls"
512512 otx_explain_all_classes_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
513513
514514 @e2e_pytest_component
515515 @pytest .mark .parametrize ("template" , default_templates , ids = default_templates_ids )
516516 def test_otx_explain_process_saliency_maps_openvino (self , template , tmp_dir_path ):
517- if template .name == "deit-tiny " :
517+ if template .name == "DeiT-Tiny " :
518518 pytest .skip (reason = "Issue#2098 ViT inference does not work by FeatureVectorHook." )
519519 tmp_dir_path = tmp_dir_path / "h_label_cls"
520520 otx_explain_process_saliency_maps_openvino_testing (template , tmp_dir_path , otx_dir , args_h )
0 commit comments