All Projects → explosion → Spacy Lookups Data

explosion / Spacy Lookups Data

Licence: mit
📂 Additional lookup tables and data resources for spaCy

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Spacy Lookups Data

Prodigy Recipes
🍳 Recipes for the Prodigy, our fully scriptable annotation tool
Stars: ✭ 229 (+377.08%)
Mutual labels:  natural-language-processing, spacy
Adam qas
ADAM - A Question Answering System. Inspired from IBM Watson
Stars: ✭ 330 (+587.5%)
Mutual labels:  natural-language-processing, spacy
Spacy Services
💫 REST microservices for various spaCy-related tasks
Stars: ✭ 230 (+379.17%)
Mutual labels:  natural-language-processing, spacy
Thinc
🔮 A refreshing functional take on deep learning, compatible with your favorite libraries
Stars: ✭ 2,422 (+4945.83%)
Mutual labels:  natural-language-processing, spacy
Spacy
💫 Industrial-strength Natural Language Processing (NLP) in Python
Stars: ✭ 21,978 (+45687.5%)
Mutual labels:  natural-language-processing, spacy
Spacy Lookup
Named Entity Recognition based on dictionaries
Stars: ✭ 212 (+341.67%)
Mutual labels:  natural-language-processing, spacy
Displacy
💥 displaCy.js: An open-source NLP visualiser for the modern web
Stars: ✭ 311 (+547.92%)
Mutual labels:  natural-language-processing, spacy
Spacymoji
💙 Emoji handling and meta data for spaCy with custom extension attributes
Stars: ✭ 151 (+214.58%)
Mutual labels:  natural-language-processing, spacy
Projects
🪐 End-to-end NLP workflows from prototype to production
Stars: ✭ 397 (+727.08%)
Mutual labels:  natural-language-processing, spacy
Nlp Python Deep Learning
NLP in Python with Deep Learning
Stars: ✭ 374 (+679.17%)
Mutual labels:  natural-language-processing, spacy
Displacy Ent
💥 displaCy-ent.js: An open-source named entity visualiser for the modern web
Stars: ✭ 191 (+297.92%)
Mutual labels:  natural-language-processing, spacy
Spacy Models
💫 Models for the spaCy Natural Language Processing (NLP) library
Stars: ✭ 796 (+1558.33%)
Mutual labels:  natural-language-processing, spacy
Cookiecutter Spacy Fastapi
Cookiecutter API for creating Custom Skills for Azure Search using Python and Docker
Stars: ✭ 179 (+272.92%)
Mutual labels:  natural-language-processing, spacy
Spacy Api Docker
spaCy REST API, wrapped in a Docker container.
Stars: ✭ 222 (+362.5%)
Mutual labels:  natural-language-processing, spacy
Cleannlp
R package providing annotators and a normalized data model for natural language processing
Stars: ✭ 174 (+262.5%)
Mutual labels:  natural-language-processing, spacy
Medacy
🏥 Medical Text Mining and Information Extraction with spaCy
Stars: ✭ 287 (+497.92%)
Mutual labels:  natural-language-processing, spacy
Practical Machine Learning With Python
Master the essential skills needed to recognize and solve complex real-world problems with Machine Learning and Deep Learning by leveraging the highly popular Python Machine Learning Eco-system.
Stars: ✭ 1,868 (+3791.67%)
Mutual labels:  natural-language-processing, spacy
Spacy Course
👩‍🏫 Advanced NLP with spaCy: A free online course
Stars: ✭ 1,920 (+3900%)
Mutual labels:  natural-language-processing, spacy
Spacy Streamlit
👑 spaCy building blocks and visualizers for Streamlit apps
Stars: ✭ 360 (+650%)
Mutual labels:  natural-language-processing, spacy
Spacy Stanza
💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy
Stars: ✭ 508 (+958.33%)
Mutual labels:  natural-language-processing, spacy

spaCy lookups data

This repository contains additional data files to be used with spaCy v2.2+. When it's installed in the same environment as spaCy, this package makes the resources for each language available as an entry point, which spaCy checks when setting up the Vocab and Lookups.

Feel free to submit pull requests to update the data. For issues related to the data, lookups and integration, please use the spaCy issue tracker.

Azure Pipelines Current Release Version pypi Version conda Version

FAQ

Why does this exist?

The main purpose of this package is to make the default spaCy installation smaller and not force every user to download large data files for all languages by default. Lookups data is now either provided via the pre-trained models (which serialize out their vocabulary and lookup tables) or by explicitly installing this package or spacy[lookups].

When should I install this?

You should install this package if you want to use lemmatization for languages that don't yet have a pretrained model available for download and don't rely on third-party libraries for lemmatization – for example, Turkish, Swedish or Croatian (see data files).

If you are training new models with spaCy, you should probably install this, since it contains lemmatization and normalization data for 25+ languages that is no longer included as part of the main spaCy library. In particular, you should install it if you're creating a blank model and you want it to include lemmatization and normalization data. Once you've saved out the model (e.g. via nlp.disk), it will include the lookup tables as part of its Vocab.

Is this package only for lemmatization?

This package used to only be for lemmatization, but it has been extended to include normalization data for many languages. As of v0.3.1 it also includes optional probability and Brown cluster data that used to be distributed with provided models in spaCy v2.2 but is no longer included in spaCy v2.3. In the future it may include other lookup lists and tables as well, e.g. large tokenizer exception files.

Running tests

This package now also includes all data-specific tests. The test suite depends on spaCy.

pip install -r requirements.txt
python -m pytest spacy_lookups_data

If you've installed the package in your spaCy environment, you can also run the tests like this:

python -m pytest --pyargs spacy_lookups_data
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].