Top "Spacy" questions

Industrial strength Natural Language Processing (NLP) with Python and Cython

How to generate bi/tri-grams using spacy/nltk

The input text are always list of dish names where there are 1~3 adjectives and a noun Inputs thai iced tea …

python nlp nltk n-gram spacy
SpaCy: how to load Google news word2vec vectors?

I've tried several methods of loading the google news word2vec vectors (https://code.google.com/archive/p/word2vec/): …

python nlp word2vec spacy
Applying Spacy Parser to Pandas DataFrame w/ Multiprocessing

Say I have a dataset, like iris = pd.DataFrame(sns.load_dataset('iris')) I can use Spacy and .apply to …

python nlp multiprocessing spacy
Spacy, Strange similarity between two sentences

I have downloaded en_core_web_lg model and trying to find similarity between two sentences: nlp = spacy.load('en_…

python nlp spacy
Named entity recognition in Spacy

I am trying to find Named entities for a sentence as below import spacy.lang.en parser = spacy.lang.en.…

python named-entity-recognition spacy
Spacy nlp = spacy.load("en_core_web_lg")

I already have spaCy downloaded, but everytime I try the nlp = spacy.load("en_core_web_lg"), command, I get …

python nlp spacy
Evaluation in a Spacy NER model

I am trying to evaluate a trained NER Model created using spacy lib. Normally for these kind of problems you …

python spacy
Sentence Segmentation using Spacy

I am new to Spacy and NLP. Facing the below issue while doing sentence segmentation using Spacy. The text I …

nlp tokenize spacy sentence
Unable to load the spacy model 'en_core_web_lg' on Google colab

I am using spacy in google colab to build an NER model for which I have downloaded the spaCy 'en_…

python nlp google-colaboratory spacy
Tokenizing using Pandas and spaCy

I'm working on my first Python project and have reasonably large dataset (10's of thousands of rows). I need to …

python python-3.x pandas tokenize spacy