spaCy icon indicating copy to clipboard operation
spaCy copied to clipboard

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

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

## Which page or section is this issue related to? https://spacy.io/usage/projects#project-yml Maybe it's just me, but I couldn't understand how to use `env` section in project.yml. Documentation says: > A...

docs
projects

Although it is expected that [spacy-transformers](https://github.com/explosion/spacy-transformers) should be installed when creating a GPU-based config, the command itself won't exit gracefully. ## How to reproduce the behaviour ```sh python3 -m venv...

gpu
feat / ux

## Description If you have entities on a Doc, and filter the list to remove some entities, and then set the list of entities, `ent_id` and `ent_kb_id` values are not...

bug
feat / doc
🔜 v4.0

Updated Underscore class to properly handle extension values for `Spans` with equal boundaries. Resolves issue https://github.com/explosion/spaCy/issues/9706 ## Description The change actually looks reasonably neat. Nothing changed for `Doc` or `Token`....

bug
enhancement
feat / doc
🔜 v4.0

## Description This is a large refactor of the parsing model, started by @honnibal. The refactor turns the paring model into a more canonical Thinc model. As a result, GPU...

enhancement
gpu
feat / parser
🔜 v4.0

This thread is a master thread for collecting problems and reports related to incorrect and/or problematic predictions of the pre-trained models. ## Why a master thread instead of separate issues?...

models
perf / accuracy

## How to reproduce the behaviour As suggested on this page (https://spacy.io/models) I can replace the "parser" by the "senter" as a more efficient way to detect sentence boundaries. I...

feat / doc

Hi spaCy developers, This is my first open-source contribution, so please let me know if there are things I could have done better. ## How to reproduce the behavior Given...

bug
feat / cli
feat / ux

The first thing that I found is the experimental biaffine parser can parse sentences with multiple roots. (I thought about the reporting of this situation as an issue, but dependency...

feat / doc
experimental

## How to reproduce the behaviour Try to import/loading `SubClass` in this example. ```python from dataclasses import dataclass from spacy import Language @dataclass class SuperClass: nlp: Language name: str @Language.factory("dummy")...

feat / pipeline