language-id / README.md
davidmezzetti's picture
Update README
616ca55
|
raw
history blame
804 Bytes
metadata
tags:
  - text-classification
  - language-identification
inference: false
license: cc-by-sa-3.0
language: multilingual
library_name: staticvectors

Language Detection with StaticVectors

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.

Usage with StaticVectors

from staticvectors import StaticVectors

model = StaticVectors("neuml/language-id")
model.predict(["What language is this text?"])