Datasette plugin for annotating / labelling your training data.
Project description
datasette-annotate
Datasette plugin for annotating / labelling your training data.
Installation
Install this plugin in the same environment as Datasette.
datasette install datasette-annotate
Only the root actor will have access to create (write) annotations.
Usage
You can start the annotation process by going to the /database_name/table_name/-/annotate
page. This table should be configured to specify which annotation labels can be selected, see below. Annotations will be written to the table table_name_annotations
.
Configuration
To add annotations for a table it must have a primary key column. The possible labels for each table should be configured by adding the following settings to the metadata.json
:
{
"databases": {
"my_database": {
"tables": {
"training_data": {
"plugins": {
"datasette-annotate": {
"labels": ["ABSTAIN", "HAM", "SPAM"]
}
}
}
}
}
}
}
If you are using metadata.yml
the configuration should look like this:
databases:
my_database:
tables:
training_data:
plugins:
datasette-annotate:
labels:
- ABSTAIN
- HAM
- SPAM
Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd datasette-annotate
python3 -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest
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
Hashes for datasette_annotate-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5d35fef26b2871d6f1b1c0a2e33bfe65c26e37809cfee7a446df2bef98f0925 |
|
MD5 | bb1da5e50483c52253c4605384ca0f52 |
|
BLAKE2b-256 | c8ed2c7fd7f26fa9e74eced2becf0311a656137dda7cbc1302e917f1a4c2ab1c |