0

I'm attempting to perform coreference using the GATE MatchesAnnots document feature, and I get the following output:

{null = [[866, 871, 872], [869, 873, 877, 879], [874, 895, 896]]}

Can anyone help me understand what this means? I'm assuming each of these arrays are each a coreference chain - but what are the numbers? Character start numbers? I'm a bit lost.

dedek
  • 7,981
  • 3
  • 38
  • 68
Anne Rose
  • 47
  • 4

1 Answers1

1

Question

what are the numbers?

Answer

They are GATE annotation ids of the chained annotations.

Explanation

GATE document feature MatchesAnnots contains a map ( Map<String, List<List<Integer>>> ) with following content:

  • Each key correspond to the name of corresponding AnnotatienSet.
  • Each value is a list of all the coreference chains.
  • Each coreference chain is a list of ids of annotations belonging to the chain.

See also

dedek
  • 7,981
  • 3
  • 38
  • 68