Code Monkey home page Code Monkey logo

lande's Introduction

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 layer is used here, as I think it's 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-3 Name
afr Afrikaans
ara Arabic
aze Azerbaijani
bel Belarusian
ben Bengali
bul Bulgarian
cat Catalan
ces Czech
ckb Kurdish
cmn Mandarin
dan Danish
deu German
ell Greek
eng English
est Estonian
eus Basque
fin Finnish
fra French
hau Hausa
heb Hebrew
hin Hindi
hrv Croatian
hun Hungarian
hye Armenian
ind Indonesian
isl Icelandic
ita Italian
jpn Japanese
kat Georgian
kaz Kazakh
kor Korean
lit Lithuanian
mar Marathi
mkd Macedonian
nld Dutch
nob Norwegian
pes Persian
pol Polish
por Portuguese
ron Romanian
run Rundi
rus Russian
slk Slovak
spa Spanish
srp Serbian
swe Swedish
tgl Tagalog
tur Turkish
ukr Ukrainian
vie Vietnamese

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

lande's People

Contributors

fabiospampinato avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

lande's Issues

It detects german when it's an english phrase

Hi,
Thanks for the work and effort you have done in this library. It is really fast and good.

I have a single case that it is a english phrase, but it says that its german, and wondered why it happens.

The phrase is "Hello my name is Elliot Morales."

And the results (with other lang detection libraries):

------------------
FRANC [https://github.com/wooorm/franc]
Franc:  spa
franc: 1.989ms
------------------
LANGDETECT [https://github.com/newmsz/node-language-detection]
langDetect:  en
langdetect: 2.783ms
------------------
LANGID [https://github.com/saffsd/langid.js/blob/master/langid.js]
langid:  [ 'english', 0.20344444444444443 ]
langid: 0.705ms
------------------
LANDE [https://github.com/fabiospampinato/lande]
lande [
  [ 'deu', 0.4394915699958801 ],
  [ 'spa', 0.048020560294389725 ],
  [ 'ita', 8.118258278955182e-7 ],
  [ 'fra', 5.123906632320541e-9 ],
  [ 'rus', 2.275385657668494e-9 ],
  [ 'eng', 3.964176487070148e-10 ],
  [ 'por', 1.8133326437630437e-11 ]
]
lande: 9.436ms

We are now switching from franc to lande, but this case its the only one that lande misses (franc is failing too).
The other libraries don't have better results with other phrases and words our app uses, but lande does the right job

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.