I'm looking for a simple way to detect whether a short excerpt of text, a few sentences, is English or not. Seems to me that this problem is much easier than trying to detect an arbitrary language. Is there any software out there that can do this? I'm writing in python, and would prefer a python library, but something else would be fine too. I've tried google, but then realized the TOS didn't allow automated queries.

link|improve this question

1  
I'm asking for English only here, as opposed to that thread where they ask for any arbitrary language. – user449511 Jan 5 '11 at 14:34
It just works fine for English. – İsmail 'cartman' Dönmez Jan 5 '11 at 14:42
@user Look at some of the answers there, they might still be applicable. Google Translate also detects language and it worked for you when it did. – marcog Jan 5 '11 at 14:45
feedback

4 Answers

up vote 4 down vote accepted

I read a method to detect Enlgish langauge by using Trigrams

http://en.wikipedia.org/wiki/Trigram

You can go over the text, and try to detect the most used trigrams in the words. If the most used ones match with the most used among english words, the text may be written in English

Try to look in this ruby project:

https://github.com/feedbackmine/language_detector

link|improve this answer
+1 for Trigams -- very cool. – George Jan 5 '11 at 14:37
Thanks! This is a easy idea to implement, I can give this a quick test with a small set of test text that I have to see how well it works! – user449511 Jan 5 '11 at 14:37
This is going to require a large batch of sample text. OP might not have access to that. – marcog Jan 5 '11 at 14:38
feedback

EDIT: This won't work in this case, since OP is processing text in bulk which is against Google's TOS.

Use the Google Translate language detect API. Python example from the docs:

url = ('https://ajax.googleapis.com/ajax/services/language/detect?' +
       'v=1.0&q=Hola,%20mi%20amigo!&key=INSERT-YOUR-KEY&userip=INSERT-USER-IP')
request = urllib2.Request(url, None, {'Referer': /* Enter the URL of your site here */})
response = urllib2.urlopen(request)
results = simplejson.load(response)
if results['responseData']['language'] == 'en':
    print 'English detected'
link|improve this answer
"The Google Language Detect API must be used for user-generated language detection. Automated or batched queries of any kind are strictly prohibited". I guess that is why the question asker is referring to the Terms of Service he saw as well, and I assume he therefore wants to detect a language without any user input. – Tom van Enckevort Jan 5 '11 at 14:33
@tomlog You're probably right. I thought he was referring to scraping GT pages. @user, can you confirm whether or not you're processing user-generated strings? – marcog Jan 5 '11 at 14:36
I was batch querying their api with my text and got denied access and realized my problem. I'm not using user-generated strings. Thanks! – user449511 Jan 5 '11 at 14:38
@user Okay, then this won't work. I'll keep my answer for reference (in case others come along), but will add a note. – marcog Jan 5 '11 at 14:40
Thanks anyway! I will say, it did work very well while it did. I had no false positives in my filtered list when I went by their "reliable" tag. – user449511 Jan 5 '11 at 14:42
show 1 more comment
feedback

Altough not as good as Google's own, I have had good results using Apache Nutch LanguageIdentifier which comes with its own pretrained ngram models. I had quite good results on a large (50GB pdf, text-mostly) corpus of real-world data in several languages.

It is in Java, but I'm sure you can reread the ngram profiles from it if you want to reimplement it in Python.

link|improve this answer
feedback

Google Translate API v2 allows automated queries but it requires the use of an API key that you can freely get at Google APIs console.

To detect whether text is English you could use detect_language_v2() function (that uses that API) from my answer to the question Python - can I detect unicode string language code?:

 if all(lang == 'en' for lang in detect_language_v2(['some text', 'more text'])):
    # all text fragments are in English
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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