Skip to content

Instantly share code, notes, and snippets.

@andreasvc
Last active April 1, 2019 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreasvc/38ce05e4db8e01f9af120a649443256b to your computer and use it in GitHub Desktop.
Save andreasvc/38ce05e4db8e01f9af120a649443256b to your computer and use it in GitHub Desktop.
Rename numeric entity labels in .xmi file to text of first mention
"""Rename numeric entity labels in .xmi file to text of first mention.
Usage: python3 xmientityrename.py <FILE>...
Original file is modified in-place.
Only non-empty entities with numeric names are changed.
See https://github.com/nilsreiter/CorefAnnotator/issues/173"""
import os
import sys
from lxml import etree
def conv(filename):
"""Produce new version of given file with relabeled entities."""
doc = etree.parse(filename)
root = doc.getroot()
text = root.find('./cas:Sofa', root.nsmap).get('sofaString')
firstmention = {}
for mention in root.findall('./v1:Mention', root.nsmap):
entityid = mention.get('Entity')
span = (int(mention.get('begin')), int(mention.get('end')))
if entityid not in firstmention:
firstmention[entityid] = span
elif span[0] < firstmention[entityid][0]:
firstmention[entityid] = span
for entity in root.findall('./v1:Entity', root.nsmap):
# skip empty entities we haven't seen mentions for
if (entity.get('Label').isnumeric()
and entity.get('{http://www.omg.org/XMI}id') in firstmention):
begin, end = firstmention[entity.get('{http://www.omg.org/XMI}id')]
entity.attrib['Label'] = text[begin:end]
with open(filename, 'wb') as out:
out.write(etree.tostring(doc, pretty_print=False,
xml_declaration=True, encoding='UTF-8'))
def main():
"""CLI."""
if len(sys.argv[1:]):
for filename in sys.argv[1:]:
if not os.path.exists(filename):
print('File not found: %s' % filename)
return
for filename in sys.argv[1:]:
print('Processing: %s' % filename)
conv(filename)
else:
print(__doc__)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment