are there any c# libraries for Named Entity Recogn

2019-04-07 18:45发布

I am looking for any free libraries for Named Entity Recognition in c# or any other .net language.

标签: c# dll nlp
3条回答
▲ chillily
2楼-- · 2019-04-07 18:59

If you just need to extract entities from text, you could try Open Calais from Thomson Reuters. It's free for up to 40K api calls/per day, and has worked well for me in the past. (I've been using it 2x/day for ~6 months without a hitch.)

They provide wrappers in various languages (for making api calls) and you can get the response in a few different formats as well.

Here's the link:

http://www.opencalais.com/

(I'm afraid I only know of NER libraries in Java and Python.)

查看更多
家丑人穷心不美
3楼-- · 2019-04-07 19:01

SharpNLP, a port of the Java based OpenNLP, supports named entity tagging.

查看更多
仙女界的扛把子
4楼-- · 2019-04-07 19:06

There are a couple of Java implementations at universities (like this one), but no commercial version I am aware of.

The code for university versions is available, and with some effort could probably be ported to .NET.

查看更多
登录 后发表回答