narugo commited on
Commit
f970688
1 Parent(s): 5080859

Publish character 'pannibal_nox_katena_sukasuka' to repository, on 2024-03-31 16:40:34 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 Pannibal Nox Katena/パニバル・ノク・カテナ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)
13
+
14
+ This is the dataset of Pannibal Nox Katena/パニバル・ノク・カテナ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?), containing 55 images and their tags.
15
+
16
+ The core tags of this character are `purple_hair, short_hair, purple_eyes, hair_over_one_eye`, 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 | 55 | 29.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pannibal_sukasuka/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 1200 | 55 | 29.65 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pannibal_sukasuka/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
26
+ | stage3-p480-1200 | 99 | 50.47 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pannibal_sukasuka/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+
28
+ ### Load Raw Dataset with Waifuc
29
+
30
+ 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
31
+
32
+ ```python
33
+ import os
34
+ import zipfile
35
+
36
+ from huggingface_hub import hf_hub_download
37
+ from waifuc.source import LocalSource
38
+
39
+ # download raw archive file
40
+ zip_file = hf_hub_download(
41
+ repo_id='CyberHarem/pannibal_sukasuka',
42
+ repo_type='dataset',
43
+ filename='dataset-raw.zip',
44
+ )
45
+
46
+ # extract files to your directory
47
+ dataset_dir = 'dataset_dir'
48
+ os.makedirs(dataset_dir, exist_ok=True)
49
+ with zipfile.ZipFile(zip_file, 'r') as zf:
50
+ zf.extractall(dataset_dir)
51
+
52
+ # load the dataset with waifuc
53
+ source = LocalSource(dataset_dir)
54
+ for item in source:
55
+ print(item.image, item.meta['filename'], item.meta['tags'])
56
+ ```
57
+
58
+ ## List of Clusters
59
+
60
+ List of tag clustering result, maybe some outfits can be mined here.
61
+
62
+ ### Raw Text Version
63
+
64
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
65
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:-----------------------------------------------------------------------|
66
+ | 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, wooden_sword, holding_weapon, hoodie, outdoors, hood_down |
67
+ | 1 | 15 | ![](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) | 2girls, pink_hair, smile, open_mouth, hoodie |
68
+
69
+ ### Table Version
70
+
71
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | wooden_sword | holding_weapon | hoodie | outdoors | hood_down | 2girls | pink_hair | smile | open_mouth |
72
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:---------------|:-----------------|:---------|:-----------|:------------|:---------|:------------|:--------|:-------------|
73
+ | 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 | | | | |
74
+ | 1 | 15 | ![](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 |
75
+
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82e75920b97bc0c7d56517a468826d7cedc4ea7b19114592a789940613fe37e8
3
+ size 31088915
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcd64c38f1dd53ab15f5cbf3b1bef58016d3bcad54406060469e124db9ef13b9
3
+ size 31105796
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a19fbb3d19bfd136aedeae3a8e4eed9911a67d5b2131a51269416796170163c
3
+ size 52923463
meta.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": "BangumiBase/sukasuka",
3
+ "base_size": 55,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 17,
8
+ "tags": [
9
+ "1girl",
10
+ "solo",
11
+ "wooden_sword",
12
+ "holding_weapon",
13
+ "hoodie",
14
+ "outdoors",
15
+ "hood_down"
16
+ ]
17
+ },
18
+ {
19
+ "id": 1,
20
+ "size": 15,
21
+ "tags": [
22
+ "2girls",
23
+ "pink_hair",
24
+ "smile",
25
+ "open_mouth",
26
+ "hoodie"
27
+ ]
28
+ }
29
+ ],
30
+ "core_tags": [
31
+ "purple_hair",
32
+ "short_hair",
33
+ "purple_eyes",
34
+ "hair_over_one_eye"
35
+ ],
36
+ "display_name": "Pannibal Nox Katena/パニバル・ノク・カテナ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)",
37
+ "name": "pannibal_nox_katena_sukasuka",
38
+ "packages": {
39
+ "1200": {
40
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
41
+ "filename": "dataset-1200.zip",
42
+ "package_size": 31088915,
43
+ "size": 55,
44
+ "type": "IMG+TXT"
45
+ },
46
+ "raw": {
47
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
48
+ "filename": "dataset-raw.zip",
49
+ "package_size": 31105796,
50
+ "size": 55,
51
+ "type": "Waifuc-Raw"
52
+ },
53
+ "stage3-p480-1200": {
54
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
55
+ "filename": "dataset-stage3-p480-1200.zip",
56
+ "package_size": 52923463,
57
+ "size": 99,
58
+ "type": "IMG+TXT"
59
+ }
60
+ },
61
+ "version": "v1.5.1"
62
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

  • SHA256: 44cf22f509a294074c9df19dc2911ce1e314b1b2bc397ccb1633f04cebc8d7e3
  • Pointer size: 131 Bytes
  • Size of remote file: 242 kB
samples/0/clu0-sample1.png ADDED

Git LFS Details

  • SHA256: 0090b8e28345c77ad2fdee22211bf9be02facd4d301730cc5dd5e2aa6bf239f5
  • Pointer size: 131 Bytes
  • Size of remote file: 242 kB
samples/0/clu0-sample2.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: dcb8ea63ff3a05a3a9083a566ec9bd053f36fd2b0dffc3f058143d6130099bd5
  • Pointer size: 131 Bytes
  • Size of remote file: 262 kB