Publish character 'daikokuten (Fate/Grand Order)' to repository, on 2024-01-13 05:22:12 UTC
Browse files- README.md +77 -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 +94 -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
README.md
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 daikokuten/大黒天/大黑天 (Fate/Grand Order)
|
13 |
+
|
14 |
+
This is the dataset of daikokuten/大黒天/大黑天 (Fate/Grand Order), containing 53 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `animal_ears, mouse_ears, dark-skinned_female, dark_skin, mouse_girl, red_eyes, bangs, white_hair, short_hair, mouse_tail, tail, bow`, 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 | 53 | 44.97 MiB | [Download](https://huggingface.co/datasets/CyberHarem/daikokuten_fgo/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 53 | 33.88 MiB | [Download](https://huggingface.co/datasets/CyberHarem/daikokuten_fgo/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 106 | 62.54 MiB | [Download](https://huggingface.co/datasets/CyberHarem/daikokuten_fgo/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 53 | 41.79 MiB | [Download](https://huggingface.co/datasets/CyberHarem/daikokuten_fgo/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 106 | 77.75 MiB | [Download](https://huggingface.co/datasets/CyberHarem/daikokuten_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/daikokuten_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 | 13 | ![](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) | solo, 1girl, apron, smile, looking_at_viewer, maid_headdress, open_mouth, blush_stickers, long_sleeves, simple_background, white_background, pink_hair, ribbon |
|
69 |
+
| 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) | apron, nurse_cap, armband, 1girl, dress, solo, hairclip, orange_eyes, smile |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | solo | 1girl | apron | smile | looking_at_viewer | maid_headdress | open_mouth | blush_stickers | long_sleeves | simple_background | white_background | pink_hair | ribbon | nurse_cap | armband | dress | hairclip | orange_eyes |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:-------|:--------|:--------|:--------|:--------------------|:-----------------|:-------------|:-----------------|:---------------|:--------------------|:-------------------|:------------|:---------|:------------|:----------|:--------|:-----------|:--------------|
|
75 |
+
| 0 | 13 | ![](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 | | | | | |
|
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 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:951bf3acc2b3bb3666250ead53bca52fbb34cca7ddd4cbd99f3fb97d12cb25d2
|
3 |
+
size 43818186
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e57d4ad5d413dd7e9be9d0cf66c0e85ccb53a367cc98997358dcb79241b86924
|
3 |
+
size 35526755
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3da3761db45826f500be9672e4bbde06fcdc96a6abe62cae90da25eec0e2e8e
|
3 |
+
size 47159085
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:46143d27c89daac945ba44ab517938c01dbd219e5692c0220fcc458d89d08459
|
3 |
+
size 81523951
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bf4fb748edf404725a093898dc78459c263ca41bcb02fa62a2f2a626acf70eb
|
3 |
+
size 65574997
|
meta.json
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 53,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 13,
|
8 |
+
"tags": [
|
9 |
+
"solo",
|
10 |
+
"1girl",
|
11 |
+
"apron",
|
12 |
+
"smile",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"maid_headdress",
|
15 |
+
"open_mouth",
|
16 |
+
"blush_stickers",
|
17 |
+
"long_sleeves",
|
18 |
+
"simple_background",
|
19 |
+
"white_background",
|
20 |
+
"pink_hair",
|
21 |
+
"ribbon"
|
22 |
+
]
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"id": 1,
|
26 |
+
"size": 9,
|
27 |
+
"tags": [
|
28 |
+
"apron",
|
29 |
+
"nurse_cap",
|
30 |
+
"armband",
|
31 |
+
"1girl",
|
32 |
+
"dress",
|
33 |
+
"solo",
|
34 |
+
"hairclip",
|
35 |
+
"orange_eyes",
|
36 |
+
"smile"
|
37 |
+
]
|
38 |
+
}
|
39 |
+
],
|
40 |
+
"core_tags": [
|
41 |
+
"animal_ears",
|
42 |
+
"mouse_ears",
|
43 |
+
"dark-skinned_female",
|
44 |
+
"dark_skin",
|
45 |
+
"mouse_girl",
|
46 |
+
"red_eyes",
|
47 |
+
"bangs",
|
48 |
+
"white_hair",
|
49 |
+
"short_hair",
|
50 |
+
"mouse_tail",
|
51 |
+
"tail",
|
52 |
+
"bow"
|
53 |
+
],
|
54 |
+
"display_name": "daikokuten/大黒天/大黑天 (Fate/Grand Order)",
|
55 |
+
"name": "daikokuten (Fate/Grand Order)",
|
56 |
+
"packages": {
|
57 |
+
"1200": {
|
58 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
59 |
+
"filename": "dataset-1200.zip",
|
60 |
+
"package_size": 43818186,
|
61 |
+
"size": 53,
|
62 |
+
"type": "IMG+TXT"
|
63 |
+
},
|
64 |
+
"800": {
|
65 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
66 |
+
"filename": "dataset-800.zip",
|
67 |
+
"package_size": 35526755,
|
68 |
+
"size": 53,
|
69 |
+
"type": "IMG+TXT"
|
70 |
+
},
|
71 |
+
"raw": {
|
72 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
73 |
+
"filename": "dataset-raw.zip",
|
74 |
+
"package_size": 47159085,
|
75 |
+
"size": 53,
|
76 |
+
"type": "Waifuc-Raw"
|
77 |
+
},
|
78 |
+
"stage3-p480-1200": {
|
79 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
80 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
81 |
+
"package_size": 81523951,
|
82 |
+
"size": 106,
|
83 |
+
"type": "IMG+TXT"
|
84 |
+
},
|
85 |
+
"stage3-p480-800": {
|
86 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
87 |
+
"filename": "dataset-stage3-p480-800.zip",
|
88 |
+
"package_size": 65574997,
|
89 |
+
"size": 106,
|
90 |
+
"type": "IMG+TXT"
|
91 |
+
}
|
92 |
+
},
|
93 |
+
"version": "v1.5"
|
94 |
+
}
|
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
|