Publish character 'nishida_satono (Touhou)' to repository, on 2024-01-15 09:37:23 UTC
Browse files- README.md +79 -0
- dataset-1200.zip +3 -0
- dataset-800.zip +3 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +123 -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
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 nishida_satono/里乃爾子田 (Touhou)
|
13 |
+
|
14 |
+
This is the dataset of nishida_satono/里乃爾子田 (Touhou), containing 315 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `brown_hair, hat, black_headwear, bangs, bow, purple_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 | 315 | 249.33 MiB | [Download](https://huggingface.co/datasets/CyberHarem/nishida_satono_touhou/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 315 | 181.19 MiB | [Download](https://huggingface.co/datasets/CyberHarem/nishida_satono_touhou/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 633 | 339.29 MiB | [Download](https://huggingface.co/datasets/CyberHarem/nishida_satono_touhou/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 315 | 233.53 MiB | [Download](https://huggingface.co/datasets/CyberHarem/nishida_satono_touhou/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 633 | 421.00 MiB | [Download](https://huggingface.co/datasets/CyberHarem/nishida_satono_touhou/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
29 |
+
|
30 |
+
### Load Raw Dataset with Waifuc
|
31 |
+
|
32 |
+
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
|
33 |
+
|
34 |
+
```python
|
35 |
+
import os
|
36 |
+
import zipfile
|
37 |
+
|
38 |
+
from huggingface_hub import hf_hub_download
|
39 |
+
from waifuc.source import LocalSource
|
40 |
+
|
41 |
+
# download raw archive file
|
42 |
+
zip_file = hf_hub_download(
|
43 |
+
repo_id='CyberHarem/nishida_satono_touhou',
|
44 |
+
repo_type='dataset',
|
45 |
+
filename='dataset-raw.zip',
|
46 |
+
)
|
47 |
+
|
48 |
+
# extract files to your directory
|
49 |
+
dataset_dir = 'dataset_dir'
|
50 |
+
os.makedirs(dataset_dir, exist_ok=True)
|
51 |
+
with zipfile.ZipFile(zip_file, 'r') as zf:
|
52 |
+
zf.extractall(dataset_dir)
|
53 |
+
|
54 |
+
# load the dataset with waifuc
|
55 |
+
source = LocalSource(dataset_dir)
|
56 |
+
for item in source:
|
57 |
+
print(item.image, item.meta['filename'], item.meta['tags'])
|
58 |
+
```
|
59 |
+
|
60 |
+
## List of Clusters
|
61 |
+
|
62 |
+
List of tag clustering result, maybe some outfits can be mined here.
|
63 |
+
|
64 |
+
### Raw Text Version
|
65 |
+
|
66 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
|
67 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
68 |
+
| 0 | 9 | ![](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) | 2girls, pink_dress, puffy_short_sleeves, short_hair_with_long_locks, smile, green_dress, looking_at_viewer, tate_eboshi, waist_apron, green_hair, pink_eyes, solo_focus, bamboo, frills, white_apron, holding, purple_dress |
|
69 |
+
| 1 | 24 | ![](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, puffy_short_sleeves, short_hair_with_long_locks, solo, waist_apron, looking_at_viewer, pink_dress, smile, open_mouth, tate_eboshi, white_apron, pink_eyes, blush, breasts, holding |
|
70 |
+
| 2 | 42 | ![](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) | black_socks, short_hair_with_long_locks, pink_dress, looking_at_viewer, smile, tate_eboshi, waist_apron, 1girl, solo, kneehighs, pink_footwear, puffy_short_sleeves, holding, simple_background, full_body, mary_janes, white_background, open_mouth, purple_dress |
|
71 |
+
|
72 |
+
### Table Version
|
73 |
+
|
74 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 2girls | pink_dress | puffy_short_sleeves | short_hair_with_long_locks | smile | green_dress | looking_at_viewer | tate_eboshi | waist_apron | green_hair | pink_eyes | solo_focus | bamboo | frills | white_apron | holding | purple_dress | 1girl | solo | open_mouth | blush | breasts | black_socks | kneehighs | pink_footwear | simple_background | full_body | mary_janes | white_background |
|
75 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------|:-------------|:----------------------|:-----------------------------|:--------|:--------------|:--------------------|:--------------|:--------------|:-------------|:------------|:-------------|:---------|:---------|:--------------|:----------|:---------------|:--------|:-------|:-------------|:--------|:----------|:--------------|:------------|:----------------|:--------------------|:------------|:-------------|:-------------------|
|
76 |
+
| 0 | 9 | ![](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 | X | X | X | X | X | X | | | | | | | | | | | | |
|
77 |
+
| 1 | 24 | ![](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 | X | | X | X | X | X | X | | | | | | | |
|
78 |
+
| 2 | 42 | ![](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 | 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:9a332ca281e0515a838bf5e24a226f9b88b11b86f06041979e996ef0532142af
|
3 |
+
size 244872308
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f3487d74279fa1d25641d4cb69b67f92be476cc1ea875439d16c8279dac5cef
|
3 |
+
size 189995626
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9365ca5802fadc9116e50f3248cd15df8660959fbe3aae22dbc7037e5b6aa0a5
|
3 |
+
size 261437607
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9ec02e4e03c474c967eaef04a5e627661ee2e8ca101322fdd7e78c79b1a40741
|
3 |
+
size 441446727
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0314676104238f0d9c36f740d873b6b42f741867e5c34e84067104481c974d0
|
3 |
+
size 355774633
|
meta.json
ADDED
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 315,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 9,
|
8 |
+
"tags": [
|
9 |
+
"2girls",
|
10 |
+
"pink_dress",
|
11 |
+
"puffy_short_sleeves",
|
12 |
+
"short_hair_with_long_locks",
|
13 |
+
"smile",
|
14 |
+
"green_dress",
|
15 |
+
"looking_at_viewer",
|
16 |
+
"tate_eboshi",
|
17 |
+
"waist_apron",
|
18 |
+
"green_hair",
|
19 |
+
"pink_eyes",
|
20 |
+
"solo_focus",
|
21 |
+
"bamboo",
|
22 |
+
"frills",
|
23 |
+
"white_apron",
|
24 |
+
"holding",
|
25 |
+
"purple_dress"
|
26 |
+
]
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"id": 1,
|
30 |
+
"size": 24,
|
31 |
+
"tags": [
|
32 |
+
"1girl",
|
33 |
+
"puffy_short_sleeves",
|
34 |
+
"short_hair_with_long_locks",
|
35 |
+
"solo",
|
36 |
+
"waist_apron",
|
37 |
+
"looking_at_viewer",
|
38 |
+
"pink_dress",
|
39 |
+
"smile",
|
40 |
+
"open_mouth",
|
41 |
+
"tate_eboshi",
|
42 |
+
"white_apron",
|
43 |
+
"pink_eyes",
|
44 |
+
"blush",
|
45 |
+
"breasts",
|
46 |
+
"holding"
|
47 |
+
]
|
48 |
+
},
|
49 |
+
{
|
50 |
+
"id": 2,
|
51 |
+
"size": 42,
|
52 |
+
"tags": [
|
53 |
+
"black_socks",
|
54 |
+
"short_hair_with_long_locks",
|
55 |
+
"pink_dress",
|
56 |
+
"looking_at_viewer",
|
57 |
+
"smile",
|
58 |
+
"tate_eboshi",
|
59 |
+
"waist_apron",
|
60 |
+
"1girl",
|
61 |
+
"solo",
|
62 |
+
"kneehighs",
|
63 |
+
"pink_footwear",
|
64 |
+
"puffy_short_sleeves",
|
65 |
+
"holding",
|
66 |
+
"simple_background",
|
67 |
+
"full_body",
|
68 |
+
"mary_janes",
|
69 |
+
"white_background",
|
70 |
+
"open_mouth",
|
71 |
+
"purple_dress"
|
72 |
+
]
|
73 |
+
}
|
74 |
+
],
|
75 |
+
"core_tags": [
|
76 |
+
"brown_hair",
|
77 |
+
"hat",
|
78 |
+
"black_headwear",
|
79 |
+
"bangs",
|
80 |
+
"bow",
|
81 |
+
"purple_eyes"
|
82 |
+
],
|
83 |
+
"display_name": "nishida_satono/里乃爾子田 (Touhou)",
|
84 |
+
"name": "nishida_satono (Touhou)",
|
85 |
+
"packages": {
|
86 |
+
"1200": {
|
87 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
88 |
+
"filename": "dataset-1200.zip",
|
89 |
+
"package_size": 244872308,
|
90 |
+
"size": 315,
|
91 |
+
"type": "IMG+TXT"
|
92 |
+
},
|
93 |
+
"800": {
|
94 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
95 |
+
"filename": "dataset-800.zip",
|
96 |
+
"package_size": 189995626,
|
97 |
+
"size": 315,
|
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": 261437607,
|
104 |
+
"size": 315,
|
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": 441446727,
|
111 |
+
"size": 633,
|
112 |
+
"type": "IMG+TXT"
|
113 |
+
},
|
114 |
+
"stage3-p480-800": {
|
115 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
116 |
+
"filename": "dataset-stage3-p480-800.zip",
|
117 |
+
"package_size": 355774633,
|
118 |
+
"size": 633,
|
119 |
+
"type": "IMG+TXT"
|
120 |
+
}
|
121 |
+
},
|
122 |
+
"version": "v1.5"
|
123 |
+
}
|
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
|