HUMAN is an annotation server that stands for...
- Hierarchical: Supports annotation of hierarchical data. This makes it easy to annotate instances (e.g. online comments) together with their context (e.g. the thread of comments a comment was posted in).
- Universal: Handles both textual data with and without context as well as PDFs and image annotation.
- Modular: Various question types (labeling questions, multiple-choice, yes-no, setting bounding boxes etc.) that are self-contained and can be arranged in any order needed. This also makes it easy to implement new custom question types and features.
- ANnotator: Comes with an easy to use GUI interface for your annotators and project manager.
See our Demo on http://human.lsv.uni-saarland.de
The only requirements are a working version of node and python 3.7. Using anaconda or miniconda for a python environment is highly recommended. To make it easier to install, update and remove node, especially if you plan to maybe use it in other projects we suggest using the node version manager https://github.com/nvm-sh/nvm.
First install the python environment.
With Conda:
conda env create
then activate the environment with
conda activate human
OR install from requirements.txt with pip or whatever you fancy.
Write your custom annotation protocol into protocol.json. Refer to the wiki for documentation on how to do this and see our example protocols (under /examples
) for inspiration.
Then customize the variables inside of settings.ts e.g.:
"url": "127.0.0.1:5000",
...
Finally run setup.sh
to finish the setup. This script will run the following tasks for you:
- Installing dependencies for gulp
- Parsing the annotation protocol. Be sure to read all warnings and resolve all errors before continuing!
- Ask you to set up an admin account (necessary for data upload).
- Set up the database for you
Whenever you change something in the settings or the protocol be sure to run this script again. You can skip steps, like rebuilding the database if necessary.
To run the server locally for testing purposes run
flask start
When debugging and changing things client side it is very convenient to let gulp watch file changes and transpile your code automatically: npm start watch
To add a file with data, start the server, log in with your admin account, and go to "Data Console". There you can upload the file. Be sure that it is a tab separated file with the three columns "content", "context" and "meta".
When you want to display files you can use "Upload Folder" in "Data Console" and then upload a file with <folder-name>/<file-name>
in the content fields for every file in the folder.
When running HUMAN on a server we recommend using gunicorn (also included in the environment). The script start_server.sh
should take care of starting the server, however you have to insert the ip and port yourself and make sure to add the web address into the url field in settings.ts and run setup.sh again.
Another possibility is using the provided Dockerfile to build an image and the run it in a container.
Picture Annotation:
- Copy and rename
/example/protocol_example_picture.json
to/protocol.json
- Run
setup.sh
- Log in with your administrator account and upload the folder
/example/picture
- Upload the file
/example/data_example_picture.csv
- Go back to home and start annotating.
Text Annotation:
- Copy and rename
/example/protocol_example_text.json
to/protocol.json
- Run
setup.sh
- Log in with your administrator account and upload the file
/example/data_example_text.csv
- Go back to home and start annotating.
Visit the wiki for full documentation.
https://github.com/RainbowRevenge
https://arxiv.org/abs/2010.01080
HUMAN is licensed under GPL-3.