现成的歧视性重新排名软件
是否存在用于区分性重新排名的现有软件,例如 Charniak NLP 解析器、Shen、Sarkar 和 Och 的解析器 或 Shen 和 Joshi 的技术?我想要一些可以轻松适应自己用途的东西,类似于解析重新排名。
Is there existing software for discriminative reranking, such as that used by the Charniak NLP parser, Shen, Sarkar, and Och's parser or Shen and Joshi's techniques? I'd like something that I can easily adapt for my own uses, which are similar to parse reranking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Charniak-Johnson 重新排名
Charniak-Johnson 的源代码(CJ) 重新排名解析器是免费提供的,您可以在此处下载副本。
重新排序器是一个单独的代码模块,它将 n 个最佳解析列表作为输入,因此将其与解析前端分离很简单。
SVM-rank
或者,包 SVM- rank 来自康奈尔大学托尔斯滕·约阿希姆 (Thorsten Joachim) 的实验室,是一个通用排序器。如果您想要做的事情与 Charniak-Johnson 解析器正在做的事情有很大偏差,那么使用这个包可能会更容易。
Charniak-Johnson Reranking
The source code for the Charniak-Johnson (CJ) reranking parser is freely available, you can download a copy here.
The reranker is a separate code module that takes as input n-best lists of parses, so it's trivial to decouple it from the parsing front end.
SVM-rank
Alternatively, the package SVM-rank, from Thorsten Joachim's lab at Cornell, is a general purpose ranker. It might be easier to go with this package, if what you want to do deviates significantly from what's being done by the Charniak-Johnson parser.