I want to search a text document for occurrences of keyphrases from a database of keyphrases (extracted from wikipedia article titles). (ie. given a document i want to find whether any of the phrases have a corresponding wikipedia article) I found out about the Aho-Corasick algorithm. I want to know if building an Aho-Corasick automaton for dictionary of millions of entries is efficient and scalable.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In theory, it should maintain linear speed subject only to the effects of the memory hierarchy - it will slow down as it gets too big to fit in cache, and when it gets really big, you'll have problems if it starts getting paged out.

OTOH the big win with Aho-Corasick is when searching for decent sized substrings that may occur at any possible location within the string being fed in. If your text document is already cut up into words, and your search phrases are no more than e.g. 6 words long, then you could build a hash table of K-word phrases, and then look up every K-word contiguous section of words from the input text in it, for K = 1..6.

(Answer to comment)

Aho-Corasick needs to live in memory, because you will be following pointers all over the place. If you have to work outside memory, it's probably easiest to go back to old-fashioned sort/merge. Create a file of K-word records from the input data, where K is the maximum number of words in any phrase you are interested in. Sort it, and then merge it against a file of sorted Wikipedia phrases. You can probably do this almost by hand on Unix/Linux, using utilities such as sort and join, and a bit of shell/awk/perl/whatever. See also http://en.wikipedia.org/wiki/Key_Word_in_Context (I'm old enough to have actually used one of these indexes, provided as bound pages of computer printout).

link|improve this answer
so the tree/hash would have to be completely in memory? i have around 8 million phrases in the dictionary, so a completely in memory Data Structure is difficult i guess.. – z33m Feb 27 '11 at 19:21
in relation to K-Word hash set solution.. if i use a bloom filter of the 8million entry dictionary, can it stay in memory and be fast and efficient? a small false positive rate is acceptable because in later stages of my application i'll be looking up details of the matches, so i can eliminate them.. – z33m Feb 28 '11 at 7:28
That sounds plausible - I thought you might get away with Aho-Corasick on a big enough machine, but I have no idea how big a machine you have and not much feel for the constants involved. The Wikipedia entry en.wikipedia.org/wiki/Bloom_filter gives you a formula at the bottom for the required number of Bloom filter bits to support any given number of entries and false positive rate - put in your size and required false positive rate and see if you can afford the result. – mcdowella Mar 5 '11 at 12:20
feedback

Well there is a workaround. By writing the built AC trie of dictionary into a text file in a xml-like format, making an index file for the first 6 levels of that trie, etc... In my tests I search for all partial matches of a sentence in the dictionary (500'000 entries), and I get ~150ms for ~100 results for a sentence of 150-200 symbols.

For more details, check out this paper : http://212.34.233.26/aram/IJITA17v2A.Avetisyan.doc

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.