stanfordnpl安装以及对英文数据进行标注 命名实体识别
Posted Coding With you.....
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stanfordnpl安装以及对英文数据进行标注 命名实体识别相关的知识,希望对你有一定的参考价值。
1.安装
点击网址https://stanfordnlp.github.io/CoreNLP/下载如图压缩包
然后下拉点击如图进行下载jar包
最后将压缩包解压后,将下载的jar包放入解压的文件夹中
2.在命令行安装:pip install stanfordcorenlp
3.使用,结果如下图
>>> from stanfordcorenlp import StanfordCoreNLP
>>> nlp = StanfordCoreNLP(r'E:\\mycode\\jiaqi_shiyan\\stanford-corenlp-4.2.2', lang='en')
>>> sentence = 'The development and application of artificial intelligence has brought convenience to human life.'
>>> print(nlp.word_tokenize(sentence))
4.疑问:这里命名实体识别好像没有正确的标注
以上是关于stanfordnpl安装以及对英文数据进行标注 命名实体识别的主要内容,如果未能解决你的问题,请参考以下文章
stanfordnpl安装以及对英文数据进行标注 命名实体识别
brat进行英文数据集的标注-实战(标注后编写成BIO格式便于模型训练)