Customizable tool for easy manual annotation
Project description
Humannotator
Library for conveniently creating simple customizable annotators
for manual annotation of your data
Jenia Kim, Lawrence Vriend
Works well with Jupyter notebooks:
Use case
The humannotator provides an easy way to set up custom annotators. This tool is for you if manual annotation is part of your workflow and you are looking for a solution that is:
- Lightweight
- Customizable
- Easy to set up
- Integrates with Jupyter/pandas/Python
Quick start
Install the humannotator
Install with conda:
conda install -c lcvriend humannotator
Or use pip:
pip install humannotator
Create a simple annotator
import pandas as pd
from humannotator import Annotator
# load data
df = pd.read_csv('examples/popcorn_classics.csv', sep=';', index_col=0)
# set up the annotator
ratings = [
'One bag',
'Two bags',
'Three bags',
'Four bags',
'Five-bagger',
]
annotator = Annotator(df, name='VFA | Rate my popcorn classics')
annotator.tasks['Bags of popcorn'] = ratings
# run annotator
annotator(user='GT')
In Jupyter this gives:
Annotate your data
- Use the annotator by calling it:
annotator()
. - The annotator keeps track of where you were.
- Highlight phrases with the 'phrases' argument.
- The annotator stores user (if provided) and timestamp with the annotation.
Access your annotations
- The annotations are conveniently stored in a pandas
DataFrame
. - Access the annotations with the
annotated
attribute. - Get the indeces of the records without annotation with
unannotated
. - Return the data merged with its annotations with the
merged
method.
Store your annotations
- Store the annotator with the
save
method. - Load the annotator with the
load
method.
Load data
The annotator accepts list
, dict
, Series
and DataFrame
objects as data.
The data will be converted to a dataframe internally.
Dataframes
- By default, the annotator will use the dataframe's
index
and allcolumns
. - Use
load_data
to easily create adata
object if you need more control:id_col
sets the column to be used as index.item_cols
set the column or columns to be displayed.
Define tasks
Tasks can be set up through subscription or with the task_factory
.
Setting up tasks with the task factory
Create a task by passing task_factory
:
- the
kind
of task - the
name
of the task - (optionally) an
instruction
- (optionally) a list of
dependencies
- whether it is
nullable
(default is False) - any kwargs necessary (depends on the kind of task)
Typically:
task_factory(
'kind',
'name',
instruction='instruction',
dependencies=dependencies,
nullable=True/False,
**kwargs,
)
Passing a dict or list to kind
will create a categorical task.
In this case the categories
kwarg is ignored.
Setting up tasks through subscription
It is also possible to instantiate an annotator and add tasks through subscription:
a = Annotator()
a.tasks['topic'] = ['economy', 'politics', 'media', 'other']
a.tasks['factual'] = bool, "Is the article factual?", False
To add a task like this, you minimally need to provide the kind
of task you are trying to create.
Optionally, you can add instruction
, nullability
, dependencies
and any other kwargs (as dictionary).
Change the order in which tasks are prompted to the user with the order
attribute on tasks
.
Available tasks
kind | kwargs | dtype | description |
---|---|---|---|
str | object | String | |
regex | regex | object | String validated by regex |
int | Int64 | Nullable integer | |
float | float64 | Float | |
bool | bool | Boolean | |
category | categories | CategoricalDtype | Categorical variable |
date | datetime64[ns] | Date |
Dependencies
Dependencies consist of a condition and a value, that can be passed as tuple:
("col1 == 'x'", False)
The condition is a pandas query statement. Before prompting the user for input, the condition is evaluated on the current annotation. If the query evaluates to True then the value will be assigned automatically.
Annotator
Calling the annotator
The annotator detects if it is run from Jupyter.
If so, the annotator will render itself in html and css.
If not, the annotator will render itself as text.
You can annotate a selection of records by passing a list of ids to the annotator call. If you want to reannotate ids that have already been annotated, then set redo
to True when calling the annotator.
Instantiating the annotator
arguments
tasks : Task, list of Task objects, Tasks, Annotations or DataFrame
Annotation task(s). If passed a DataFrame, then the tasks will be inferred from it. Annotation data in the dataframe will also be initialized.
data : data, list-/dict-like, Series or DataFrame, default None
Data to be annotated. If `data` is not already a data object, then it will be passed through `load_data`. The annotator can be instantiated without data, but will only work after data is loaded.
user : str, default None
Name of the user.
name : str, default 'HUMANNOTATOR'
Name of the annotator.
save_data : boolean, default False
Set flag to True if you want to store the data with the annotator. This will ensure that the pickled object, will contain the data.
other parameters
DISPLAY
text_display : boolean, default NoneIf True will display the annotator in plain text instead of html.
HTML
markdown : boolean, default {markdown}
If True will pass values through markdown before rendering.
markdown_extensions : list, default {markdown_extensions}
List of markdown extensions to apply.
escape_html : boolean, default {escape_html}
If true will escape html content within items.
maxheight : str, default '{maxheight_items}'
Max height before item gets y-scroll bar. Set to None to have no maximum.
DATA
item_cols : str or list of str, default NoneName(s) of dataframe column(s) to display when annotating. By default: display all columns.
id_col : str, default None
Name of dataframe column to use as index. By default: use the dataframe's index.
HIGHLIGHTER
phrases : str, list of str, default NonePhrases to highlight in the display. The phrases can be regexes. It also to pass in a dict where: - the keys are the phrases - the values are the css styling
escape : boolean, default False
Set escape to True in order to escape the phrases.
flags : int, default 0 (no flags)
Flags to pass through to the re module, e.g. re.IGNORECASE.
TRUNCATER
truncate : boolean, default {truncate}Set to False to not truncate items.
trunc_limit : int, default {truncate_word_limit}
The number of words beyond which an item will be truncated.
The module contains a configuration file in which some of the default behaviour of the humannotator can be configured.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file humannotator-0.0.3.tar.gz
.
File metadata
- Download URL: humannotator-0.0.3.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c3f49e541a0810624c2d27bfdc45c890cb7b7a9ba4a93fca395fafe30e7d50b |
|
MD5 | ee6617f766dbd936ced079c03235003c |
|
BLAKE2b-256 | 0d2a682df18374a76bc4fd472796771224e5888803941e2badc3f0fcefabcdf4 |
File details
Details for the file humannotator-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: humannotator-0.0.3-py3-none-any.whl
- Upload date:
- Size: 49.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 855be9499234780b145e0eb5ae1c87fdc1e5c79d322f7f466decca16ce1dd98e |
|
MD5 | 55b1f8b4785958c7625451c906f5474d |
|
BLAKE2b-256 | 1e2b6db3892bc7c72bbf6776458e8efeb9db7cc897a6fb23afac1716f0d72eec |