ysc / QuestionAnsweringSystem

QuestionAnsweringSystem是一个Java实现的人机问答系统,能够自动分析问题并给出候选答案。
Apache License 2.0
1.96k stars 1.3k forks source link

BigramEvidenceScore评分规则问题 #16

Closed zhaopcprayer closed 8 years ago

zhaopcprayer commented 8 years ago

Tools.countsForBigram中,index > 0才计入评分,那开头一致的不算匹配成功。 比如question是姚明的女儿是谁,evidence中title是姚明的女儿叫姚沁蕾,匹配只能匹配到“的女儿”,而不会将“姚明的”计入评分,这是出于何种考虑?

ysc commented 8 years ago

You are totally right, this is a bug, I have fixed it. Thank you very much.