Socket
Socket
Sign inDemoInstall

lande

Package Overview
Dependencies
1
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

lande

A tiny neural network for natural language detection.


Version published
Maintainers
1
Weekly downloads
1,744
increased by11.51%

Weekly downloads

Readme

Source

Lande

A tiny neural network for natural language detection.

This model is trained with data from the Tatoeba project, so it works well on short inputs too.

Model

Architecture

Architecture:

  • A very simple fully connected neural network with 1 hidden layer is trained, with character ngrams as input, and supported languages as output.

Details:

  1. Character ngrams, at length 1, 2, 3, and 4, are extracted from the input string, with the assumption that with this data it should be possible to tell apart natural languages fairly reliably, if the input string is long enough.
  2. Only a fixed number of the most frequent ngrams of supported languages are considered, which are extracted and stored during training, as they carry the most amount of signal overall, and the rest are simply discarded.
  3. Compared to CLD3 ngrams are not hashed, as I think that kinda unpredictably confuses the model, as now different ngrams can have the same hash, so unimportant ngrams could be confused for important ones. Also that requires allocating a somewhat large key space for the hashes, while instead we want to be parsimonious with that, if we only need to remember 100 1-grams that's what we should be allocating memory for, but a small key space would get quickly crowded with colliding hashes, making it somewhat useless.
  4. Compared to CLD3 no embedding layers are used here, as I think they are not needed with this approach because the model is being given clearer signals, since each input always corresponds to a specific ngram.
  5. The value of each input neuron is the normalized frequency of the ngram corresponding to that neuron in the input string. Basically we tell the network if each supported ngram is present and how frequent it is.
  6. To make a prediction the frequency of each supported input ngram is calculated, and a forward pass is performed.

Languages

The following 50 languages are supported.

If you want to experiment you can tweak some internal constants and add more languages, remove languages (which necessarily improves accuracy for the remaining ones), tweak hyper-parameters for the neural network etc.

ISO 639-3Name
afrAfrikaans
araArabic
azeAzerbaijani
belBelarusian
benBengali
bulBulgarian
catCatalan
cesCzech
ckbKurdish
cmnMandarin
danDanish
deuGerman
ellGreek
engEnglish
estEstonian
eusBasque
finFinnish
fraFrench
hauHausa
hebHebrew
hinHindi
hrvCroatian
hunHungarian
hyeArmenian
indIndonesian
islIcelandic
itaItalian
jpnJapanese
katGeorgian
kazKazakh
korKorean
litLithuanian
marMarathi
mkdMacedonian
nldDutch
nobNorwegian
pesPersian
polPolish
porPortuguese
ronRomanian
runRundi
rusRussian
slkSlovak
spaSpanish
srpSerbian
sweSwedish
tglTagalog
turTurkish
ukrUkrainian
vieVietnamese

Install

npm install --save lande

Usage

The library exports a single function which gives you a sorted list of detected languages and their probabilities.

import lande from 'lande';

lande ( 'What language is this sentence written in?' ); // => [['eng', 0.9999921321868896], ['deu', 0.000002357382982154377], ['heb', 0.000001461773877053929], ...]
lande ( 'In che lingua è scritta questa frase?' ); // => [['ita', 0.9999935626983643], ['ell', 0.0000025603442281862954], ['vie', 0.000002114558583343751], ...]

License

MIT © Fabio Spampinato

Keywords

FAQs

Last updated on 20 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc