Skip to content

Commit d643bde

Browse files
authored
AC: fix criteo converter (#3530)
1 parent 9af5099 commit d643bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/annotation_converters/criteo_kaggle_dac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ def convert(self, check_content=False, **kwargs):
154154
for i in range(int(start), int(samples)):
155155
c_input = input_folder / "{:02d}".format(subfolder)
156156
c_input = c_input / "{:06d}.npz".format(i)
157+
x_int, x_cat, y = self.get_data(i)
157158

158159
if self.save_preprocessed_features:
159-
x_int, x_cat, y = self.get_data(i)
160160
if not c_input.parent.exists():
161161
c_input.parent.mkdir(parents=True)
162162

0 commit comments

Comments
 (0)