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 Add a PyTorchWrapper component to a language pipeline and then do this: ``` nlp.to_disk("something") nlp2 = spacy.load("something") ``` Motivating case is covered in https://github.com/explosion/spaCy/discussions/8291....

bug
🔮 thinc
feat / serialize
feat / transformer

Currently there's a default background color for entities in [displacy](https://github.com/explosion/spaCy/blob/master/spacy/displacy/render.py#L13) It would be nice to be able to provide with a different default color. It seems like a pretty easy...

enhancement
feat / visualizers

I am trying to continue training an NER model. I have done this in spaCy 3.0.6 in the past numerous times, but after coming back to do it again, I...

bug
training

Getting OOM while inferencing documents using the spacy Transformer model. The GPU memory is not getting free up when doc object get created.

gpu
perf / memory
feat / transformer

## How to reproduce the behaviour When prioritizing vectors to keep, `Vocab.prune_vectors` doesn't handle existing duplicates from `key2row` well. By sorting/prioritizing by values from `key2row`, which may contain duplicate values,...

bug
feat / vectors

## How to reproduce the behaviour I was planning to have a look at the [example projects](https://github.com/explosion/projects/blob/v3/pipelines/tagger_parser_ud/project.yml) and quickly found that these are very Linux oriented. The commands are all...

enhancement
help wanted
compat
projects

## How to reproduce the behaviour I cannot reproduce the same results when training a NER model using GPU in Google Colab. When running the same code with CPU it...

bug
gpu
feat / ner
reproducibility

## Feature description The [Matcher](https://spacy.io/api/matcher) supports `!`, `?`, `+`, and `*` [operators and quantifiers](https://spacy.io/usage/rule-based-matching#quantifiers). I have text where it would be useful to have something like the regex lookaround patterns,...

enhancement
help wanted
feat / matcher

Hi. Here is an issue I'm getting using some French pipelines (fr_core_news_lg or fr_dep_news_trf). As you can see it works in some cases but fetches the wrong lemma in some...

help wanted
lang / fr
feat / lemmatizer
perf / accuracy

## How to reproduce the behaviour ### With SpaCy 3.0.0: ``` nlp = spacy.load("en_core_web_trf") # same result with en_core_web_lg doc = nlp("Can't go to school") print([(token.text, token.lemma_) for token in...

lang / en
feat / lemmatizer
🔜 v3.1