Language Detection
Collection
StaticVectors models to detect language. Exports of FastText that run in NumPy without needing FastText
•
2 items
•
Updated
•
3
This model is an export of this FastText Language Identification model for staticvectors
. staticvectors
enables running inference Python with NumPy, helping it maintain solid runtime performance.
Language detection is an important task and identification with n-gram models is an efficient and highly accurate way to do it.
from staticvectors import StaticVectors
model = StaticVectors("NeuML/language-id")
model.predict(["What language is this text?"])