OpenNLP 无法识别“2009 年 1 月 10 日”格式的日期吗?
OpenNLP(Java 中)无法识别“2010 年 1 月 10 日”或“2010 年 1 月 10 日”格式的日期。在使用 OpenNLP 分词器之前,我将文本中的所有 ', 替换为空字符串“”,并且它对于“2010 年 1 月 10 日”形式的日期效果很好。所以,我尝试用“,”替换“th,”,但没有成功。我们如何确保上述表格的日期与 OpenNLP 一致?
提前致谢
OpenNLP(in Java) is unable to identify dates of the format "January 10th, 2010" or "January 10, 2010". I replaced all ','s in the text with an empty string "" before using OpenNLP tokenizer and it works fine for dates of the form "January 10, 2010". So, I tried to replace "th," with ",", but it did not work. How can we make sure that the dates of the above forms are identified with OpenNLP?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关日期查找和格式的说明,请参阅此较新的帖子 效果很好。它讨论了在周围标记的上下文中识别日期的模型,因为它是一个统计模型。
对于上面的 th 情况,正如注释所说,如果您想同时替换 th 和 the ,那么您必须应用两个替换,或者更好的是用空字符串对 th 进行一次替换。
For an explanation of date finding and format, this newer post works well. It talks about the models recognizing dates within the context of the tokens around it since it is a statistical model.
For the th case above, as the comment says if you want to replace both the th and the , then you have to apply both replaces, or better yet do a single replace of th, with empty string.