如何在Java中组合英语单词?
假设我有一个单词的基本形式和一个来自 宾夕法尼亚树库标签集。如何获得共轭形式?例如,对于“do”和“VBN”,我怎样才能“完成”?
我认为这个任务已经在一些 nlp 库中实现了,所以我宁愿不发明自行车。存在这样的东西吗?
Say I have a base form of a word and a tag from the Penn Treebank Tag Set. How can I get the conjugated form? For example for "do" and "VBN" how can I get "done"?
I thinks this task is already implemented in some nlp library, so I'd rather not invent the bicycle. Does something like that exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有一个类:
那么:
如果您没有 Treebank 类,它可能看起来有点像这样:
更好的解决方案可能涉及数据库而不是数据文件。我还将数据访问代码重构为数据访问对象。
If you have a class:
Then:
If you don't have the Treebank class it might look a bit like this:
A better solution might involve a database instead of a data file. I would also refactor the data access code into a Data Access Object.
您想要在这里做的是创建一个保存答案的稀疏数组,可通过术语本身作为一个键进行索引,并通过 PTTS 代码(CC、TO、VBD)作为另一个键进行索引。
What you want to do here is create a sparse array holding the answers, indexable via the term itself as one key, and the PTTS-code (CC, TO, VBD) as the other key.