#language #nlp

bin+lib whichlang

A blazingly fast and lightweight language detection library for Rust

1 unstable release

0.1.0 May 10, 2023

#197 in Internationalization (i18n)

Download history 488/week @ 2024-07-23 712/week @ 2024-07-30 591/week @ 2024-08-06 584/week @ 2024-08-13 552/week @ 2024-08-20 594/week @ 2024-08-27 646/week @ 2024-09-03 446/week @ 2024-09-10 473/week @ 2024-09-17 711/week @ 2024-09-24 519/week @ 2024-10-01 568/week @ 2024-10-08 730/week @ 2024-10-15 868/week @ 2024-10-22 711/week @ 2024-10-29 862/week @ 2024-11-05

3,244 downloads per month
Used in 3 crates

MIT license

745KB
4.5K SLoC

Whichlang

This is a language detection library, aiming for both precision and performance.

Features

  • No dependency
  • Throughput above 100 MB/s for short and long strings.
  • Good accuracy (99.5% on my validation dataset, but it really depends on the size of your input.)

How does it work?

It uses a multiclass logistic regression model over:

  • 2, 3, 4-grams of letters on ASCII
  • codepoint / 128
  • a slightly smarter projection of codepoints over a given class.

We use the hashing trick and project these features over a space of size 4_096.

The logistic regression is trained in the python notebook attached, and used to generate weight.rs.

No runtime deps