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

## Description This PR adds the language alias for Haitian Creole (`ht`/`hat`), whose support was added in #13807. Also replace lists with sets to optimize membership testing. ### Types of...

@honnibal ## Description The `Vocab.length` counter is incremented when adding lexemes but is never decremented when `memory_zone` clears transient lexemes. This causes `len(nlp.vocab)` to grow continuously even though the actual...

## Background I noticed a fairly concrete pattern in spans that I was trying to categorize using Spancat, so built a custom suggester function based on POS tags and noun...

I use `uv` without pip, so I get the following: ``` (venv) PS C:\Users\me\> python -m spacy download en_core_web_sm C:\Users\me\.venv\Scripts\python.exe: No module named pip ``` I don't think you need...

In the german version of spaCy 101 Chapter 3, Section 6 ("Simple Components" / "Einfache Komponenten") doesn't accept the correct answer. Steps to reproduce: 1. Open Course Chapter 3 (german...

The Entity Ruler doesn't recognize a literal value as regex. The sample value is an italian fiscal code. Changing the last letter from K to another one, e.g., V, will...

## Summary - Fixed 3 instances of "compatability" → "compatibility" in developer documentation files - Improves spelling consistency across the codebase - No functional changes, documentation improvements only ## Files...

## How to reproduce the behaviour 1. Build and run spacy @ 3.8.7 with spacy-models @ 3.8.0 (the latest available) 2. Observe that `test_registry_entries` fails with missing models. ```sh >...

## What was wrong `apiDetails.baseClass` in [website/pages/[...listPathPage].tsx](cci:7://file:///c:/Users/T2430514/Downloads/spaCy/website/pages/%5B...listPathPage%5D.tsx:0:0-0:0) was hard-coded to `null`, ignoring the `api_base_class` and `api_base_class_title` values provided in page front-matter. As a result, API reference pages could not render...

## Description Change the factory string for the EntityLinker to "llm_entitylinker" from "llm_entity_linker" so that it works, as per https://github.com/explosion/spacy-llm/blob/main/spacy_llm/tasks/__init__.py#L33. This appears to be the only place it is documented....