33
44class FrameworkIndependentParameters (FrameworkParameters ):
55 def __init__ (self , inference_framework , batch_size , device , iterarion_count , test_time_limit ,
6- timeout_overhead , custom_models_links = None , raw_output = True , num_gpu_devices = None ):
6+ timeout_overhead , custom_models_links = None , raw_output = True , num_gpu_devices = None ,
7+ python_path = 'python3' ):
78 self .inference_framework = None
89 self .batch_size = None
910 self .device = None
@@ -12,6 +13,7 @@ def __init__(self, inference_framework, batch_size, device, iterarion_count, tes
1213 self .test_time_limit = None
1314 self .custom_models_links = custom_models_links
1415 self .raw_output = raw_output
16+ self .python_path = 'python3'
1517 if self ._parameter_is_not_none (inference_framework ):
1618 self .inference_framework = inference_framework
1719 else :
@@ -43,3 +45,4 @@ def __init__(self, inference_framework, batch_size, device, iterarion_count, tes
4345 else :
4446 default_timeout_overhead = 300
4547 self .timeout_overhead = default_timeout_overhead
48+ self .python_path = python_path
0 commit comments