annotation.conf 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Simple text-based definitions of hierarchial ontologies of
  2. # (physical) entity types, relation types, event types, and
  3. # attributes.
  4. # This is a minimal example configuration, based (loosely) on some
  5. # ACE'05 entity, relation and event definitions
  6. # (http://projects.ldc.upenn.edu/ace/annotation/2005Tasks.html).
  7. # Please edit this according to the needs of your annotation.
  8. [entities]
  9. # Definition of entities.
  10. # Format is a simple list with one type per line.
  11. Person
  12. Organization
  13. GPE
  14. [relations]
  15. # Definition of (binary) relations.
  16. # Format in brief: one relation per line, with first space-separated
  17. # field giving the relation type and the rest of the line the
  18. # comma-separated arguments in ROLE:TYPE format. The roles are
  19. # typically "Arg1" and "Arg2".
  20. Located Arg1:Person, Arg2:GPE
  21. Geographical_part Arg1:GPE, Arg2:GPE
  22. Family Arg1:Person, Arg2:Person
  23. Employment Arg1:Person, Arg2:GPE
  24. Ownership Arg1:Person, Arg2:Organization
  25. Origin Arg1:Organization, Arg2:GPE
  26. Alias Arg1:Person, Arg2:Person, <REL-TYPE>:symmetric-transitive
  27. [events]
  28. # Definition of events.
  29. # Format in brief: one event per line, with first space-separated
  30. # field giving the event type and the rest of the line the
  31. # comma-separated arguments in ROLE:TYPE format. Arguments may be
  32. # specified as either optional (by appending "?" to role) or repeated
  33. # (by appending either "*" for "0 or more" or "+" for "1 or more").
  34. # this is a macro definition, used for brevity
  35. <POG>=Person|Organization|GPE
  36. # the "!" before a type specifies that it cannot be used for annotation
  37. # (hierarchy structure only.)
  38. !Life
  39. Be-born Person-Arg:Person, Place-Arg?:GPE
  40. Marry Person-Arg{2}:Person, Place-Arg?:GPE
  41. Divorce Person-Arg{2}:Person, Place-Arg?:GPE
  42. Die Person-Arg:Person, Agent-Arg?:<POG>, Place-Arg?:GPE
  43. !Transaction
  44. Transfer-ownership Buyer-Arg:<POG>, Seller-Arg:<POG>, Artifact-Arg:Organization
  45. Transfer-money Giver-Arg:<POG>, Recipient-Arg:<POG>, Beneficiary-Arg:<POG>
  46. !Business
  47. Start-org Agent-Arg?:<POG>, Org-Arg:Organization
  48. Merge-org Org-Arg{2}:Organization
  49. End-org Org-Arg:Organization
  50. [attributes]
  51. # Definition of entity and event attributes.
  52. # Format in brief: first tab-separated field is attribute name, second
  53. # a set of key-value pairs. The latter must define "Arg:" which
  54. # specifies what the attribute can attach to (typically "<EVENT>").
  55. # If no other keys are defined, the attribute is binary (present or
  56. # absent). If "Value:" with multiple alternatives is defined, the
  57. # attribute can have one of the given values.
  58. Negation Arg:<EVENT>
  59. Confidence Arg:<EVENT>, Value:High|Neutral|Low