narugo commited on
Commit
d1dd6dd
1 Parent(s): ed3b855

Publish character 'erin (Granblue Fantasy)' to repository, on 2024-01-21 22:08:11 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 erin (Granblue Fantasy)
13
+
14
+ This is the dataset of erin (Granblue Fantasy), containing 25 images and their tags.
15
+
16
+ The core tags of this character are `long_hair, pointy_ears, blue_eyes, hair_ornament, bangs, blue_hair, breasts, very_long_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 | 25 | 32.17 MiB | [Download](https://huggingface.co/datasets/CyberHarem/erin_granbluefantasy/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 25 | 22.12 MiB | [Download](https://huggingface.co/datasets/CyberHarem/erin_granbluefantasy/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 57 | 42.51 MiB | [Download](https://huggingface.co/datasets/CyberHarem/erin_granbluefantasy/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 25 | 30.85 MiB | [Download](https://huggingface.co/datasets/CyberHarem/erin_granbluefantasy/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 57 | 55.09 MiB | [Download](https://huggingface.co/datasets/CyberHarem/erin_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/erin_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, boots, crystal, looking_at_viewer, solo, detached_sleeves, sitting, bare_shoulders, black_footwear, blue_thighhighs, blush, ice, knees_up, open_mouth, see-through, simple_background, sleeveless_dress, white_background |
69
+
70
+ ### Table Version
71
+
72
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | boots | crystal | looking_at_viewer | solo | detached_sleeves | sitting | bare_shoulders | black_footwear | blue_thighhighs | blush | ice | knees_up | open_mouth | see-through | simple_background | sleeveless_dress | white_background |
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 | X | X |
75
+
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ea0b8e5af02ecbe89e3c8bf970599a468245a10cedf9444ec10eb61a0872010
3
+ size 32353292
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f030c2e0a5f90f7a59d8ba977230748673a471872283ec9f9ea9b2733a6a5b5
3
+ size 23193219
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00bb15a229f1c79862b67c0c7690a8b338791b3f1a79c772aa415ac7148af08d
3
+ size 33735883
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fbadd5d63fd01dc540ccf9e78b1b2504943c85a24ff867078e1755f86285837
3
+ size 57761293
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e63114a9eba8b38d65696f5372b22273b27e23d901083390fe2d73d392d39609
3
+ size 44573345
meta.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 25,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 5,
8
+ "tags": [
9
+ "1girl",
10
+ "boots",
11
+ "crystal",
12
+ "looking_at_viewer",
13
+ "solo",
14
+ "detached_sleeves",
15
+ "sitting",
16
+ "bare_shoulders",
17
+ "black_footwear",
18
+ "blue_thighhighs",
19
+ "blush",
20
+ "ice",
21
+ "knees_up",
22
+ "open_mouth",
23
+ "see-through",
24
+ "simple_background",
25
+ "sleeveless_dress",
26
+ "white_background"
27
+ ]
28
+ }
29
+ ],
30
+ "core_tags": [
31
+ "long_hair",
32
+ "pointy_ears",
33
+ "blue_eyes",
34
+ "hair_ornament",
35
+ "bangs",
36
+ "blue_hair",
37
+ "breasts",
38
+ "very_long_hair"
39
+ ],
40
+ "display_name": "erin (Granblue Fantasy)",
41
+ "name": "erin (Granblue Fantasy)",
42
+ "packages": {
43
+ "1200": {
44
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
45
+ "filename": "dataset-1200.zip",
46
+ "package_size": 32353292,
47
+ "size": 25,
48
+ "type": "IMG+TXT"
49
+ },
50
+ "800": {
51
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
52
+ "filename": "dataset-800.zip",
53
+ "package_size": 23193219,
54
+ "size": 25,
55
+ "type": "IMG+TXT"
56
+ },
57
+ "raw": {
58
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
59
+ "filename": "dataset-raw.zip",
60
+ "package_size": 33735883,
61
+ "size": 25,
62
+ "type": "Waifuc-Raw"
63
+ },
64
+ "stage3-p480-1200": {
65
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
66
+ "filename": "dataset-stage3-p480-1200.zip",
67
+ "package_size": 57761293,
68
+ "size": 57,
69
+ "type": "IMG+TXT"
70
+ },
71
+ "stage3-p480-800": {
72
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
73
+ "filename": "dataset-stage3-p480-800.zip",
74
+ "package_size": 44573345,
75
+ "size": 57,
76
+ "type": "IMG+TXT"
77
+ }
78
+ },
79
+ "version": "v1.5"
80
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

  • SHA256: 6663b1dffc3f2a6efbb4aeb0740770c700193f2a5d70a14ce38eacfe9270b8eb
  • Pointer size: 131 Bytes
  • Size of remote file: 368 kB
samples/0/clu0-sample1.png ADDED

Git LFS Details

  • SHA256: 579b6d4326aa0b0fe818e95ba6ec0804c70f47c8c6d70045f3303aae8f0fb726
  • Pointer size: 131 Bytes
  • Size of remote file: 480 kB
samples/0/clu0-sample2.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 9e9dd1a5b8e4c9d616829bf3dacd7f16abbbe291cdd20943ed2b0d7847822fca
  • Pointer size: 131 Bytes
  • Size of remote file: 382 kB