Update README.md
Browse files
README.md
CHANGED
@@ -42,3 +42,28 @@ size_categories:
|
|
42 |
---
|
43 |
|
44 |
# danbooru-wiki-2024
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
---
|
43 |
|
44 |
# danbooru-wiki-2024
|
45 |
+
## About
|
46 |
+
|
47 |
+
Wiki pages about the danbooru tags on [danbooru.donmai.us](https://danbooru.donmai.us/wiki_pages/help:home). The wiki contains the description of each tag and matching to pixiv tags.
|
48 |
+
|
49 |
+
## Usage
|
50 |
+
|
51 |
+
```py
|
52 |
+
from datasets import load_dataset
|
53 |
+
|
54 |
+
ds = load_dataset(
|
55 |
+
"isek-ai/danbooru-wiki-2024",
|
56 |
+
# revision="202406-at20240706", # optional
|
57 |
+
split="train",
|
58 |
+
)
|
59 |
+
```
|
60 |
+
|
61 |
+
The revision name is as same as [isek-ai/danbooru-tags-2024](https://huggingface.co/datasets/isek-ai/danbooru-tags-2024)'s.
|
62 |
+
|
63 |
+
## Dataset curation
|
64 |
+
|
65 |
+
This dataset was firstly filtered from [isek-ai/danbooru-tags-2024](https://huggingface.co/datasets/isek-ai/danbooru-tags-2024), then collected wiki data using [danbooru API](https://danbooru.donmai.us/wiki_pages/help:api).
|
66 |
+
|
67 |
+
The filtering rule:
|
68 |
+
|
69 |
+
- Remove tags used less than 100 times.
|