narugo commited on
Commit
1a19071
1 Parent(s): cf71257

Publish character 'kumuyu (Granblue Fantasy)' to repository, on 2024-01-21 21:50:31 UTC

Browse files
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 kumuyu (Granblue Fantasy)
13
+
14
+ This is the dataset of kumuyu (Granblue Fantasy), containing 16 images and their tags.
15
+
16
+ The core tags of this character are `horns, breasts, large_breasts, twintails, long_hair, brown_eyes, yellow_eyes, low_twintails, grey_hair`, 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 | 16 | 21.32 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kumuyu_granbluefantasy/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 16 | 12.47 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kumuyu_granbluefantasy/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 38 | 25.74 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kumuyu_granbluefantasy/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 16 | 19.06 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kumuyu_granbluefantasy/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 38 | 37.00 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kumuyu_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/kumuyu_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 | 5 | ![](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, blush, draph, solo, looking_at_viewer, collarbone, hood, long_sleeves, open_mouth, sweat, wide_sleeves, breasts_out, inverted_nipples, navel, smile, tears |
69
+
70
+ ### Table Version
71
+
72
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | blush | draph | solo | looking_at_viewer | collarbone | hood | long_sleeves | open_mouth | sweat | wide_sleeves | breasts_out | inverted_nipples | navel | smile | tears |
73
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------|:--------|:-------|:--------------------|:-------------|:-------|:---------------|:-------------|:--------|:---------------|:--------------|:-------------------|:--------|:--------|:--------|
74
+ | 0 | 5 | ![](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 |
75
+
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9abafbeb27c7cb20abad243c5c1bbb17ff81ff7b22bd478ac001103e91ac0cf9
3
+ size 19990045
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14d4ae44052211923fb8529d227023d8b4f9f313809689f2cf1fea3f41b30aeb
3
+ size 13076641
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb7dbd393d412e83fdbe336d3e88378a928ba827a2a95a04fba10e12c2a7dc54
3
+ size 22354441
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acfb695856533ef9e816f2ed2a61e537f3509573df24456df0271fa5e45a540d
3
+ size 38801329
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b6c84e33513c4261f2c241270a5a2d2c019024669bb1b9eafc39bc3c328443c
3
+ size 26993643
meta.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 16,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 5,
8
+ "tags": [
9
+ "1girl",
10
+ "blush",
11
+ "draph",
12
+ "solo",
13
+ "looking_at_viewer",
14
+ "collarbone",
15
+ "hood",
16
+ "long_sleeves",
17
+ "open_mouth",
18
+ "sweat",
19
+ "wide_sleeves",
20
+ "breasts_out",
21
+ "inverted_nipples",
22
+ "navel",
23
+ "smile",
24
+ "tears"
25
+ ]
26
+ }
27
+ ],
28
+ "core_tags": [
29
+ "horns",
30
+ "breasts",
31
+ "large_breasts",
32
+ "twintails",
33
+ "long_hair",
34
+ "brown_eyes",
35
+ "yellow_eyes",
36
+ "low_twintails",
37
+ "grey_hair"
38
+ ],
39
+ "display_name": "kumuyu (Granblue Fantasy)",
40
+ "name": "kumuyu (Granblue Fantasy)",
41
+ "packages": {
42
+ "1200": {
43
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
44
+ "filename": "dataset-1200.zip",
45
+ "package_size": 19990045,
46
+ "size": 16,
47
+ "type": "IMG+TXT"
48
+ },
49
+ "800": {
50
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
51
+ "filename": "dataset-800.zip",
52
+ "package_size": 13076641,
53
+ "size": 16,
54
+ "type": "IMG+TXT"
55
+ },
56
+ "raw": {
57
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
58
+ "filename": "dataset-raw.zip",
59
+ "package_size": 22354441,
60
+ "size": 16,
61
+ "type": "Waifuc-Raw"
62
+ },
63
+ "stage3-p480-1200": {
64
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
65
+ "filename": "dataset-stage3-p480-1200.zip",
66
+ "package_size": 38801329,
67
+ "size": 38,
68
+ "type": "IMG+TXT"
69
+ },
70
+ "stage3-p480-800": {
71
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
72
+ "filename": "dataset-stage3-p480-800.zip",
73
+ "package_size": 26993643,
74
+ "size": 38,
75
+ "type": "IMG+TXT"
76
+ }
77
+ },
78
+ "version": "v1.5"
79
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

  • SHA256: 3b095752bbb3e31a424f754877f1f68fdf775fbcd332181ac37ed169019ddf2b
  • Pointer size: 131 Bytes
  • Size of remote file: 507 kB
samples/0/clu0-sample1.png ADDED

Git LFS Details

  • SHA256: 37870b89c99a9d12250159e020ee9688e885ddce4dafa5b13c2619e8bdfe6240
  • Pointer size: 131 Bytes
  • Size of remote file: 324 kB
samples/0/clu0-sample2.png ADDED

Git LFS Details

  • SHA256: 2ed2e9b5fd920cbe11cc1fcb8247af1e0f8f9902cf5ccf6405e798b18c263595
  • Pointer size: 131 Bytes
  • Size of remote file: 303 kB
samples/0/clu0-sample3.png ADDED

Git LFS Details

  • SHA256: 723e83968eaa31105feebabf61223960d972e35fdead60d60033ee1fa724dea9
  • Pointer size: 131 Bytes
  • Size of remote file: 600 kB
samples/0/clu0-sample4.png ADDED

Git LFS Details

  • SHA256: 26ffd9e6da289a758be9193f824a6eeda63d5a5aa722d01df657ed065fef6806
  • Pointer size: 131 Bytes
  • Size of remote file: 483 kB