提交 91ae1a42 编写于 作者: P pennypm 提交者: wuzewu

modify contrib infer count (#7)

* modify contrib/infer.py count
上级 8729cd69
...@@ -84,7 +84,7 @@ def infer(): ...@@ -84,7 +84,7 @@ def infer():
test_dataset = TestDataSet() test_dataset = TestDataSet()
data_num = test_dataset.data_num data_num = test_dataset.data_num
for idx in range(1, data_num + 1): for idx in range(data_num):
# 数据获取 # 数据获取
ori_img, image, im_name, im_shape = test_dataset.get_data(idx) ori_img, image, im_name, im_shape = test_dataset.get_data(idx)
if image is None: if image is None:
...@@ -118,10 +118,10 @@ def infer(): ...@@ -118,10 +118,10 @@ def infer():
output_im.putpalette(palette) output_im.putpalette(palette)
output_im.save(result_path) output_im.save(result_path)
if idx % 100 == 0: if (idx + 1) % 100 == 0:
print('%d processd' % (idx)) print('%d processd' % (idx + 1))
print('%d processd done' % (idx)) print('%d processd done' % (idx + 1))
return 0 return 0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册