Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c/c++ NLP library [closed]

I am looking for an open source Natural Language Processing library for c/c++ and especially i am interested in Part of speech tagging.

like image 570
Ayoub M. Avatar asked Nov 26 '09 18:11

Ayoub M.


People also ask

Which is the correct library for NLP?

The Natural Language Toolkit, or NLTK, is one of the premier libraries for developing Natural Language Processing (NLP) models, making it an excellent choice for sentiment analysis.

Which Python library is used for NLP?

PyNLPl Python library for NLP contains modules for both standard and less common NLP tasks. Its use case ranges from basic functions like extracting n-grams and frequency lists to building simple language models. In addition, PyNLPl comes with an entire library for working with FoLiA XML.

What is NLP in Python?

Natural language processing (NLP) is a field that focuses on making natural human language usable by computer programs. NLTK, or Natural Language Toolkit, is a Python package that you can use for NLP. A lot of the data that you could be analyzing is unstructured data and contains human-readable text.


1 Answers

Take a look at this POS Tagger list from Stanford. Some of them are language independent and others are targeted at C/C++ or have specific bindings.
Not present on that list, but still important in my opinion is Citar, a C++ free software part of speech tagger using a trigram Hidden Markov Model.

like image 92
luvieere Avatar answered Oct 02 '22 02:10

luvieere