方法是加入常用词词典或完螫词典
通过宇符串与词典中单词
匹配的个数,最终选中正确的一个结果或缩小正确的结果为2到几句
子,减少人工干预,实现计算机智能选择正确结果。
字符串和词典中的数如何匹配
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
CSDN专家-HGJ 2022-04-07 14:22关注简单示例:
d={'hi','hello','world','have','a','nice','day'} s=['this is a nice day','hello world','this is a test','hi,this is a nice day'] import jieba res={} for st in s: w=jieba.cut(st) m=len(set(w)&d) res[st]=m od=sorted(res.items(),key=lambda x:x[1],reverse=True) print('results:\n',od[0],'freq is:',round(od[0][1]/len(d),2),'\n',od[1],'freq is:',round(od[1][1]/len(d),2))results: ('hi,this is a nice day', 4) freq is: 0.57 ('this is a nice day', 3) freq is: 0.43本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录