Publish character 'michiko_tanaka_mahoushoujoniakogarete' to repository, on 2024-03-26 19:03:39 UTC
Browse files- README.md +79 -0
- dataset-1200.zip +3 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- meta.json +116 -0
- samples/0/clu0-sample0.png +3 -0
- samples/0/clu0-sample1.png +3 -0
- samples/0/clu0-sample2.png +3 -0
- samples/0/clu0-sample3.png +3 -0
- samples/0/clu0-sample4.png +3 -0
- samples/1/clu1-sample0.png +3 -0
- samples/1/clu1-sample1.png +3 -0
- samples/1/clu1-sample2.png +3 -0
- samples/1/clu1-sample3.png +3 -0
- samples/1/clu1-sample4.png +3 -0
- samples/2/clu2-sample0.png +3 -0
- samples/2/clu2-sample1.png +3 -0
- samples/2/clu2-sample2.png +3 -0
- samples/2/clu2-sample3.png +3 -0
- samples/2/clu2-sample4.png +3 -0
- samples/3/clu3-sample0.png +3 -0
- samples/3/clu3-sample1.png +3 -0
- samples/3/clu3-sample2.png +3 -0
- samples/3/clu3-sample3.png +3 -0
- samples/3/clu3-sample4.png +3 -0
README.md
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-to-image
|
5 |
+
tags:
|
6 |
+
- art
|
7 |
+
- not-for-all-audiences
|
8 |
+
size_categories:
|
9 |
+
- n<1K
|
10 |
+
---
|
11 |
+
|
12 |
+
# Dataset of Michiko Tanaka/田中みち子 (Mahou Shoujo ni Akogarete)
|
13 |
+
|
14 |
+
This is the dataset of Michiko Tanaka/田中みち子 (Mahou Shoujo ni Akogarete), containing 153 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `black_hair, long_hair, facial_mark, hair_ornament, yellow_eyes, brown_eyes`, which are pruned in this dataset.
|
17 |
+
|
18 |
+
Images are crawled from many sites (e.g. danbooru, pixiv, zerochan ...), the auto-crawling system is powered by [DeepGHS Team](https://github.com/deepghs)([huggingface organization](https://huggingface.co/deepghs)).
|
19 |
+
|
20 |
+
## List of Packages
|
21 |
+
|
22 |
+
| Name | Images | Size | Download | Type | Description |
|
23 |
+
|:-----------------|---------:|:-----------|:---------------------------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|
|
24 |
+
| raw | 153 | 83.78 MiB | [Download](https://huggingface.co/datasets/CyberHarem/michiko_tanaka_mahoushoujoniakogarete/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 1200 | 153 | 83.73 MiB | [Download](https://huggingface.co/datasets/CyberHarem/michiko_tanaka_mahoushoujoniakogarete/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
26 |
+
| stage3-p480-1200 | 256 | 133.16 MiB | [Download](https://huggingface.co/datasets/CyberHarem/michiko_tanaka_mahoushoujoniakogarete/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
|
28 |
+
### Load Raw Dataset with Waifuc
|
29 |
+
|
30 |
+
We provide raw dataset (including tagged images) for [waifuc](https://deepghs.github.io/waifuc/main/tutorials/installation/index.html) loading. If you need this, just run the following code
|
31 |
+
|
32 |
+
```python
|
33 |
+
import os
|
34 |
+
import zipfile
|
35 |
+
|
36 |
+
from huggingface_hub import hf_hub_download
|
37 |
+
from waifuc.source import LocalSource
|
38 |
+
|
39 |
+
# download raw archive file
|
40 |
+
zip_file = hf_hub_download(
|
41 |
+
repo_id='CyberHarem/michiko_tanaka_mahoushoujoniakogarete',
|
42 |
+
repo_type='dataset',
|
43 |
+
filename='dataset-raw.zip',
|
44 |
+
)
|
45 |
+
|
46 |
+
# extract files to your directory
|
47 |
+
dataset_dir = 'dataset_dir'
|
48 |
+
os.makedirs(dataset_dir, exist_ok=True)
|
49 |
+
with zipfile.ZipFile(zip_file, 'r') as zf:
|
50 |
+
zf.extractall(dataset_dir)
|
51 |
+
|
52 |
+
# load the dataset with waifuc
|
53 |
+
source = LocalSource(dataset_dir)
|
54 |
+
for item in source:
|
55 |
+
print(item.image, item.meta['filename'], item.meta['tags'])
|
56 |
+
```
|
57 |
+
|
58 |
+
## List of Clusters
|
59 |
+
|
60 |
+
List of tag clustering result, maybe some outfits can be mined here.
|
61 |
+
|
62 |
+
### Raw Text Version
|
63 |
+
|
64 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
|
65 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
66 |
+
| 0 | 8 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | 1girl, cape, epaulettes, kimono, looking_at_viewer, solo, black_gloves, forehead_mark, holding_whip, obi, breasts |
|
67 |
+
| 1 | 9 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](samples/1/clu1-sample4.png) | 1girl, forehead_mark, solo, epaulettes, japanese_clothes, looking_at_viewer, open_mouth, black_gloves, lipstick |
|
68 |
+
| 2 | 5 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | 1girl, clenched_teeth, forehead_mark, parted_bangs, solo, torn_clothes, obi, sidelocks, white_kimono, outstretched_arms, barefoot |
|
69 |
+
| 3 | 5 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | ![](samples/3/clu3-sample3.png) | ![](samples/3/clu3-sample4.png) | 2girls, open_mouth, yuri, ass, blush, clothed_female_nude_female, forehead_mark, barefoot, bdsm, femdom, all_fours, bound_wrists, bridal_gauntlets, crying, purple_hair, restrained, small_breasts, spanked, sweat, tears, wings |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | cape | epaulettes | kimono | looking_at_viewer | solo | black_gloves | forehead_mark | holding_whip | obi | breasts | japanese_clothes | open_mouth | lipstick | clenched_teeth | parted_bangs | torn_clothes | sidelocks | white_kimono | outstretched_arms | barefoot | 2girls | yuri | ass | blush | clothed_female_nude_female | bdsm | femdom | all_fours | bound_wrists | bridal_gauntlets | crying | purple_hair | restrained | small_breasts | spanked | sweat | tears | wings |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:-------------|:---------|:--------------------|:-------|:---------------|:----------------|:---------------|:------|:----------|:-------------------|:-------------|:-----------|:-----------------|:---------------|:---------------|:------------|:---------------|:--------------------|:-----------|:---------|:-------|:------|:--------|:-----------------------------|:-------|:---------|:------------|:---------------|:-------------------|:---------|:--------------|:-------------|:----------------|:----------|:--------|:--------|:--------|
|
75 |
+
| 0 | 8 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | ![](samples/0/clu0-sample3.png) | ![](samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
|
76 |
+
| 1 | 9 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](samples/1/clu1-sample4.png) | X | | X | | X | X | X | X | | | | X | X | X | | | | | | | | | | | | | | | | | | | | | | | | | |
|
77 |
+
| 2 | 5 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | X | | | | | X | | X | | X | | | | | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | |
|
78 |
+
| 3 | 5 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | ![](samples/3/clu3-sample3.png) | ![](samples/3/clu3-sample4.png) | | | | | | | | X | | | | | X | | | | | | | | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
79 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14098bc22931a5a07e0a8a8e70ae89f559fb0534d7d33e45b767eba989c51918
|
3 |
+
size 87794910
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:179a19e1a5a32d80c1bf6c684aa6830697dea842a1f57c71e53b9ac89b2a9623
|
3 |
+
size 87847576
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6ac9c03a98213c84df1cc194f995f465a083aaf428e0fa837c4724c35d26c80
|
3 |
+
size 139629455
|
meta.json
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": "BangumiBase/mahoushoujoniakogarete",
|
3 |
+
"base_size": 153,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 8,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"cape",
|
11 |
+
"epaulettes",
|
12 |
+
"kimono",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"solo",
|
15 |
+
"black_gloves",
|
16 |
+
"forehead_mark",
|
17 |
+
"holding_whip",
|
18 |
+
"obi",
|
19 |
+
"breasts"
|
20 |
+
]
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"id": 1,
|
24 |
+
"size": 9,
|
25 |
+
"tags": [
|
26 |
+
"1girl",
|
27 |
+
"forehead_mark",
|
28 |
+
"solo",
|
29 |
+
"epaulettes",
|
30 |
+
"japanese_clothes",
|
31 |
+
"looking_at_viewer",
|
32 |
+
"open_mouth",
|
33 |
+
"black_gloves",
|
34 |
+
"lipstick"
|
35 |
+
]
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"id": 2,
|
39 |
+
"size": 5,
|
40 |
+
"tags": [
|
41 |
+
"1girl",
|
42 |
+
"clenched_teeth",
|
43 |
+
"forehead_mark",
|
44 |
+
"parted_bangs",
|
45 |
+
"solo",
|
46 |
+
"torn_clothes",
|
47 |
+
"obi",
|
48 |
+
"sidelocks",
|
49 |
+
"white_kimono",
|
50 |
+
"outstretched_arms",
|
51 |
+
"barefoot"
|
52 |
+
]
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"id": 3,
|
56 |
+
"size": 5,
|
57 |
+
"tags": [
|
58 |
+
"2girls",
|
59 |
+
"open_mouth",
|
60 |
+
"yuri",
|
61 |
+
"ass",
|
62 |
+
"blush",
|
63 |
+
"clothed_female_nude_female",
|
64 |
+
"forehead_mark",
|
65 |
+
"barefoot",
|
66 |
+
"bdsm",
|
67 |
+
"femdom",
|
68 |
+
"all_fours",
|
69 |
+
"bound_wrists",
|
70 |
+
"bridal_gauntlets",
|
71 |
+
"crying",
|
72 |
+
"purple_hair",
|
73 |
+
"restrained",
|
74 |
+
"small_breasts",
|
75 |
+
"spanked",
|
76 |
+
"sweat",
|
77 |
+
"tears",
|
78 |
+
"wings"
|
79 |
+
]
|
80 |
+
}
|
81 |
+
],
|
82 |
+
"core_tags": [
|
83 |
+
"black_hair",
|
84 |
+
"long_hair",
|
85 |
+
"facial_mark",
|
86 |
+
"hair_ornament",
|
87 |
+
"yellow_eyes",
|
88 |
+
"brown_eyes"
|
89 |
+
],
|
90 |
+
"display_name": "Michiko Tanaka/田中みち子 (Mahou Shoujo ni Akogarete)",
|
91 |
+
"name": "michiko_tanaka_mahoushoujoniakogarete",
|
92 |
+
"packages": {
|
93 |
+
"1200": {
|
94 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
95 |
+
"filename": "dataset-1200.zip",
|
96 |
+
"package_size": 87794910,
|
97 |
+
"size": 153,
|
98 |
+
"type": "IMG+TXT"
|
99 |
+
},
|
100 |
+
"raw": {
|
101 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
102 |
+
"filename": "dataset-raw.zip",
|
103 |
+
"package_size": 87847576,
|
104 |
+
"size": 153,
|
105 |
+
"type": "Waifuc-Raw"
|
106 |
+
},
|
107 |
+
"stage3-p480-1200": {
|
108 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
109 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
110 |
+
"package_size": 139629455,
|
111 |
+
"size": 256,
|
112 |
+
"type": "IMG+TXT"
|
113 |
+
}
|
114 |
+
},
|
115 |
+
"version": "v1.5.1"
|
116 |
+
}
|
samples/0/clu0-sample0.png
ADDED
Git LFS Details
|
samples/0/clu0-sample1.png
ADDED
Git LFS Details
|
samples/0/clu0-sample2.png
ADDED
Git LFS Details
|
samples/0/clu0-sample3.png
ADDED
Git LFS Details
|
samples/0/clu0-sample4.png
ADDED
Git LFS Details
|
samples/1/clu1-sample0.png
ADDED
Git LFS Details
|
samples/1/clu1-sample1.png
ADDED
Git LFS Details
|
samples/1/clu1-sample2.png
ADDED
Git LFS Details
|
samples/1/clu1-sample3.png
ADDED
Git LFS Details
|
samples/1/clu1-sample4.png
ADDED
Git LFS Details
|
samples/2/clu2-sample0.png
ADDED
Git LFS Details
|
samples/2/clu2-sample1.png
ADDED
Git LFS Details
|
samples/2/clu2-sample2.png
ADDED
Git LFS Details
|
samples/2/clu2-sample3.png
ADDED
Git LFS Details
|
samples/2/clu2-sample4.png
ADDED
Git LFS Details
|
samples/3/clu3-sample0.png
ADDED
Git LFS Details
|
samples/3/clu3-sample1.png
ADDED
Git LFS Details
|
samples/3/clu3-sample2.png
ADDED
Git LFS Details
|
samples/3/clu3-sample3.png
ADDED
Git LFS Details
|
samples/3/clu3-sample4.png
ADDED
Git LFS Details
|