How can I tag collocations in Stanford NER? Currently it tags Federal Reserve Bank of New York as

<wi num="11" entity="ORGANIZATION">Federal</wi> <wi num="12" entity="ORGANIZATION">Reserve</wi> <wi num="13" entity="ORGANIZATION">Bank</wi> <wi num="14" entity="ORGANIZATION">of</wi> <wi num="15" entity="ORGANIZATION">New</wi> <wi num="16" entity="ORGANIZATION">York</wi>

I want it to be recognized as

<wi num="11" entity="ORGANIZATION">Federal Reserve Bank of New York</wi>

Is this possible?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Something similar is, yes. If you give the flag

-outputFormat inlineXML

then you'll get:

<ORGANIZATION>Federal Reserve Bank of New York</ORGANIZATION>

(Note that this isn't really changing how Stanford NER works but just the formatting of output. If you don't like any of the provided output formats, it is fairly simple to write your own.)

link|improve this answer
Thanks. That was what I wanted. – Joyce Babu Apr 19 '11 at 5:06
Can you please direct me on how to produce custom output formats? – Joyce Babu Apr 20 '11 at 16:54
2  
You have to write code for this. The key method internally classifies lists of tokens: List<IN> classify(List<IN> document). You can then print these tokens out however you want. That's what the code in PlainTextDocumentReaderAndWriter which handles the standard styles does. – Christopher Manning Apr 22 '11 at 3:05
The classify method returns each word as a different token. I was unable to get the whole entity together. – Joyce Babu Apr 22 '11 at 6:19
feedback

Your Answer

 
or
required, but never shown

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