提交 6d714b8f 编写于 作者: M malin10

bug fix for python3

上级 922776b6
...@@ -228,7 +228,7 @@ def data_split(args): ...@@ -228,7 +228,7 @@ def data_split(args):
contents.extend(f.readlines()) contents.extend(f.readlines())
num = int(args.file_nums) num = int(args.file_nums)
lines_per_file = len(contents) / num lines_per_file = int(math.ceil(len(contents) / float(num)))
print("contents: ", str(len(contents))) print("contents: ", str(len(contents)))
print("lines_per_file: ", str(lines_per_file)) print("lines_per_file: ", str(lines_per_file))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册