Language detection using FastText and Spacy
Project description
spacy-language
Install
Assuming you have a working python environment, you can simply install it using
pip install spacy_fastlang
Usage
The library exports a pipeline component called LanguageDetector
that will set two spacy extensions
- doc._.language = ISO code of the detected language or
xx
as a fallback - doc._.language_score = confidence
from spacy_fastlang import LanguageDetector
nlp = spacy.load("...")
nlp.add_pipe(LanguageDetector())
doc = nlp(en_text)
doc._.language == "..."
doc._.language_score >= ...
Check the tests to see more examples and available options
License
Everythin is under MIT
except the default model which is distributed under Creative Commons Attribution-Share-Alike License 3.0 by facebook here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spacy_fastlang-0.2.0.tar.gz
(782.4 kB
view hashes)
Built Distribution
spacy_fastlang-0.2.0-py3-none-any.whl
(780.0 kB
view hashes)
Close
Hashes for spacy_fastlang-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c853c98bb0e50e91152ba29c17abb5ebef541c84a4d7197b3455bc02558de5b |
|
MD5 | 00985ea72f1772e33feec0b4d2a0474f |
|
BLAKE2b-256 | d1ec56a2b4c14225930941af0eee2debc5ccce22323d0bf240856953449ebdb2 |