#language #nlp

bin+lib whichlang

A blazingly fast and lightweight language detection library for Rust

1 unstable release

0.1.0 May 10, 2023

#211 in Internationalization (i18n)

Download history 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 710/week @ 2024-10-29 870/week @ 2024-11-05 727/week @ 2024-11-12 746/week @ 2024-11-19 792/week @ 2024-11-26 565/week @ 2024-12-03 562/week @ 2024-12-10 593/week @ 2024-12-17 294/week @ 2024-12-24 392/week @ 2024-12-31 373/week @ 2025-01-07

1,783 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