Skip to content Skip to sidebar Skip to footer
Showing posts with the label Spacy

Spacy, Matcher With Entities Spanning More Than A Single Token

I am trying to create a matcher that finds negated custom entities in the text. It is working fine … Read more Spacy, Matcher With Entities Spanning More Than A Single Token

Converting Word Vectors (from Fasttext) To Use In Spacy Fails

I generated word vectors with fastText and wanted to convert them to use in a spaCy model (for Germ… Read more Converting Word Vectors (from Fasttext) To Use In Spacy Fails

Spacy -- Importerror: Preshed.maps Does Not Export Expected C Function Map_clear

I am trying to import spacy in vain. >>> import spacy Traceback (most recent call last): … Read more Spacy -- Importerror: Preshed.maps Does Not Export Expected C Function Map_clear

Problem To Extract Ner Subject + Verb With Spacy And Matcher

I work on an NLP project and i have to use spacy and spacy Matcher to extract all named entities wh… Read more Problem To Extract Ner Subject + Verb With Spacy And Matcher

Loading The Spacy German Language Model Into A Jupyter Notebook

This is the cell in notebook: #%% !python -m spacy download de_core_news_sm spacy_en = spacy.load(… Read more Loading The Spacy German Language Model Into A Jupyter Notebook

Azure Python Deployment - Spacy Nomodule Found Exception

I'm using Linux App Service. I'm trying to deploy python 3.6 flask application through the … Read more Azure Python Deployment - Spacy Nomodule Found Exception

Proper Way To Add New Vectors For Oov Words

I'm using some domain-specific language which have a lot of OOV words as well as some typos. I … Read more Proper Way To Add New Vectors For Oov Words

How To Check If Detailed Info For A Question Is Provided Or Not In A Word Document?

I have few questions and elaborated context related to those questions in a .DOCX document. I need … Read more How To Check If Detailed Info For A Question Is Provided Or Not In A Word Document?

Add Multiple EntityRuler With SpaCy (ValueError: 'entity_ruler' Already Exists In Pipeline)

The following link shows how to add custom entity rule where the entities span more than one token.… Read more Add Multiple EntityRuler With SpaCy (ValueError: 'entity_ruler' Already Exists In Pipeline)