Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

YEDDA: A Lightweight Collaborative Text Span Annotation Tool. Code for ACL 2018 Best Demo Paper Nomination.

License

NotificationsYou must be signed in to change notification settings

jiesutd/YEDDA

Repository files navigation

YEDDA Logo


YEDDA: A Lightweight Collaborative Text Span Annotation Tool

About:

YEDDA (the previous SUTDAnnotator) is developed for annotating chunk/entity/event on text (almost all languages including English, Chinese), symbol and even emoji. It supports shortcut annotation which is extremely efficient to annotate text by hand. The user only need to select text span and press shortcut key, the span will be annotated automatically. It also support command annotation model which annotates multiple entities in batch and support export annotated text into sequence text. Besides, intelligent recommendation and adminstrator analysis is also included in updated version. It is compatiable with all mainstream operating systems includings Windows, Linux and MacOS.

For more details, please refer toour paper (ACL2018:demo, best demo nomination).

This GUI annotation tool is developed with tkinter package in Python.

System required: Python 3.6 or above

Author:Jie Yang, Assistant Professor at Zhejiang University, China.

Interface:

It provides both annotator interface for efficient annotatation and admin interface for result analysis.

  • Annotator Interface:alt textalt text
  • Administrator Interface:alt text

Use as an annotator ?

  • Start the interface: runpython YEDDA.py
  • Select a shortcut map from./configs/ in the right bottom drop-down list
  • Configure your shortcut map in the right side of annotation interface, you can leave other labels empty if the shortcut number is enough. For example:a: Action; b: Loc; c: Cont. You can also change the map directly on the file./configs/XX.config which is in JSON format.
  • Click theReMap button to overwrite and store the map setting, or click theNewMap button to store the map setting in a new file under./configs/
  • ClickOpen button and select your input file. (You may set your file name ended with .txt or .ann if possible)

This tool supports two ways of annotation (annotated text format[@the text span#Location*]):

  • Shortcut Key Annotation: select the text and press the corresponding shortcut (i.e.c for labelCont).
  • Command Line Annotation: type the code at command entry (at the bottom of the annotation interface). For example, type2c3b1a end with<Enter>, it will annotate the following2 character as typec: Cont, the following3 character as typeb: Loc, then the following1 character asa: Action.

Intelligent recommendation:

  • Intelligent recommendation is enabled or disabled by the buttonRMOn andRMOff, respectively.
  • If recommendation model is enabled, system will recommend entities based on the annotated text. Recommendation span is formatted as[$the text span#Location*]in green color. (Notice the difference of annotated and recommended span, the former starts with[@ while the later starts with[$)

The annotated results will be stored synchronously. Annotated file is located at the same directory with origin file with the name of"origin name + .ann"Please also note that the shortcut map can be switched seamlessly in the right bottom drop-down list

Use as an administrator ?

YEDDA provides a simple interface for administartor to evaluate and analyze annotation quality among multiple annotators. After collected multiple annotated*.ann files from multiple annotators (annotated on same plain text), YEDDA can give two toolkits to monitor the annotation quality: multi-annotator analysis and pairwise annotators comparison.

  • Start the interface: runpython YEDDA_Admin.py
  • Multi-Annotator Analysis: press buttonMulti-Annotator Analysis and select multiple annotated*.ann files, it will give f-measure matrix among all annotators. The result matrix is shown below:

alt text

  • Pairwise Annotators Comparison: press buttonPairwise Comparison and select two annotated*.ann files, it will generate a specific comparison report (in.tex format, can be compiled as.pdf file). The demo pdf file is shown below:

alt text

Important features:

  1. Typectrl + z will undo the most recent modification
  2. Put cursor within an entity span, press shortcut key (e.g.x) to update label (binded withx) of the entity where cursor is belonging. (q for remove the label)
  3. Selected the annotated text, such as[@美国#Location*], then pressq, the annotated text will be recoverd to unannotate format (i.e. "美国").
  4. Change label directly, select entity content or put cursor inside the entity span (such as[@美国#Location*]), then pressx, the annotated text will change to new label mapped with shortcutx (e.g.[@美国#Organization*]).
  5. Confirm or remove recommended entity: put cursor inside of the entity span and pressy (yes) orq (quit).
  6. In the command entry, just typeEnter without any command, the cursor in text will move to the head of next line. (You can monitor this through "Cursor").
  7. The "Cursor" shows the current cursor position in text widget, withrow andcol represent the row and column number, respectively.
  8. Export button will export the".ann" file as a identity name with".anns" in the same directory. The exported file list the content in sequence format. In the source code, there is a flagself.seged which controls the exported bahaviour. a). If your sentences are consist of words seperated with space (e.g. segmentated Chinese and English), then you may setself.seged=True. b). If your sentences are consist of characters without space (e.g. unsegmentated Chinese text), setself.seged=False. Another flagself.tagScheme controls the exporting format, the exported".anns" will use theBMES format if this flag is set to"BMES", otherwise the exported file is formatted as"BIO".

Cite:

If you use YEDDA for research, please cite ourACL paper as follows:

@article{yang2017yedda,   title={YEDDA: A Lightweight Collaborative Text Span Annotation Tool},   author={Yang, Jie and Zhang, Yue and Li, Linwei and Li, Xingxuan},   booktitle={Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics}, url={http://aclweb.org/anthology/P18-4006}, year={2018}  }

Updating...

  • 2022-Apr-20, Move to Python 3 with colorful entity background. Thanks@etern
  • 2019-Jul-31, Convert the config file into JSON format.
  • 2018-Oct-20, YEDDA has a slight update in which shortcut maps can be edited, stored and switched seamlessly.
  • 2018-May-07, Repository is renamed as YEDDA now!
  • 2018-May-01, Our paper has been accepted as a demonstration at ACL 2018.
  • 2017-Sep-27, (YEDDA V 1.0): project was officially named as YEDDA ! See our paperhere.
  • 2017-June-24, (V 0.6): support nested coloring; add event annotation beta versionEvent_beta.py
  • 2017-May-31, (V 0.6): optimize for Windows OS.
  • 2017-Apr-26, (V 0.5.3): fix bug with line merge when change entity type.
  • 2017-Apr-20, (V 0.5.2): fix bugs withnewline problem on MacOS/Linux/Windows. (\r\n\r\n)
  • 2017-Apr-20, (V 0.5.1): change entity label more directly; optimize cursor figure.
  • 2017-Apr-19, (V 0.5): update entity represent as[@Entity#Type*]; support change label directly; fix some bugs.
  • 2017-Apr-15, (V 0.4): update example and readme.
  • 2017-Apr-13, (V 0.4): modify color; support setting color single line or whole file (may be slow in large file) (self.colorAllChunk).
  • 2017-Apr-12, (V 0.4): support BMES/BIO export (self.tagScheme); support segmented sentence export(self.seged); can save previous shortcut setting.
  • 2016-Mar-01, (V 0.3): fix export bug (bug: set space when sentence didn't include any effective label).
  • 2016-Jan-11, (V 0.2): add sequence format export function.
  • 2016-Jan-09, (V 0.1): init version.

[8]ページ先頭

©2009-2025 Movatter.jp