Top "Nlp" questions

Natural language processing (NLP) is a subfield of artificial intelligence that involves transforming or extracting useful information from natural language data.

Detecting syllables in a word

I need to find a fairly efficient way to detect syllables in a word. E.g., Invisible -> in-vi-sib-le …

nlp spell-checking hyphenation
How to check whether a sentence is correct (simple grammar check in Python)?

How to check whether a sentence is valid in Python? Examples: I love Stackoverflow - Correct I Stackoverflow love - …

python nlp grammar
Fuzzy string search library in Java

I'm looking for a high performance Java library for fuzzy string search. There are numerous algorithms to find similar strings, …

java nlp fuzzy-search
Sentiment Analysis Dictionaries

I was wondering if anybody knew where I could obtain dictionaries of positive and negative words. I'm looking into sentiment …

dictionary nlp sentiment-analysis
SpaCy OSError: Can't find model 'en'

even though I downloaded the model it cannot load it [jalal@goku entity-sentiment-analysis]$ which python /scratch/sjn/anaconda/bin/python […

nlp spacy
Is there a good natural language processing library

I need to implement some NLP in my current module. I am looking for some good library that can help …

java nlp
Load Pretrained glove vectors in python

I have downloaded pretrained glove vector file from the internet. It is a .txt file. I am unable to load …

python-2.7 vector nlp
gensim word2vec: Find number of words in vocabulary

After training a word2vec model using python gensim, how do you find the number of words in the model's …

python neural-network nlp gensim word2vec
How to extract common / significant phrases from a series of text entries

I have a series of text items- raw HTML from a MySQL database. I want to find the most common …

nlp text-extraction nltk text-analysis
Understanding min_df and max_df in scikit CountVectorizer

I have five text files that I input to a CountVectorizer. When specifying min_df and max_df to the …

python machine-learning scikit-learn nlp