Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect a pronoun and its noun?

Wondering if there is any tool that can help me to detect a pronoun's name in a text.

Example

Jone is Spanish. He can speak German.

How can I tag He to Jone?

like image 870
S Gaber Avatar asked Apr 01 '12 07:04

S Gaber


1 Answers

The problem you are trying to solve is known as anaphora resolution. A java tool to perform this task is available here. The source code is made available on that site. For a theoretical look at how it works, check out this paper by Lappin and Leass from 1994.

like image 161
Cameron Avatar answered Sep 18 '22 10:09

Cameron