views:

574

answers:

3

Does there exist something equivalent to Natural Language Toolkit in c# like Python

+1  A: 

Doesn't seem very active anymore but SharpNLP might be a start.

Jurgen
A: 

You could also try boo, http://boo.codehaus.org/ this will compile python into c#.net bytecode so you can use the NLTK modules as a lib in C#

JERiv
Not really. Boo is a very different language than Python, and has pretty substantially diverged from the language from which it was inspired. But IronPython might help.
JasonTrue
IronPython may be an option
Tinku
I'm fairly certain that IronPython won't work either since NTLK requires NumPy which is a C module and not compatible with IronPython.
Jay Stevens
+2  A: 

Try Antelope from Proxem.

whybird