Publish character 'kolulu (Granblue Fantasy)' to repository, on 2024-01-21 20:13:08 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 kolulu (Granblue Fantasy)
|
13 |
+
|
14 |
+
This is the dataset of kolulu (Granblue Fantasy), containing 45 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `green_hair, hair_over_one_eye, long_hair, dark_skin, dark-skinned_female, green_eyes, hat, breasts`, 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 | 45 | 75.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kolulu_granbluefantasy/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 45 | 39.40 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kolulu_granbluefantasy/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 111 | 86.65 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kolulu_granbluefantasy/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 45 | 64.37 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kolulu_granbluefantasy/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 111 | 130.07 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kolulu_granbluefantasy/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/kolulu_granbluefantasy',
|
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 | 17 | ![](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, solo, navel, hat_flower, outdoors, beach, looking_at_viewer, open_mouth, smile, white_bikini, blush, holding, ocean, sky, day, food |
|
69 |
+
| 1 | 7 | ![](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, bandaged_leg, solo, looking_at_viewer, navel, cloak, holding, staff, closed_mouth, skirt |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | navel | hat_flower | outdoors | beach | looking_at_viewer | open_mouth | smile | white_bikini | blush | holding | ocean | sky | day | food | bandaged_leg | cloak | staff | closed_mouth | skirt |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------|:-------------|:-----------|:--------|:--------------------|:-------------|:--------|:---------------|:--------|:----------|:--------|:------|:------|:-------|:---------------|:--------|:--------|:---------------|:--------|
|
75 |
+
| 0 | 17 | ![](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 | | | | | |
|
76 |
+
| 1 | 7 | ![](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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a65c497fc5c34ed83e4d3b5e61f2755530ab5740f2a2fc5ae52e398c99a98f5
|
3 |
+
size 67496120
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64b800255b7b5a16bdb07e3fca2f0ffc158d57a30675dba6cdb2553da7c02960
|
3 |
+
size 41309112
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffd0c2f22ebc133a4d90e0690f1859c6a16f1306003cd32c52cbb3cd8a0f96df
|
3 |
+
size 78830024
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:345487852a86ffc36f2a6a043b94d79e5b4c13e6847bf9e102baf21075f15813
|
3 |
+
size 136387061
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad65e46c9294468df318f84596f0e43870916bcf3f11caf12394ceb52faeb581
|
3 |
+
size 90855542
|
meta.json
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 45,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 17,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"navel",
|
12 |
+
"hat_flower",
|
13 |
+
"outdoors",
|
14 |
+
"beach",
|
15 |
+
"looking_at_viewer",
|
16 |
+
"open_mouth",
|
17 |
+
"smile",
|
18 |
+
"white_bikini",
|
19 |
+
"blush",
|
20 |
+
"holding",
|
21 |
+
"ocean",
|
22 |
+
"sky",
|
23 |
+
"day",
|
24 |
+
"food"
|
25 |
+
]
|
26 |
+
},
|
27 |
+
{
|
28 |
+
"id": 1,
|
29 |
+
"size": 7,
|
30 |
+
"tags": [
|
31 |
+
"1girl",
|
32 |
+
"bandaged_leg",
|
33 |
+
"solo",
|
34 |
+
"looking_at_viewer",
|
35 |
+
"navel",
|
36 |
+
"cloak",
|
37 |
+
"holding",
|
38 |
+
"staff",
|
39 |
+
"closed_mouth",
|
40 |
+
"skirt"
|
41 |
+
]
|
42 |
+
}
|
43 |
+
],
|
44 |
+
"core_tags": [
|
45 |
+
"green_hair",
|
46 |
+
"hair_over_one_eye",
|
47 |
+
"long_hair",
|
48 |
+
"dark_skin",
|
49 |
+
"dark-skinned_female",
|
50 |
+
"green_eyes",
|
51 |
+
"hat",
|
52 |
+
"breasts"
|
53 |
+
],
|
54 |
+
"display_name": "kolulu (Granblue Fantasy)",
|
55 |
+
"name": "kolulu (Granblue Fantasy)",
|
56 |
+
"packages": {
|
57 |
+
"1200": {
|
58 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
59 |
+
"filename": "dataset-1200.zip",
|
60 |
+
"package_size": 67496120,
|
61 |
+
"size": 45,
|
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": 41309112,
|
68 |
+
"size": 45,
|
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": 78830024,
|
75 |
+
"size": 45,
|
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": 136387061,
|
82 |
+
"size": 111,
|
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": 90855542,
|
89 |
+
"size": 111,
|
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
|