> > > follow up to post in trec-kba:
> > >
https://groups.google.com/d/msg/trec-kba/24ClmbLg9TU/PGR-g10gM1IJ
> > >
> > > **** IMPORTANT ****
> > > 2013 .body.sentences['lingpipe'] contains fully sentence-chunked and
> > > tokenized NER+coref-chains generated from clean_visible
> >
> >
> > tokens inside of an HTML Anchor tag have Token.labels['author']
> > populated with Label objects and Label.target.target_id=<HREF URL This
> > can be a powerful feature for modeling.
Note that the 'author' labels are from the author of the web page, not an
automatic tagger. For example, the corpus contains hyperlinks to twitter
and wikipedia.
> What we have noticed is that the NER tagging given with the data is not
> that good and simply running the NER tagging again using stanford
> corenlp gives much better results (may be because an older version was
> used when generating this for the corpus?)
It is true that the Stanford CoreNLP can produce good results.
It is also >100x slower than LingPipe. Running the full within-doc coref
model from Stanford CoreNLP was simply too computationally expensive to
run on a billion documents.
The within-doc coref chains from LingPipe out-of-the-box are pretty good,
especially considering that we ran it without any tuning for the specific
genres observed in each of the different "source" substreams. Since they
are available for the entire corpus, you can use them as part of a
first-pass filter.
jrf