I would like to find the relatedness (not similarity) between two words using Python. The hso (Hirst and St-Onge,1998), lesk (Banerjee and Pedersen, 2003), and vector (Patwardhan, 2003) algorithms are implemented in Perl here but i cant seem to find the same for Python in the nltk lib.

I need to use Python as it is part of a larger team project in Python. Any leads??

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

There is also a web interface you could access - you could presumably write a python client to query the web interface to get the lesk or vector values.

You can find those web interfaces here...

http://marimba.d.umn.edu http://talisker.d.umn.edu

Good luck, Ted

link|improve this answer
THE Ted Pedersen! WOW!! Hi Ted, was thinking along the same lines.. but as I have a sizable file of different combinations of word pairs to check, realized that it would take too much computation time... any workarounds you can suggest??.. Thanks!! – user926321 Sep 16 '11 at 4:35
feedback

If you have perl implementations already, why not just write a python wrapper that calls the perl code? That way your python project can make use of the functionality, and you don't have to rewrite the actual algorithms. There are a lot of things in nltk already that work in exactly this way.

link|improve this answer
feedback

I used NLTK to load WordNet into the Neo4j graph database, (see https://groups.google.com/d/topic/gremlin-users/C1OlTG9xCpo/discussion ).

And I used Bulbs ( http://bulbflow.com/ ) to create a library called WordGraph for interacting with Neo4j/WordNet through the Rexster REST server ( https://github.com/tinkerpop/rexster/wiki/ ).

Bulbs is a Python library that allows you to use the graph programming language Gremlin ( https://github.com/tinkerpop/gremlin/wiki ) to query/traverse Neo4j, and in this case, specifically WordNet.

I am in the process of posting WordGraph to Github ( https://github.com/espeed/wordgraph ) -- message me if you have questions.

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.