YEDDA 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 to our paper.
This GUI annotation tool is developed with tkinter package in Python.
System required: Python 2.7
Author: Jie Yang, Phd Candidate of SUTD.
It provides both annotator interface for efficient annotatation and admin interface for result analysis.
- Start the interface: run
python YEDDA_Annotator.py
- 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
- Click the
ReMap
button to store the map setting - Click
Open
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, type
2c3b1a
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 button
RMOn
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"
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: run
python YEDDA_Admin.py
- Multi-Annotator Analysis: press button
Multi-Annotator Analysis
and select multiple annotated*.ann
files, it will give f-measure matrix among all annotators. The result matrix is shown below:
- Pairwise Annotators Comparison: press button
Pairwise 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:
- Type
ctrl + z
will undo the most recent modification - 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) - Selected the annotated text, such as
[@美国#Location*]
, then pressq
, the annotated text will be recoverd to unannotate format (i.e. "美国"). - 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*]
). - Confirm or remove recommended entity: put cursor inside of the entity span and press
y
(yes) orq
(quit). - In the command entry, just type
Enter
without any command, the cursor in text will move to the head of next line. (You can monitor this through "Cursor"). - The "Cursor" shows the current cursor position in text widget, with
row
andcol
represent the row and column number, respectively. 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. If your sentences are consist of words seperated with space (such as segmentated Chinese and English), then you may set itTrue
, otherwise set it asFalse
(for sentences which are consist of characters without space, such as unsegmentated Chinese text). Besides, 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".
If you use YEDDA for research, please cite this report as follows:
@article{yang2017yedda,
title={YEDDA: A Lightweight Collaborative Text Span Annotation Tool},
author={Jie Yang and Yue Zhang},
Journal = {arXiv preprint arXiv:1711.03759},
year={2017}
}
- 2017-Sep-27, (YEDDA V 1.0): project was officially named as YEDDA ! See our paper here.
- 2017-June-24, (V 0.6): support nested coloring; add event annotation beta version Event_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 with
newline
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.