如何搭建自己的微信小程序商城并销售产品(微信商城小程序开发教程)
786
2022-05-25
首先需要下载:stanford-parser
网盘链接:网盘链接
提取码:x9wz
如果需要最新版可以去官网下载:https://nlp.stanford.edu/software/lex-parser.shtml
解压之后会发现并没有englishPCFG.ser.gz这个文件。
不要着急,englishPCFG.ser.gz这个文件其实就在stanford-parser-3.6.0-models.jar文件中,可以将其解压出来。
使用方法:
from nltk.parse.stanford import StanfordParser stanford_parser_dir = r'E:\tools\stanfordNLTK\stanford-parser-full-2015-12-09' eng_model_path = "edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz" my_path_to_models_jar = stanford_parser_dir + "\stanford-parser-3.6.0-models.jar" my_path_to_jar = stanford_parser_dir + "\stanford-parser.jar" parser = StanfordParser(model_path=eng_model_path, path_to_models_jar=my_path_to_models_jar, path_to_jar=my_path_to_jar) print(list(parser.parse("the quick brown fox jumps over the lazy dog".split())))
1
2
3
4
5
6
7
8
9
10
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。