Language detection using FastText and Spacy
Project description
spacy_fastlang
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 >= ...
Options
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.4.1.tar.gz
(782.6 kB
view hashes)
Built Distribution
spacy_fastlang-0.4.1-py3-none-any.whl
(780.2 kB
view hashes)
Close
Hashes for spacy_fastlang-0.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c838bcc555c942b099181d83df1f01992d5a7ea1ba668060acdce0c6c953b0c4 |
|
MD5 | 6052113f947f4296bbb897cdb7ebb6c5 |
|
BLAKE2b-256 | f4d0348025002178f8eacc2e0a08882e7c25261bde6810593ded6a9cf4bb5201 |