1 Star 0 Fork 0

黄世杰/REINVENT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
multiprocess.py 379 Bytes
一键复制 编辑 原始数据 按行查看 历史
Marcus 提交于 2017-10-18 17:07 . Made multiprocessing more robust.
#!/usr/bin/env python
import importlib
import sys
scoring_function = sys.argv[1]
func = getattr(importlib.import_module("scoring_functions"), scoring_function)()
while True:
smile = sys.stdin.readline().rstrip()
try:
score = float(func(smile))
except:
score = 0.0
sys.stdout.write(" ".join([smile, str(score), "\n"]))
sys.stdout.flush()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huang_shijie/REINVENT.git
git@gitee.com:huang_shijie/REINVENT.git
huang_shijie
REINVENT
REINVENT
master

搜索帮助