第三章3.4预测 用户词典集成问题

3.4预测里面提到了用户词典集成,请问这里的用户词典是指pyhanlp自带的词典吗?具体是哪一部呢?还是我们做项目的时候也能自己加载新的词典呢?谢谢!
另外Python版本的词典集成分词结果也和书上不符合,检查了代码,不知道原因是如何?谢谢了!!

from pyhanlp import *
print(HanLP.Config.CoreDictionaryPath)
print(HanLP.Config.CustomDictionaryPath)

pyhanlp/static/data/dictionary/CoreNatureDictionary.txt
('pyhanlp/static/data/dictionary/custom/CustomDictionary.txt', 'pyhanlp/static/data/dictionary/custom/现代汉语补充词库.txt', 'pyhanlp/static/data/dictionary/custom/全国地名大全.txt ns', 'pyhanlp/static/data/dictionary/custom/人名词典.txt', 'pyhanlp/static/data/dictionary/custom/机构名词典.txt', 'pyhanlp/static/data/dictionary/custom/上海地名.txt ns', 'pyhanlp/static/data/dictionary/person/nrf.txt nrf')
不挂载词典: [社会/n, 摇摆/v, 简称/v, 社会/n, 摇/v]
低优先级词典: [社会/n, 摇摆/v, 简称/v, 社会摇/nz]
高优先级词典: [社会摇/nz, 摆/v, 简称/v, 社会摇/nz]

多读文档错不了。

1 Like

谢谢!!!会认真看文档的!!嗯!