language detection of the English and Hebrew (only Romanized, - Hebrew script language detection is trivial)
import fasttext as ft
model = ft.load_model("model_lang_detection.bin")
model.predict("tachles")
#(('__label__he',), array([0.92569]))
- Downloads last month
- 4