Publish character 'sodom_s_beast_draco (Fate/Grand Order)' to repository, on 2024-01-13 01:59:16 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 +124 -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 sodom_s_beast_draco/ソドムズビースト/ドラコー/所多玛之兽/德拉科 (Fate/Grand Order)
|
13 |
+
|
14 |
+
This is the dataset of sodom_s_beast_draco/ソドムズビースト/ドラコー/所多玛之兽/德拉科 (Fate/Grand Order), containing 179 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `blonde_hair, red_eyes, bangs, breasts, hair_intakes, ahoge, facial_mark, braid, hair_bun, long_hair, single_hair_bun, crown, tail, french_braid, dragon_tail, ribbon, hair_ribbon, small_breasts, red_ribbon`, 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 | 179 | 352.74 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sodom_s_beast_draco_fgo/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 179 | 171.11 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sodom_s_beast_draco_fgo/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 472 | 392.10 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sodom_s_beast_draco_fgo/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 179 | 298.25 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sodom_s_beast_draco_fgo/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 472 | 612.56 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sodom_s_beast_draco_fgo/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/sodom_s_beast_draco_fgo',
|
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) | 1girl, criss-cross_halter, elbow_gloves, looking_at_viewer, red_bikini, scales, solo, white_gloves, white_robe, navel, bare_shoulders, open_clothes, smile, thighs, open_mouth |
|
69 |
+
| 1 | 15 | ![](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, bare_shoulders, looking_at_viewer, solo, white_gloves, elbow_gloves, red_dress, scales, halterneck, chalice, smile |
|
70 |
+
| 2 | 13 | ![](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, animal_ears, large_breasts, solo, looking_at_viewer, smile, claws, open_mouth, cleavage, navel, animal_ear_fluff, teeth, thighs |
|
71 |
+
|
72 |
+
### Table Version
|
73 |
+
|
74 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | criss-cross_halter | elbow_gloves | looking_at_viewer | red_bikini | scales | solo | white_gloves | white_robe | navel | bare_shoulders | open_clothes | smile | thighs | open_mouth | red_dress | halterneck | chalice | animal_ears | large_breasts | claws | cleavage | animal_ear_fluff | teeth |
|
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 | | | | | | | | | |
|
77 |
+
| 1 | 15 | ![](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 | | | | | | |
|
78 |
+
| 2 | 13 | ![](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 |
|
79 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfdca61e87842db67608f524cc25d3bb2801059fffef04b00da787670e9876b1
|
3 |
+
size 312734788
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:363fed32d48f9a40fc9fee065e3fce4d7095f48882ce1a527fbcaff0c3b549bf
|
3 |
+
size 179420895
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e396773f1f3e6e76c985e534b7d8a541c3afc59310448b8418686f9a3fd87cd3
|
3 |
+
size 369876217
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b890ec64ffd590b884c592ae309a0941cb5a4af8b9af2ee02faa85a9c346f42e
|
3 |
+
size 642318201
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:865a4296a1144a57acc31603ea1d134ca50f48b4fe70efd1950df976d0977118
|
3 |
+
size 411147373
|
meta.json
ADDED
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 179,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 9,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"criss-cross_halter",
|
11 |
+
"elbow_gloves",
|
12 |
+
"looking_at_viewer",
|
13 |
+
"red_bikini",
|
14 |
+
"scales",
|
15 |
+
"solo",
|
16 |
+
"white_gloves",
|
17 |
+
"white_robe",
|
18 |
+
"navel",
|
19 |
+
"bare_shoulders",
|
20 |
+
"open_clothes",
|
21 |
+
"smile",
|
22 |
+
"thighs",
|
23 |
+
"open_mouth"
|
24 |
+
]
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"id": 1,
|
28 |
+
"size": 15,
|
29 |
+
"tags": [
|
30 |
+
"1girl",
|
31 |
+
"bare_shoulders",
|
32 |
+
"looking_at_viewer",
|
33 |
+
"solo",
|
34 |
+
"white_gloves",
|
35 |
+
"elbow_gloves",
|
36 |
+
"red_dress",
|
37 |
+
"scales",
|
38 |
+
"halterneck",
|
39 |
+
"chalice",
|
40 |
+
"smile"
|
41 |
+
]
|
42 |
+
},
|
43 |
+
{
|
44 |
+
"id": 2,
|
45 |
+
"size": 13,
|
46 |
+
"tags": [
|
47 |
+
"1girl",
|
48 |
+
"animal_ears",
|
49 |
+
"large_breasts",
|
50 |
+
"solo",
|
51 |
+
"looking_at_viewer",
|
52 |
+
"smile",
|
53 |
+
"claws",
|
54 |
+
"open_mouth",
|
55 |
+
"cleavage",
|
56 |
+
"navel",
|
57 |
+
"animal_ear_fluff",
|
58 |
+
"teeth",
|
59 |
+
"thighs"
|
60 |
+
]
|
61 |
+
}
|
62 |
+
],
|
63 |
+
"core_tags": [
|
64 |
+
"blonde_hair",
|
65 |
+
"red_eyes",
|
66 |
+
"bangs",
|
67 |
+
"breasts",
|
68 |
+
"hair_intakes",
|
69 |
+
"ahoge",
|
70 |
+
"facial_mark",
|
71 |
+
"braid",
|
72 |
+
"hair_bun",
|
73 |
+
"long_hair",
|
74 |
+
"single_hair_bun",
|
75 |
+
"crown",
|
76 |
+
"tail",
|
77 |
+
"french_braid",
|
78 |
+
"dragon_tail",
|
79 |
+
"ribbon",
|
80 |
+
"hair_ribbon",
|
81 |
+
"small_breasts",
|
82 |
+
"red_ribbon"
|
83 |
+
],
|
84 |
+
"display_name": "sodom_s_beast_draco/ソドムズビースト/ドラコー/所多玛之兽/德拉科 (Fate/Grand Order)",
|
85 |
+
"name": "sodom_s_beast_draco (Fate/Grand Order)",
|
86 |
+
"packages": {
|
87 |
+
"1200": {
|
88 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
89 |
+
"filename": "dataset-1200.zip",
|
90 |
+
"package_size": 312734788,
|
91 |
+
"size": 179,
|
92 |
+
"type": "IMG+TXT"
|
93 |
+
},
|
94 |
+
"800": {
|
95 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
96 |
+
"filename": "dataset-800.zip",
|
97 |
+
"package_size": 179420895,
|
98 |
+
"size": 179,
|
99 |
+
"type": "IMG+TXT"
|
100 |
+
},
|
101 |
+
"raw": {
|
102 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
103 |
+
"filename": "dataset-raw.zip",
|
104 |
+
"package_size": 369876217,
|
105 |
+
"size": 179,
|
106 |
+
"type": "Waifuc-Raw"
|
107 |
+
},
|
108 |
+
"stage3-p480-1200": {
|
109 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
110 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
111 |
+
"package_size": 642318201,
|
112 |
+
"size": 472,
|
113 |
+
"type": "IMG+TXT"
|
114 |
+
},
|
115 |
+
"stage3-p480-800": {
|
116 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
117 |
+
"filename": "dataset-stage3-p480-800.zip",
|
118 |
+
"package_size": 411147373,
|
119 |
+
"size": 472,
|
120 |
+
"type": "IMG+TXT"
|
121 |
+
}
|
122 |
+
},
|
123 |
+
"version": "v1.5"
|
124 |
+
}
|
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
|