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 !

link|improve this question

49% accept rate
1  
Isn't this more appropriate for mathoverflow.net ? – Nicolás Jan 4 '10 at 6:11
3  
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
feedback

2 Answers

up vote 6 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.

link|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
feedback

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);
    }
link|improve this answer
An anonymous user comments that this should be both.retainAll() not removeAll to get the intersection – Rup Apr 10 at 12:11
feedback

Your Answer

 
or
required, but never shown

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