Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I go about writing a co-occurence class in something like Java that takes a file full of n-grams and calculates word co-occurence for a given input term.

Are there any librarys or packages which work with Lucene (indexes) or something like a map-reduce over the n-gram list in Hadoop..?

Thanks.

share|improve this question
Anyone have any ideas... Thinking Solr/Lucene might be best approach for this but not sure how... – NightWolf Jun 30 '11 at 13:21
2  
...sounds dumb but: is it really needed? If the corpus is a few millions of tokens, or the ngrams a few millions, a simple java or python program will do. – arnaud Jul 4 '11 at 8:30
I did something like that once, just perl and mysql and displayed it on a webpage – nflacco Jul 5 '11 at 5:29
1  
@GatoVolador do you have any example? – NightWolf Jul 20 '11 at 18:09

1 Answer

up vote 1 down vote accepted

Ok, so assuming you want to find the co-occurrence of two different words in a file of ngrams....

Here's pseudo code-ish Java:

// Co-occurrence matrix
Hashmap<String,HashMap<String,Integer>> map = new HashMap();

// List of ngrams
ArrayList<ArrayList<String>> ngrams = ..... // assume we've loaded them into here already

// build the matrix
for(ArrayList<String> ngram:ngrams){
  // Calculate word co-occurrence in ngram for all words
  // result is an map strings-> count
  // words in alphabetical order
  Hashmap<String,<ArrayList<String>,Integer> wordCoocurrence = cooccurrence(ngram) // assume we have this

  // then just join this with original
}

// and just query with words in alphabetic order

Doing a count like this would probably be pretty with Pig but you're probably more familiar with that than me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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