Table of Contents
- What does this library do?
- Why does this library exist?
- Which languages are supported?
- How good is it?
- Why is it better than other libraries?
- Test report generation
- How to add it to your project?
- How to build?
- How to use?
- What's next for version 1.1.0?
- Contributions
1. What does this library do? Top ▲
Its task is simple: It tells you which language some provided textual data is written in.
This is very useful as a preprocessing step for linguistic data in natural language
processing applications such as text classification and spell checking.
Other use cases, for instance, might include routing e-mails to the right geographically
located customer service department, based on the e-mails' languages.
2. Why does this library exist? Top ▲
Language detection is often done as part of large machine learning frameworks or natural
language processing applications. In cases where you don't need the full-fledged
functionality of those systems or don't want to learn the ropes of those,
a small flexible library comes in handy.
So far, the only other comprehensive open source library in the Go ecosystem for
this task is Whatlanggo.
Unfortunately, it has two major drawbacks:
- Detection only works with quite lengthy text fragments. For very short text snippets
such as Twitter messages, it does not provide adequate results.
- The more languages take part in the decision process, the less accurate are the
detection results.
Lingua aims at eliminating these problems. It nearly does not need any configuration and
yields pretty accurate results on both long and short text, even on single words and phrases.
It draws on both rule-based and statistical methods but does not use any dictionaries of words.
It does not need a connection to any external API or service either.
Once the library has been downloaded, it can be used completely offline.
3. Which languages are supported? Top ▲
Compared to other language detection libraries, Lingua's focus is on quality over quantity, that is,
getting detection right for a small set of languages first before adding new ones.
Currently, the following 75 languages are supported:
- A
- Afrikaans
- Albanian
- Arabic
- Armenian
- Azerbaijani
- B
- Basque
- Belarusian
- Bengali
- Norwegian Bokmal
- Bosnian
- Bulgarian
- C
- Catalan
- Chinese
- Croatian
- Czech
- D
- E
- F
- G
- Ganda
- Georgian
- German
- Greek
- Gujarati
- H
- I
- Icelandic
- Indonesian
- Irish
- Italian
- J
- K
- L
- M
- Macedonian
- Malay
- Maori
- Marathi
- Mongolian
- N
- P
- Persian
- Polish
- Portuguese
- Punjabi
- R
- S
- Serbian
- Shona
- Slovak
- Slovene
- Somali
- Sotho
- Spanish
- Swahili
- Swedish
- T
- Tagalog
- Tamil
- Telugu
- Thai
- Tsonga
- Tswana
- Turkish
- U
- V
- W
- X
- Y
- Z
4. How good is it? Top ▲
Lingua is able to report accuracy statistics for some bundled test data available for each
supported language. The test data for each language is split into three parts:
- a list of single words with a minimum length of 5 characters
- a list of word pairs with a minimum length of 10 characters
- a list of complete grammatical sentences of various lengths
Both the language models and the test data have been created from separate documents of the
Wortschatz corpora offered by Leipzig University, Germany.
Data crawled from various news websites have been used for training, each corpus comprising one
million sentences. For testing, corpora made of arbitrarily chosen websites have been used,
each comprising ten thousand sentences. From each test corpus, a random unsorted subset of
1000 single words, 1000 word pairs and 1000 sentences has been extracted, respectively.
Given the generated test data, I have compared the detection results of Lingua and Whatlanggo
running over the data of Lingua's supported 75 languages. Languages that are not supported
by Whatlanggo are simply ignored during the detection process.
The box plot below shows the distribution of the averaged accuracy values for all three performed tasks:
Single word detection, word pair detection and sentence detection. Lingua clearly outperforms its contender.
Bar plots for each language and further box plots for the separate detection tasks can be found in the file
ACCURACY_PLOTS.md.
Detailed statistics including mean, median and standard deviation values for each language and classifier are
available in the file
ACCURACY_TABLE.md.
5. Why is it better than other libraries? Top ▲
Every language detector uses a probabilistic n-gram model trained on the
character distribution in some training corpus. Most libraries only use n-grams of size 3 (trigrams) which is
satisfactory for detecting the language of longer text fragments consisting of multiple sentences. For short
phrases or single words, however, trigrams are not enough. The shorter the input text is, the less n-grams are
available. The probabilities estimated from such few n-grams are not reliable. This is why Lingua makes use
of n-grams of sizes 1 up to 5 which results in much more accurate prediction of the correct language.
A second important difference is that Lingua does not only use such a statistical model, but also a rule-based
engine. This engine first determines the alphabet of the input text and searches for characters which are unique
in one or more languages. If exactly one language can be reliably chosen this way, the statistical model is not
necessary anymore. In any case, the rule-based engine filters out languages that do not satisfy the conditions
of the input text. Only then, in a second step, the probabilistic n-gram model is taken into consideration.
This makes sense because loading less language models means less memory consumption and better runtime performance.
In general, it is always a good idea to restrict the set of languages to be considered in the classification process
using the respective api methods. If you know beforehand that certain languages are
never to occur in an input text, do not let those take part in the classifcation process. The filtering mechanism
of the rule-based engine is quite good, however, filtering based on your own knowledge of the input text is always preferable.
6. Test report generation Top ▲
If you want to reproduce the accuracy results above, you can generate the test reports yourself for both classifiers
and all languages by doing:
go run cmd/accuracy_reporter.go
For each detector and language, a test report file is then written into
/accuracy-reports
.
As an example, here is the current output of the Lingua German report:
##### German #####
>>> Accuracy on average: 89.13%
>> Detection of 1000 single words (average length: 9 chars)
Accuracy: 73.90%
Erroneously classified as Dutch: 2.30%, Danish: 2.10%, English: 2.00%, Latin: 1.90%, Bokmal: 1.60%, Basque: 1.20%, French: 1.20%, Italian: 1.20%, Esperanto: 1.10%, Swedish: 1.00%, Afrikaans: 0.80%, Tsonga: 0.70%, Nynorsk: 0.60%, Portuguese: 0.60%, Yoruba: 0.60%, Finnish: 0.50%, Sotho: 0.50%, Welsh: 0.50%, Estonian: 0.40%, Irish: 0.40%, Polish: 0.40%, Spanish: 0.40%, Swahili: 0.40%, Tswana: 0.40%, Bosnian: 0.30%, Icelandic: 0.30%, Tagalog: 0.30%, Albanian: 0.20%, Catalan: 0.20%, Croatian: 0.20%, Indonesian: 0.20%, Lithuanian: 0.20%, Maori: 0.20%, Romanian: 0.20%, Xhosa: 0.20%, Zulu: 0.20%, Latvian: 0.10%, Malay: 0.10%, Slovak: 0.10%, Slovene: 0.10%, Somali: 0.10%, Turkish: 0.10%
>> Detection of 1000 word pairs (average length: 18 chars)
Accuracy: 93.80%
Erroneously classified as Dutch: 0.90%, Latin: 0.80%, English: 0.70%, Swedish: 0.60%, Danish: 0.50%, French: 0.40%, Bokmal: 0.30%, Irish: 0.20%, Tagalog: 0.20%, Tsonga: 0.20%, Afrikaans: 0.10%, Esperanto: 0.10%, Estonian: 0.10%, Finnish: 0.10%, Italian: 0.10%, Maori: 0.10%, Nynorsk: 0.10%, Portuguese: 0.10%, Somali: 0.10%, Swahili: 0.10%, Turkish: 0.10%, Welsh: 0.10%, Xhosa: 0.10%, Zulu: 0.10%
>> Detection of 1000 sentences (average length: 111 chars)
Accuracy: 99.70%
Erroneously classified as Dutch: 0.20%, Latin: 0.10%
7. How to add it to your project? Top ▲
go get github.com/pemistahl/lingua-go@v1.0.0
8. How to build? Top ▲
Lingua requires Go version 1.16.
git clone https://github.com/pemistahl/lingua-go.git
cd lingua-go
go build
The source code is accompanied by an extensive unit test suite. To run them, simply say:
go test
9. How to use? Top ▲
9.1 Basic usage
package main
import (
"fmt"
"github.com/pemistahl/lingua-go"
)
func main() {
languages := []lingua.Language{
lingua.English,
lingua.French,
lingua.German,
lingua.Spanish,
}
detector := lingua.NewLanguageDetectorBuilder().
FromLanguages(languages...).
Build()
if language, exists := detector.DetectLanguageOf("languages are awesome"); exists {
fmt.Println(language)
}
}
9.2 Minimum relative distance
By default, Lingua returns the most likely language for a given input text. However, there are
certain words that are spelled the same in more than one language. The word prologue, for
instance, is both a valid English and French word. Lingua would output either English or
French which might be wrong in the given context. For cases like that, it is possible to
specify a minimum relative distance that the logarithmized and summed up probabilities for
each possible language have to satisfy. It can be stated in the following way:
package main
import (
"fmt"
"github.com/pemistahl/lingua-go"
)
func main() {
languages := []lingua.Language{
lingua.English,
lingua.French,
lingua.German,
lingua.Spanish,
}
detector := lingua.NewLanguageDetectorBuilder().
FromLanguages(languages...).
WithMinimumRelativeDistance(0.25).
Build()
language, exists := detector.DetectLanguageOf("languages are awesome")
fmt.Println(language)
fmt.Println(exists)
}
Be aware that the distance between the language probabilities is dependent on the length of the
input text. The longer the input text, the larger the distance between the languages. So if you
want to classify very short text phrases, do not set the minimum relative distance too high.
Otherwise Unknown
will be
returned most of the time as in the example above. This is the return value for cases where
language detection is not reliably possible.
9.3 Confidence values
Knowing about the most likely language is nice but how reliable is the computed likelihood?
And how less likely are the other examined languages in comparison to the most likely one?
These questions can be answered as well:
package main
import (
"fmt"
"github.com/pemistahl/lingua-go"
)
func main() {
languages := []lingua.Language{
lingua.English,
lingua.French,
lingua.German,
lingua.Spanish,
}
detector := lingua.NewLanguageDetectorBuilder().
FromLanguages(languages...).
Build()
confidenceValues := detector.ComputeLanguageConfidenceValues("languages are awesome")
for _, elem := range confidenceValues {
fmt.Printf("%s: %.2f\n", elem.Language(), elem.Value())
}
}
In the example above, a slice of
ConfidenceValue
is returned containing all possible languages sorted by their confidence value in descending
order. The values that this method computes are part of a relative confidence metric, not of
an absolute one. Each value is a number between 0.0 and 1.0. The most likely language is always
returned with value 1.0. All other languages get values assigned which are lower than 1.0,
denoting how less likely those languages are in comparison to the most likely language.
The slice returned by this method does not necessarily contain all languages which the calling
instance of LanguageDetector
was built from. If the rule-based engine decides that a specific
language is truly impossible, then it will not be part of the returned slice. Likewise, if no
ngram probabilities can be found within the detector's languages for the given input text, the
returned slice will be empty. The confidence value for each language not being part of the returned
slice is assumed to be 0.0.
9.4 Eager loading versus lazy loading
By default, Lingua uses lazy-loading to load only those language models on demand which are
considered relevant by the rule-based filter engine. For web services, for instance, it is
rather beneficial to preload all language models into memory to avoid unexpected latency while
waiting for the service response. If you want to enable the eager-loading mode, you can do it
like this:
lingua.NewLanguageDetectorBuilder().
FromAllLanguages().
WithPreloadedLanguageModels().
Build()
Multiple instances of LanguageDetector
share the same language models in memory which are
accessed asynchronously by the instances.
9.5 Methods to build the LanguageDetector
There might be classification tasks where you know beforehand that your language data is
definitely not written in Latin, for instance (what a surprise :-). The detection accuracy can
become better in such cases if you exclude certain languages from the decision process or just
explicitly include relevant languages:
lingua.NewLanguageDetectorBuilder().FromAllLanguages()
lingua.NewLanguageDetectorBuilder().FromAllSpokenLanguages()
lingua.NewLanguageDetectorBuilder().FromAllLanguagesWithCyrillicScript()
lingua.NewLanguageDetectorBuilder().FromAllLanguagesWithout(lingua.Spanish)
lingua.NewLanguageDetectorBuilder().FromLanguages(lingua.English, lingua.German)
lingua.NewLanguageDetectorBuilder().FromIsoCodes639_1(lingua.EN, lingua.DE)
lingua.NewLanguageDetectorBuilder().FromIsoCodes639_3(lingua.ENG, lingua.DEU)
10. What's next for version 1.1.0? Top ▲
Take a look at the planned issues.
11. Contributions Top ▲
In case you want to contribute something to Lingua, please take a look at the file
CONTRIBUTING.md.