Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaphor resolution in Python

Tags:

python

linux

nlp

I want to use Anaphor resolution in my project related to text mining. I am doing the project on the Linux platform and I am using Python. I have searched on net but there is no appropriate toolkit which can perform anaphora resolution in Python. Please suggest some toolkit which can do so.

I want to find the noun of the pronoun. for e.g

Joey was having lunch. He was too hungry.

I want the "He" in next sentence to be replaced by"Joey".

like image 926
divya27 Avatar asked Nov 13 '22 08:11

divya27


1 Answers

Take a look at the docs for NLTK-DRT.

like image 167
Jake Avatar answered Nov 14 '22 21:11

Jake