In the iOS email client, when an email contains a date, time or location, the text becomes a hyperlink and it is possible to create an appointment or look at a map simply by tapping the link. It not only works for emails in English, but in other languages also. I love this feature and would like to understand how they do it.

The naive way to do this would be to have many regular expressions and run them all. However I this is not going to scale very well and will work for only a specific language or date format, etc. I think that Apple must be using some concept of machine learning to extract entities (8:00PM, 8PM, 8:00, 0800, 20:00, 20h, 20h00, 2000 etc.).

Any idea how Apple is able to extract entities so quickly in its email client? What machine learning algorithm would you to apply accomplish such task?

link|improve this question

71% accept rate
3  
I also thought about this, especially the regex trick. I know they have a patent on it, so maybe you can try to search it. However, I would be very interested in it as well. +1 – Thomas Jungblut Feb 15 at 14:18
11  
Actually the regexp trick will probably catch 99% of cases with a very low error rate. And is super fast, when you optimize the regular expressions well. So I'd be not surprised if it indeed just a set of regular expressions. – Anony-Mousse Feb 16 at 9:22
this is more information extraction than named entity recognition – Neil McGuigan Feb 18 at 21:41
feedback

5 Answers

up vote 101 down vote
+100

They likely use Information Extraction techniques for this.

You would extract attributes about n-grams (consecutive words) in a document:

  • numberOfLetters
  • numberOfSymbols
  • length
  • previousWord
  • nextWord
  • nextWordNumberOfSymbols
    ...

And then use a classification algorithm, and feed it positive and negative examples:

Observation  nLetters  nSymbols  length  prevWord  nextWord isPartOfDate  
"Feb."       3         1         4       "Wed"     "29th"   TRUE  
"DEC"        3         0         0       "company" "went"   FALSE  
...

You might get away with 50 examples of each. Then, the algorithm learns based on those examples, and can apply to future examples that it hasn't seen before.

It might learn rules such as

  • if previous word is only characters and maybe periods...
  • and current word is in "february", "mar.", "the" ...
  • and next word is in "twelfth", any_number ...
  • then is date

Here is a decent video by a Google engineer on the subject

link|improve this answer
1  
Interesting! I've never though of it that way. Thank you el chief. – Martin Feb 19 at 1:36
el chief, in your opinion, what kind of model would be best for that? Bayesian? – Martin Feb 20 at 2:21
2  
I am pretty sure such an approach won't perform better than, say, f-measure of approx. 0.9. (Note, this is just a feeling, I may be wrong). On the other hand I'd except the naiive approach of encoding all common formats to perform way better (possibly 0.99+ given that the most frequent formats will never be missed) and to be faster to implement + at runtime. – b.buchhold Feb 25 at 11:26
feedback

That's a technology Apple actually developed a very long time ago called Apple Data Detectors. You can read more about it here:

http://www.miramontes.com/writing/add-cacm/

Essentially it parses the text and detects patterns that represent specific pieces of data, then applies OS-contextual actions to it. It's neat.

link|improve this answer
14  
This is the correct answer. Other answers may tell you how you could do it, but this one tells you how Apple does it. – LaC Feb 25 at 11:33
2  
could we have a little more detail in the write up tho ? single link entries don't add as much – shigeta Feb 25 at 14:38
6  
Ah, so THIS is where all the hits on my website came from :) FWIW, I was the project lead on Apple Data Detectors back in the days of ATG; what I can add here is that this was an OS 8 and 9 technology only -- it never made the jump to OS X. There are obviously some similar things happening in OS X and IOS, and, while I'm not at Apple anymore and so can't really say, I wouldn't be surprised if the architecture is a bit different. Nevertheless, I expect some sort of grammar/parser system is still at the heart of it. Computers are fast these days, and simple grammars are pretty cheap. – Jim Miller Feb 26 at 17:16
feedback

This is called temporal expression identification and parsing. Here are some Google searches to get you started:

https://www.google.com/#hl=en&safe=off&sclient=psy-ab&q=timebank+timeml+timex

https://www.google.com/#hl=en&safe=off&sclient=psy-ab&q=temporal+expression+tagger

link|improve this answer
feedback

One part of the puzzle could be the NSDataDetector class. Its used to recognize some standard types like phone numbers.

link|improve this answer
1  
It seems the NSDataDetector class is the result of the effort Apple put into implementing this. The question is how does the class work internally? – Ole Begemann Feb 25 at 8:57
2  
it's in NSRegularExpression.h, so it seems quite possible that it is, as pointed out, just a set of regular expressions. – riffraff Feb 25 at 9:39
feedback

I once wrote a parser to do this, using pyparsing. It's really very simple, you just need to get all the different ways right, but there aren't that many. It only took a few hours and was pretty fast.

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.