1 Star 2 Fork 0

learning-limitless/DuEL-pytroch-lightning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 505 Bytes
一键复制 编辑 原始数据 按行查看 历史
fx 提交于 2020-09-10 11:06 . 代码格式优化
from duel import *
def do_duel():
set_random_seed(20200619)
# 训练实体链接模型
train_entity_linking_model('EL_BASE_EPOCH0.ckpt')
generate_link_tsv_result('EL_BASE_EPOCH0.ckpt')
# 训练实体分类模型
train_entity_typing_model('ET_BASE_EPOCH1.ckpt')
generate_type_tsv_result('ET_BASE_EPOCH1.ckpt')
# 结果查看
el_ret = pd.read_csv(DATA_PATH + "result/ET_TEST_RESULT.tsv", sep='\t')
print(el_ret.head())
if __name__ == '__main__':
do_duel()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leaning-limitless/DuEL-pytroch.git
[email protected]:leaning-limitless/DuEL-pytroch.git
leaning-limitless
DuEL-pytroch
DuEL-pytroch-lightning
master

搜索帮助