Ruby on Rails 的词干库/插件
在 Ruby 中寻找 stemming 库,它允许我创建如下映射:
maps_to["dogs"] = "dog"
maps_to["puppies"] = "dog"
maps_to["doggies"] = "dog"
etc
Looking for a stemming library in Ruby which will allow me to create such mappings as:
maps_to["dogs"] = "dog"
maps_to["puppies"] = "dog"
maps_to["doggies"] = "dog"
etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个: https://rubygems.org/gems/stemmer4r/
词干提取可能无法正常工作大多数人认为词干提取是有效的。
Try this : https://rubygems.org/gems/stemmer4r/
Stemming may not work the way most people think stemming works though.