spaCy icon indicating copy to clipboard operation
spaCy copied to clipboard

💫 Industrial-strength Natural Language Processing (NLP) in Python

Results 321 spaCy issues
Sort by recently updated
recently updated
newest added

## How to reproduce the behaviour EntityRuler is run as in example from docs here https://spacy.io/usage/rule-based-matching#entityruler-ent-ids Suppose someone has a series of pipeline components that run after some entities are...

bug
feat / doc

## Description This will add three visualisations of information from parsed documents: - a table with rows for consecutive tokens in the document; columns are feature values and/or dependency trees...

enhancement
⚠️ wip
feat / visualizers

## The problem I am training a sentence classification model using a transformer and a pipeline that is based on the default config. I am doing it on the custom...

gpu
perf / memory
feat / transformer

## How to reproduce the behaviour import spacy nlp = spacy.load('de') s1 = 'Der schöne Garten' doc = nlp(s1) [(t, t.lemma_) for t in doc] >> [(Der, 'der'), (schöne, 'schöne'),...

enhancement
lang / de
help wanted (easy)
feat / lemmatizer

## How to reproduce the behaviour I'm trying to train a text classifier and at the first try I always got `OverflowError: Invalid Nan value when encoding double`. Turns out...

feat / serialize

## How to reproduce the behaviour ``` cfg = {"model": DEFAULT_NER_MODEL} model = registry.resolve(cfg, validate=True)["model"] ner = EntityRecognizer(nlp.vocab, model) ner.initialize(lambda: [], nlp=nlp) ``` The error I get: ``` TypeError: [E930]...

docs
feat / ner

EntityRecognizer throws IndexError when used in pipeline with Transformer and custom span getter during training: ``` File "/home/---/---/research_spacy_ru/.venv/lib/python3.8/site-packages/spacy/language.py", line 1122, in update proc.update(examples, sgd=None, losses=losses, **component_cfg[name]) File "spacy/pipeline/transition_parser.pyx", line 416,...

feat / ner
feat / transformer

## Problem I am working with a two-level NER taxonomy, where I store the first one in `Span.label_` attribute, and the second one in an extension `Span._.type`. I have annotations...

bug
duplicate
feat / doc

I'm trying to perform relationship extraction between named entities where the named entities span multiple tokens. I've chosen not to merge the entities as that screws up the dependency parsing....

feat / doc

Version: spaCy 3.2. The lemma for the word "substantially" is "you" for some reason: ``` >>> import spacy >>> nlp = spacy.load("en_core_web_lg") >>> doc=nlp("The opportunity may not be huge for...

bug
lang / en
models