tagger-showdown/README.md

19 lines
432 B
Markdown
Raw Normal View History

2023-06-10 00:41:46 +00:00
# tagger-showdown
2023-06-10 02:19:15 +00:00
attempting to create a more readable evaluation to anime tagger ai systems
idea: take some recent images from danbooru, also include your own
then run x tagger systems against each other
score formula:
(len(tags in ground_truth) - len(tags not in ground_truth)) / len(ground_truth)
then average for all posts
```sh
python3 -m venv env
env/bin/pip install -Ur ./requirements.txt
env/bin/python3 ./main.py
```