fastlid
[]
Language identification based on fasttext (lid.176.ftz https://fasttext.cc/docs/en/language-identification.html).
Python3.8, 3.9 only -- there seem to be some problems with python
The lid.176.ftz
file is licensed under Creative Commons Attribution-Share-Alike License 3.0 and is not part of this module. It is automatically downloaded from its external origin on the first run of this module.
This module attempts to immitate the follow two features of langid
- langid.classify: fastlid
- langid.set_languages(langs=[...]): fastlid.set_languages = [...]
- import fastlid
- fastlid.set_languages = ['nl','fr'])
- TODO: Commandline interface
Install it
pip install fastlid
or install from git
pip install git+https://github.com/ffreemt/fast-langid.git
or clone the git repo and install from source.
Use it
from fastlid import fastlid, supported_langs
print(supported_langs, len(supported_langs))
fastlid("test this")
fastlid("test this 测试一下", k=2)
fastlid.set_languages = ['fr', 'zh']
fastlid("test this 测试吧")
fastlid.set_languages = None
fastlid("test this 测试吧")
('en', 0.686)
fastlid.set_languages = ['fr', 'zh', 'en']
fastlid("test this 测试吧", k=3)
(['en', 'zh', 'fr'], [0.686, 0.01, 0.006])
N.B. hanzidentifier
can be used to identify simplified Chinese or/and traditional Chinese should you need to do so.
For Developers
Install poetry
and yarn
the way you like it.
poetry install
yarn install --dev
yarn test
yarn final