We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0283008 commit 4d3fc84Copy full SHA for 4d3fc84
tools/accuracy_checker/openvino/tools/accuracy_checker/annotation_converters/criteo_kaggle_dac.py
@@ -64,7 +64,8 @@ def configure(self):
64
self.src = self.get_value_from_config('testing_file')
65
self.binary = self.get_value_from_config('binary')
66
self.batch = int(self.get_value_from_config('batch'))
67
- self.max_ind_range = int(self.get_value_from_config('max_ind_range'))
+ max_ind_range = self.get_value_from_config('max_ind_range')
68
+ self.max_ind_range = int(max_ind_range) if max_ind_range is not None else max_ind_range
69
self.subsample = int(self.get_value_from_config('subsample_size'))
70
self.validation = self.get_value_from_config('validation')
71
self.block = self.get_value_from_config('block')
0 commit comments