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

Thank you all great guys here for helping people like me :) I just need small hint ....

I calculated tf/idf values of two documents. Following is the tf/idf values 1.txt 0.0 0.5 2.txt 0.0 0.5

The documents are like 1.txt = > dog cat 2.txt = > cat elephant

As now I have tf/idf values. Can any body tell me how to use these values to calculate cosine similarity??

I already read wikipedia and all other tutorial that i should calculate dot product then find distance then divide dot product by distance. I am not good in math. That's why I couldn't understand what they are doing with X,Y :)

If u can just tell me how to calculate using my values. I will understand and implement it.

One more question. In is important both documents should have same number of words?

Thanks !

share|improve this question
1  
Isn't this more appropriate for mathoverflow.net ? – Nicolás Jan 4 '10 at 6:11
4  
its an information retrieval task, not something a pure math person would care about – adi92 Jan 4 '10 at 6:24
6  
Please stop recommending mathoverflow.net -- it's for serious mathematical questions. – Jason S Jan 5 '10 at 15:45

2 Answers

up vote 9 down vote accepted
            a * b
sim(a,b) =--------
           |a|*|b|

a*b is dot product

some details:

def dot(a,b):
  n = length(a)
  sum = 0
  for i in xrange(n):
    sum += a[i] * b[i];
  return sum

def norm(a):
  n = length(a)
  for i in xrange(n):
    sum += a[i] * a[i]
  return math.sqrt(sum)

def cossim(a,b):
  return dot(a,b) / (norm(a) * norm(b))

yes. to some extent, a and b must have the same length. but a and b usually have sparse representation, you only need to store non-zero entries and you can calculate norm and dot more fast.

share|improve this answer
Thanks, But I am also confused about one more thing. I saw people talking about this over net. I couldn't understand. Should I calculate cosine similarity on tf/idf values OR. Only idf values or only tf values????? I know php and start learning java. But i am sorry i don't know which lang. code you used here? can you please let me know, i will look that lang. basic syntax. Or if you can use my tf/idf values to calculate cosine similarity, it will show me how to write a function for that... thanks again for reply! – user238384 Jan 4 '10 at 7:00
@agazerboy the sample is given in python, which should be quite readable. for i in xrange(n) means for (i=0; i<n; i++). you should calculate on tf-idf values, sometimes you can also use tf. – Yin Zhu Jan 4 '10 at 7:32
please read my explaination below ! – user238384 Jan 4 '10 at 17:07
that resembles python code and length in python is len – curious Feb 12 at 10:08

simple java code implementation:

  static double cosine_similarity(Map<String, Double> v1, Map<String, Double> v2) {
            Set<String> both = Sets.newHashSet(v1.keySet());
            both.retainAll(v2.keySet());
            double sclar = 0, norm1 = 0, norm2 = 0;
            for (String k : both) sclar += v1.get(k) * v2.get(k);
            for (String k : v1.keySet()) norm1 += v1.get(k) * v1.get(k);
            for (String k : v2.keySet()) norm2 += v2.get(k) * v2.get(k);
            return sclar / Math.sqrt(norm1 * norm2);
    }
share|improve this answer
An anonymous user comments that this should be both.retainAll() not removeAll to get the intersection – Rup Apr 10 '12 at 12:11

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.