OpenNLP 无法识别“2009 年 1 月 10 日”格式的日期吗?

发布于 2024-10-12 10:13:37 字数 202 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的呼吸 2024-10-19 10:13:37

有关日期查找和格式的说明,请参阅此较新的帖子 效果很好。它讨论了在周围标记的上下文中识别日期的模型,因为它是一个统计模型。

对于上面的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文