Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

are there any c# libraries for Named Entity Recognition? [closed]

Tags:

c#

dll

nlp

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

like image 739
Tasawer Khan Avatar asked Apr 06 '10 19:04

Tasawer Khan


2 Answers

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.)

like image 54
jamesi Avatar answered Sep 18 '22 11:09

jamesi


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

like image 36
dmcer Avatar answered Sep 21 '22 11:09

dmcer