简体   繁体   English

依赖解析

[英]Dependency parsing

I particularly like the transduce feature offered by agfl in their EP4IR http://www.agfl.cs.ru.nl/EP4IR/english.html 我特别喜欢agfl在其EP4IR中提供的转换功能http://www.agfl.cs.ru.nl/EP4IR/english.html

The download page is here: http://www.agfl.cs.ru.nl/download.html 下载页面在这里: http : //www.agfl.cs.ru.nl/download.html

Is there any way i can make use of this in ac# program? 我有什么办法可以在ac#程序中使用它? Do I need to convert classes to c#? 我需要将类转换为C#吗?

Thanks :) 谢谢 :)

If you're set on using EP4IR, I think the question boils down to: how can you call non-.NET C++ code in C#. 如果您准备使用EP4IR,我认为问题可以归结为:如何在C#中调用非.NET C ++代码。 From a prior stack overflow thread , it looks like there are a few ways to do this, including using P/Invoke or writing a C++.NET wrapper around the non-.NET code you want to call. 从先前的堆栈溢出线程看来,有几种方法可以做到这一点,包括使用P / Invoke或围绕要调用的非.NET代码编写C ++。NET包装器。 C++.NET was specifically designed to make it easy to call legacy non-.NET code. C ++。NET经过专门设计,可以轻松调用旧版非.NET代码。

If you are willing to try out other dependency representations, you might want to take a look at Antelope . 如果您愿意尝试其他依赖项表示,则可能需要看看Antelope It's a rather complete .NET based natural language processing toolkit. 这是一个相当完整的基于.NET的自然语言处理工具包。 It'll allow you to use both the Link parser ( demo ) and the Stanford Parser ( demo ). 它允许您同时使用Link解析器demo )和Stanford Parserdemo )。 Both of these will give you a reasonably good typed dependency representation for a sentence. 两者都将为您提供一个很好的类型化句子依存关系表示形式。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM