I came across several methods for measuring semantic similarity that use the structure and hierarchy of WordNet, e.g. Jiang and Conrath measure (JNC), Resnik measure(RES), Lin measure (LIN) etc.
The way they are measured using NLTK is:
sim2=wn.jcn_similarity(entry1,entry2,brown_ic)
sim3=entry1.res_similarity(entry2, brown_ic)
sim4=entry1.lin_similarity(entry2,brown_ic)
If WordNet is the basis of calculating semantic similarity, what is the use of Brown Corpus here?
Take a look at the explanation at the NLTK howto for wordnet.
Specifically, the *_ic notation is information content.
A bit more info on information content from here: