如何在c#中为给定的String数组实现词性标注?(How to implement Part Of Speech tagging for a given String array in c#?)

我需要一个简单的英文POS标记程序,仅在c#中实现。

i need a simple English POS tagging program to be implemented in c# only.

最满意答案

您的问题涉及自然语言处理领域。 看看这个库: SharpNLP ,你可以在这里处理一系列很好的英语。

这里是一个关于如何在NLP,它的python示例中做的事情的教程,但确定你可以将它转换为C#

另外检查.net,基本上你需要一个特定语言的字典,并调用NLP类来匹配它。

Your problem goes to the domain of Natural Language Processing. Look at this library : SharpNLP, you can process a good range of english language here.

and here is a tutorial on how to do things in NLP, its python example but sure you can convert it to C#

Also check this for .net, basically you need a dictionary for a particular language, and call the NLP classes to match against it.

更多推荐