1 Star 0 Fork 1

songt/ChineseBLUE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
split.py 392 Bytes
一键复制 编辑 原始数据 按行查看 历史
凌羽 提交于 2019-12-20 12:11 . add
import random
import sys
def train_test_split(infile, test_rate=0.9):
with open(sys.argv[2], 'w') as f_train, \
open(sys.argv[3], 'w') as f_test:
for line in open(infile):
if random.random() > test_rate:
f_train.write(line)
else:
f_test.write(line)
if __name__ == '__main__':
train_test_split(sys.argv[1])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/songting/ChineseBLUE.git
git@gitee.com:songting/ChineseBLUE.git
songting
ChineseBLUE
ChineseBLUE
master

搜索帮助