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
File details
Details for the file datasette-annotate-0.2.1.tar.gz
.
File metadata
- Download URL: datasette-annotate-0.2.1.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d397be4fc289e4695a1d2b67144f2ca59cb08a6314e81f835bed91744edb9784 |
|
MD5 | 146bb7dcf4ad5182756a4c0a1d0c3f73 |
|
BLAKE2b-256 | a37ecd9e966ef4ae952b50b20b3372a62d4a51da3aa926d4a947409010bf3259 |
File details
Details for the file datasette_annotate-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: datasette_annotate-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5d35fef26b2871d6f1b1c0a2e33bfe65c26e37809cfee7a446df2bef98f0925 |
|
MD5 | bb1da5e50483c52253c4605384ca0f52 |
|
BLAKE2b-256 | c8ed2c7fd7f26fa9e74eced2becf0311a656137dda7cbc1302e917f1a4c2ab1c |