如何制作国际 Soundex?
例如,Soundex 算法针对英语进行了优化。 是否有一种更通用的算法可以适用于大型语言家族?
E.g. the Soundex algorithm is optimized for English. Is there a more universal algorithm that would apply across large families of languages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SOUNDEX确实是面向英语的。 另外两个考虑到更广泛的语音差异的是:Double Metaphone 和 NYSIIS。
它们将编码生成到比 SOUNDEX 更大的可能空间中。 具体来说,双变音位包括缩减,其明确目的是处理基于比英语更多的语言的替代发音。
我最近做了一个关于模糊字符串匹配的演示, 幻灯片可能会有所帮助。
SOUNDEX is indeed English-oriented. Two others that take a wider variety of phonetic differences into account are: Double Metaphone and NYSIIS.
They produce encodings into a much larger possible space than SOUNDEX does. Double Metaphone, specifically, includes reductions with the express purpose of handling alternate pronunciations based on more languages than English.
I did a presentation on fuzzy string matching recently, the slides may be helpful.