narugo commited on
Commit
6a5f451
1 Parent(s): ef60b2c

Publish character 'blue (Pokémon)' to repository, on 2024-01-16 14:33:05 UTC

Browse files
README.md CHANGED
@@ -3,7 +3,6 @@ license: mit
3
  task_categories:
4
  - text-to-image
5
  tags:
6
- - not-for-all-audiences
7
  - art
8
  - not-for-all-audiences
9
  size_categories:
@@ -12,6 +11,67 @@ size_categories:
12
 
13
  # Dataset of blue (Pokémon)
14
 
15
- This is the dataset of blue (Pokémon), containing 71 images and their tags.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- 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)).
 
3
  task_categories:
4
  - text-to-image
5
  tags:
 
6
  - art
7
  - not-for-all-audiences
8
  size_categories:
 
11
 
12
  # Dataset of blue (Pokémon)
13
 
14
+ This is the dataset of blue (Pokémon), containing 97 images and their tags.
15
+
16
+ The core tags of this character are `brown_hair, green_eyes, spiked_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 | 97 | 56.29 MiB | [Download](https://huggingface.co/datasets/CyberHarem/blue_pokemon/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 97 | 49.45 MiB | [Download](https://huggingface.co/datasets/CyberHarem/blue_pokemon/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 153 | 78.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/blue_pokemon/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 97 | 55.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/blue_pokemon/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 153 | 87.35 MiB | [Download](https://huggingface.co/datasets/CyberHarem/blue_pokemon/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/blue_pokemon',
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 | 12 | ![](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) | 1boy, holding_poke_ball, male_focus, solo, necklace, poke_ball_(basic), jacket, smile |
69
+ | 1 | 5 | ![](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) | 1boy, bangs, grin, male_focus, necklace, short_hair, brown_eyes, long_sleeves, pokemon_(creature), purple_shirt, teeth, jacket, pants, poke_ball, boots, brown_footwear, holding, one_eye_closed, solo |
70
+
71
+ ### Table Version
72
+
73
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1boy | holding_poke_ball | male_focus | solo | necklace | poke_ball_(basic) | jacket | smile | bangs | grin | short_hair | brown_eyes | long_sleeves | pokemon_(creature) | purple_shirt | teeth | pants | poke_ball | boots | brown_footwear | holding | one_eye_closed |
74
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:-------|:--------------------|:-------------|:-------|:-----------|:--------------------|:---------|:--------|:--------|:-------|:-------------|:-------------|:---------------|:---------------------|:---------------|:--------|:--------|:------------|:--------|:-----------------|:----------|:-----------------|
75
+ | 0 | 12 | ![](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 | | | | | | | | | | | | | | |
76
+ | 1 | 5 | ![](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 | X | X | X | X | X | X | X | X |
77
 
 
dataset-384x512.zip → dataset-1200.zip RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f891d483b74c7ecec16bfe2653cce2a355484d72d2c61685f96f7b3698e28b29
3
- size 12256379
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55f8b5163d85b3f668037ed748a9520518717a90ffcda9164fa46cea08f107f2
3
+ size 58407750
dataset-640x880.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8f3091f4ca9c7ec3fbe55742a20b6ead7554bb006bd8a176155c4e3af4d86072
3
- size 29164206
 
 
 
 
dataset-512x512.zip → dataset-800.zip RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c63c1536e11180170e97c0d302c173043bad9150548f3a7d16a0a1f295d3c88d
3
- size 14371333
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7daa26f74330ac096b4cf9dd9bfe44a5b042bd561c8976662bbe2e2606d283d8
3
+ size 51851940
dataset-raw.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ac16d6cd99f931a737941eacac25293e6f765d7258bc4f8d5e50d887dd39a12e
3
- size 30690987
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44d24c4128bcb87e7be721f575f411c2166bfef11b987c25ada19f656fd04b8b
3
+ size 59027526
dataset-512x704.zip → dataset-stage3-p480-1200.zip RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8c386ff86d8c9c861eaa36538efec5bc7b4e665121fc8bba98f5fec32b041ad
3
- size 20349907
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b318b5e1cf65481c230e3807db9cb9c9ff836d0993518965ff2d9967ce05c1
3
+ size 91588541
dataset-640x640.zip → dataset-stage3-p480-800.zip RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5f984ee87193951a3dbd18d47b9fd435fc211a2ee7112f53984c0869d27d823c
3
- size 20787893
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4c4110eae1e850e669081f65f80644d47f168922fd23bcf6d8cc07f7261a354
3
+ size 81981924
meta.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 97,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 12,
8
+ "tags": [
9
+ "1boy",
10
+ "holding_poke_ball",
11
+ "male_focus",
12
+ "solo",
13
+ "necklace",
14
+ "poke_ball_(basic)",
15
+ "jacket",
16
+ "smile"
17
+ ]
18
+ },
19
+ {
20
+ "id": 1,
21
+ "size": 5,
22
+ "tags": [
23
+ "1boy",
24
+ "bangs",
25
+ "grin",
26
+ "male_focus",
27
+ "necklace",
28
+ "short_hair",
29
+ "brown_eyes",
30
+ "long_sleeves",
31
+ "pokemon_(creature)",
32
+ "purple_shirt",
33
+ "teeth",
34
+ "jacket",
35
+ "pants",
36
+ "poke_ball",
37
+ "boots",
38
+ "brown_footwear",
39
+ "holding",
40
+ "one_eye_closed",
41
+ "solo"
42
+ ]
43
+ }
44
+ ],
45
+ "core_tags": [
46
+ "brown_hair",
47
+ "green_eyes",
48
+ "spiked_hair"
49
+ ],
50
+ "display_name": "blue (Pokémon)",
51
+ "name": "blue (Pokémon)",
52
+ "packages": {
53
+ "1200": {
54
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
55
+ "filename": "dataset-1200.zip",
56
+ "package_size": 58407750,
57
+ "size": 97,
58
+ "type": "IMG+TXT"
59
+ },
60
+ "800": {
61
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
62
+ "filename": "dataset-800.zip",
63
+ "package_size": 51851940,
64
+ "size": 97,
65
+ "type": "IMG+TXT"
66
+ },
67
+ "raw": {
68
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
69
+ "filename": "dataset-raw.zip",
70
+ "package_size": 59027526,
71
+ "size": 97,
72
+ "type": "Waifuc-Raw"
73
+ },
74
+ "stage3-p480-1200": {
75
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
76
+ "filename": "dataset-stage3-p480-1200.zip",
77
+ "package_size": 91588541,
78
+ "size": 153,
79
+ "type": "IMG+TXT"
80
+ },
81
+ "stage3-p480-800": {
82
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
83
+ "filename": "dataset-stage3-p480-800.zip",
84
+ "package_size": 81981924,
85
+ "size": 153,
86
+ "type": "IMG+TXT"
87
+ }
88
+ },
89
+ "version": "v1.5"
90
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

  • SHA256: 42b92e146c8b992c2390b2017a15f5ed0c7e5ffa8ec3b183f320a4d3547e0bd1
  • Pointer size: 131 Bytes
  • Size of remote file: 326 kB
samples/0/clu0-sample1.png ADDED

Git LFS Details

  • SHA256: 7d354e675ad20de4e935e6b8fc97c11cfc57f73a96f52542db7b8c4567a2e3fd
  • Pointer size: 131 Bytes
  • Size of remote file: 216 kB
samples/0/clu0-sample2.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: fc538b51658f8f04bb321007bb97b50ab85573afe2e53b5fdb925fd069e5c0cb
  • Pointer size: 131 Bytes
  • Size of remote file: 566 kB
samples/1/clu1-sample0.png ADDED

Git LFS Details

  • SHA256: da6d9bb4fe6e6483db5f30facf52994d06f309b7b5ffddc58d14b96ceff2419a
  • Pointer size: 131 Bytes
  • Size of remote file: 348 kB
samples/1/clu1-sample1.png ADDED

Git LFS Details

  • SHA256: 4369c09ed75dfdd0e2b091fd92702a0c359b869a6e491cb6c36d99dddcbd739c
  • Pointer size: 131 Bytes
  • Size of remote file: 611 kB
samples/1/clu1-sample2.png ADDED

Git LFS Details

  • SHA256: e45273965f022eda36936471bcefcf47da5ff357b3a6daa207708fff7b5855c7
  • Pointer size: 131 Bytes
  • Size of remote file: 213 kB
samples/1/clu1-sample3.png ADDED

Git LFS Details

  • SHA256: 6d1e805f415fb766175e56a58df255de07bedbdd20b1f3754d03f4a97e443a18
  • Pointer size: 131 Bytes
  • Size of remote file: 409 kB
samples/1/clu1-sample4.png ADDED

Git LFS Details

  • SHA256: 42c1d80009cf15c0d10e432ee18104a23ef705f3082f751974338010eea1f148
  • Pointer size: 131 Bytes
  • Size of remote file: 495 kB