Skip to content

Commit 63da995

Browse files
authored
AC: fix migration on latest numpy converter issue (#3523)
1 parent 45ac520 commit 63da995

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
@@ -151,7 +151,7 @@ def convert(self, check_content=False, **kwargs):
151151
elif self.validation:
152152
start = samples // 2
153153

154-
for i in range(start, samples):
154+
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)
157157

0 commit comments

Comments
 (0)