Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Natural Language Processing in Windows 8

Tags:

c#

windows-8

nlp

I'm a newbie to windows 8 programming, C# and NLP.

I'm looking for a library that allows me to use NLP in windows 8.

I found SharpNLP but it is very poorly documented with no tutorials. I've also come across the Antelope framework but this seems to have even worse documentation.

Is there any resource that'll help me (either tutorials or a better documented framework)?

like image 287
cjds Avatar asked Dec 23 '12 13:12

cjds


People also ask

What is natural language processing class 8?

Natural language processing definition Natural language processing (NLP) is the branch of artificial intelligence (AI) that deals with training a computer to understand, process, and generate language. Search engines, machine translation services, and voice assistants are all powered by the technology.

What is natural language processing in computer?

Natural language processing (NLP) refers to the branch of computer science—and more specifically, the branch of artificial intelligence or AI—concerned with giving computers the ability to understand text and spoken words in much the same way human beings can.

How do I start with natural language processing?

Implement a spell checker based on edit distances between words. Implement a Markov chain text generator. Implement a topic model using latent Dirichlet allocation (LDA) Use word2vec to generate word embeddings from a large text corpus, e.g. Wikipedia.

What is an example of natural language processing?

Email filters. Email filters are one of the most basic and initial applications of NLP online. It started out with spam filters, uncovering certain words or phrases that signal a spam message.


1 Answers

SharpNLP looks fine. It's the port of the OpenNLP, so you can probably just read the OpenNLP's documentation. There is also Lucene.Net (a .Net version of Lucene) It's a search engine and (I guess) should have some NLP inside. I'm not entirely sure though.

like image 145
Ark-kun Avatar answered Sep 22 '22 05:09

Ark-kun