Are there any good, open source engines out there for detecting what language a text is in, perhaps with a probability metric? One that I can run locally and doesn't query Google or Bing? I'd like to detect language for each page in about 15 million pages of OCR'ed text

Cheers

Nik

link|improve this question

Do the documents only contain languages which use the latin alphabet? – btreat Jul 3 '10 at 22:56
No, but almost all will be – niklassaers Jul 4 '10 at 6:42
feedback

4 Answers

up vote 5 down vote accepted

Depending on what you're doing, you might want to check out the python Natural Language Processing Toolkit (NLTK), which has some support for Bayesian Learning Algorithms.

In general, the letter and word frequencies would probably be the fastest evaluation, but the NLTK (or a bayesian learning algorithm in general) will probably be useful if you need to do anything beyond identification of the language. Bayesian methods will probably be useful also if you discover the first two methods have too high of an error rate.

link|improve this answer
Thanks for the tip, that sounds very promising. :-) Also very cool that it comes with many corpa of text, that way I won't have to train it all myself – niklassaers Jul 4 '10 at 6:46
feedback

I don't think you need anything very sophisticated - for example to detect if a document is in English, with a pretty high level of certainty, simply test if it contains the N most common English words - something like:

"the a an is to are in on in it"

If it contains all of those, I would say it is almost definitely English.

link|improve this answer
1  
Unless you check most of those, there will be a risk for false positives... E.g. "Kan jag komma in och få lite is till min läsk?" would be flagged as English. – Gert G Jul 3 '10 at 22:47
@Gert That's why I said "all" - of course you could also produce a percentage score. And there will always be false positives, whatever you do. – anon Jul 3 '10 at 23:19
@Neil Butterworth - No problem. I understand what you mean. It's just that you have to be careful, since languages share some common elements. :) – Gert G Jul 3 '10 at 23:30
I'm not looking for English in particular, my initial task is to identify which European language, including greek and swedish – niklassaers Jul 4 '10 at 6:44
feedback

You can surely build your own, given some statistics about letter frequencies, digraph frequencies, etc, of your target languages.

Then release it as open source. And voila, you have an open source engine for detecting the language of text!

link|improve this answer
feedback

For future reference, the engine I ended up using is libtextcat which is under BSD license but seems not to be maintained since 2003. Still, it does a good job and integrates easily in my toolchain

link|improve this answer
"It was primarily developed for language guessing, a task on which it is known to perform with near-perfect accuracy" – Nicolas Raoul Sep 27 '10 at 9:41
That's frightfully optimistic. ;-) With ~1.700.000 pages run, it detects the language correctly for ~50%, has multiple suggestions in where the language appears in ~20% more, and misses the rest. For the misses, I am lucky enough to have other data to back me up :-) – niklassaers Sep 27 '10 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.