Publish character 'kafka (Arknights)' to repository, on 2024-01-11 03:57:55 UTC
Browse files- README.md +63 -14
- dataset-512x512.zip → dataset-1200.zip +2 -2
- dataset-640x880.zip +0 -3
- dataset-512x704.zip → dataset-800.zip +2 -2
- dataset-raw-stage3.zip +0 -3
- dataset-raw.zip +2 -2
- dataset-stage3-1200.zip +0 -3
- dataset-stage3-640.zip +0 -3
- dataset-stage3-800.zip +0 -3
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +127 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-640x640.zip → samples/0/clu0-sample1.png +2 -2
- 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
- samples/2/clu2-sample0.png +3 -0
- samples/2/clu2-sample1.png +3 -0
- samples/2/clu2-sample2.png +3 -0
- samples/2/clu2-sample3.png +3 -0
- samples/2/clu2-sample4.png +3 -0
README.md
CHANGED
@@ -9,22 +9,71 @@ size_categories:
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
-
# Dataset of
|
13 |
|
14 |
-
This is the dataset of
|
|
|
|
|
15 |
|
16 |
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)).
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
|
21 |
-
|
22 |
-
|
|
23 |
-
|
|
24 |
-
|
|
25 |
-
|
|
26 |
-
|
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
+
# Dataset of kafka/カフカ/卡夫卡 (Arknights)
|
13 |
|
14 |
+
This is the dataset of kafka/カフカ/卡夫卡 (Arknights), containing 58 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, brown_hair, yellow_eyes, bangs, hair_between_eyes, 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 | 58 | 90.49 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kafka_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 58 | 44.82 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kafka_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 143 | 100.37 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kafka_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 58 | 76.56 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kafka_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 143 | 150.07 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kafka_arknights/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/kafka_arknights',
|
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, prison_clothes, smile, solo, white_shirt, chain, orange_jacket, orange_pants, hood_up, looking_at_viewer, shackles, simple_background, white_background, black_hair, closed_mouth, cowboy_shot, holding, nail_polish, official_alternate_costume, red_pants |
|
69 |
+
| 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) | 1girl, looking_at_viewer, solo, hood_up, holding, simple_background, white_background, blush, grin, green_gloves, black_skirt, white_shirt, black_jacket, coat |
|
70 |
+
| 2 | 9 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | 1girl, green_jacket, looking_at_viewer, solo, red_skirt, long_sleeves, red_ribbon, smile, white_socks, black_footwear, bow, full_body, ponytail, brown_eyes, hair_ribbon, holding, box, closed_mouth, gift, official_alternate_costume, shoes, simple_background, white_background |
|
71 |
+
|
72 |
+
### Table Version
|
73 |
+
|
74 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | prison_clothes | smile | solo | white_shirt | chain | orange_jacket | orange_pants | hood_up | looking_at_viewer | shackles | simple_background | white_background | black_hair | closed_mouth | cowboy_shot | holding | nail_polish | official_alternate_costume | red_pants | blush | grin | green_gloves | black_skirt | black_jacket | coat | green_jacket | red_skirt | long_sleeves | red_ribbon | white_socks | black_footwear | bow | full_body | ponytail | brown_eyes | hair_ribbon | box | gift | shoes |
|
75 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-----------------|:--------|:-------|:--------------|:--------|:----------------|:---------------|:----------|:--------------------|:-----------|:--------------------|:-------------------|:-------------|:---------------|:--------------|:----------|:--------------|:-----------------------------|:------------|:--------|:-------|:---------------|:--------------|:---------------|:-------|:---------------|:------------|:---------------|:-------------|:--------------|:-----------------|:------|:------------|:-----------|:-------------|:--------------|:------|:-------|:--------|
|
76 |
+
| 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 | X | X | | | | | | | | | | | | | | | | | | | | |
|
77 |
+
| 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 | | X | X | | | | X | | | | X | X | X | X | X | X | | | | | | | | | | | | | | |
|
78 |
+
| 2 | 9 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | X | | X | X | | | | | | X | | X | X | | X | | X | | X | | | | | | | | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
79 |
|
dataset-512x512.zip → dataset-1200.zip
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1cee973903a49daf6b5323139b4c80deae57771d54e801813cdfaf08a268adb
|
3 |
+
size 80281922
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:4153d5b4bead41fc940f3c92674267687ea5b7ec388758cceb9f9ca52394eece
|
3 |
-
size 22520921
|
|
|
|
|
|
|
|
dataset-512x704.zip → dataset-800.zip
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6ac4fde1a8aadfdfabe7b98615a6e4690defcdb5534ffb6c48315f2acc9418f7
|
3 |
+
size 46998562
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:98675c3d084b662197d56e1523850f7f920fce24047578ecd77e1b7039629d22
|
3 |
-
size 80263592
|
|
|
|
|
|
|
|
dataset-raw.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1057d1f6fcc9577b4486767b0295f19d6a06ebcfe384f98fb5ab206659fb411
|
3 |
+
size 94888382
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a0ba41efb6599ba1b0147ab2e6da6026ba0d22f6c56f1eeb6af65a34c34b7d65
|
3 |
-
size 67296095
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e56a6d5e8abd38571d3a1922228fe35d882f35ecd8a3eca5714d2eacbdc82429
|
3 |
-
size 47140337
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0fa218e64251396e0876ecb353653786a172be48a4090dbcbe18b88b381a9415
|
3 |
-
size 57970654
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7cfd7fbf0374071233111a4f9234ec59913a876f3e002fed63dc2308b30b31cf
|
3 |
+
size 157359046
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa3bf6002385933eec5a53ecfcb4aa30853674add742ed86083d243b12052056
|
3 |
+
size 105243700
|
meta.json
CHANGED
@@ -1,4 +1,129 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 58,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 5,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"prison_clothes",
|
11 |
+
"smile",
|
12 |
+
"solo",
|
13 |
+
"white_shirt",
|
14 |
+
"chain",
|
15 |
+
"orange_jacket",
|
16 |
+
"orange_pants",
|
17 |
+
"hood_up",
|
18 |
+
"looking_at_viewer",
|
19 |
+
"shackles",
|
20 |
+
"simple_background",
|
21 |
+
"white_background",
|
22 |
+
"black_hair",
|
23 |
+
"closed_mouth",
|
24 |
+
"cowboy_shot",
|
25 |
+
"holding",
|
26 |
+
"nail_polish",
|
27 |
+
"official_alternate_costume",
|
28 |
+
"red_pants"
|
29 |
+
]
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"id": 1,
|
33 |
+
"size": 15,
|
34 |
+
"tags": [
|
35 |
+
"1girl",
|
36 |
+
"looking_at_viewer",
|
37 |
+
"solo",
|
38 |
+
"hood_up",
|
39 |
+
"holding",
|
40 |
+
"simple_background",
|
41 |
+
"white_background",
|
42 |
+
"blush",
|
43 |
+
"grin",
|
44 |
+
"green_gloves",
|
45 |
+
"black_skirt",
|
46 |
+
"white_shirt",
|
47 |
+
"black_jacket",
|
48 |
+
"coat"
|
49 |
+
]
|
50 |
+
},
|
51 |
+
{
|
52 |
+
"id": 2,
|
53 |
+
"size": 9,
|
54 |
+
"tags": [
|
55 |
+
"1girl",
|
56 |
+
"green_jacket",
|
57 |
+
"looking_at_viewer",
|
58 |
+
"solo",
|
59 |
+
"red_skirt",
|
60 |
+
"long_sleeves",
|
61 |
+
"red_ribbon",
|
62 |
+
"smile",
|
63 |
+
"white_socks",
|
64 |
+
"black_footwear",
|
65 |
+
"bow",
|
66 |
+
"full_body",
|
67 |
+
"ponytail",
|
68 |
+
"brown_eyes",
|
69 |
+
"hair_ribbon",
|
70 |
+
"holding",
|
71 |
+
"box",
|
72 |
+
"closed_mouth",
|
73 |
+
"gift",
|
74 |
+
"official_alternate_costume",
|
75 |
+
"shoes",
|
76 |
+
"simple_background",
|
77 |
+
"white_background"
|
78 |
+
]
|
79 |
+
}
|
80 |
+
],
|
81 |
+
"core_tags": [
|
82 |
+
"long_hair",
|
83 |
+
"brown_hair",
|
84 |
+
"yellow_eyes",
|
85 |
+
"bangs",
|
86 |
+
"hair_between_eyes",
|
87 |
+
"very_long_hair"
|
88 |
+
],
|
89 |
+
"display_name": "kafka/カフカ/卡夫卡 (Arknights)",
|
90 |
+
"name": "kafka (Arknights)",
|
91 |
+
"packages": {
|
92 |
+
"1200": {
|
93 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
94 |
+
"filename": "dataset-1200.zip",
|
95 |
+
"package_size": 80281922,
|
96 |
+
"size": 58,
|
97 |
+
"type": "IMG+TXT"
|
98 |
+
},
|
99 |
+
"800": {
|
100 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
101 |
+
"filename": "dataset-800.zip",
|
102 |
+
"package_size": 46998562,
|
103 |
+
"size": 58,
|
104 |
+
"type": "IMG+TXT"
|
105 |
+
},
|
106 |
+
"raw": {
|
107 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
108 |
+
"filename": "dataset-raw.zip",
|
109 |
+
"package_size": 94888382,
|
110 |
+
"size": 58,
|
111 |
+
"type": "Waifuc-Raw"
|
112 |
+
},
|
113 |
+
"stage3-p480-1200": {
|
114 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
115 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
116 |
+
"package_size": 157359046,
|
117 |
+
"size": 143,
|
118 |
+
"type": "IMG+TXT"
|
119 |
+
},
|
120 |
+
"stage3-p480-800": {
|
121 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
122 |
+
"filename": "dataset-stage3-p480-800.zip",
|
123 |
+
"package_size": 105243700,
|
124 |
+
"size": 143,
|
125 |
+
"type": "IMG+TXT"
|
126 |
+
}
|
127 |
+
},
|
128 |
+
"version": "v1.5"
|
129 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-640x640.zip → samples/0/clu0-sample1.png
RENAMED
File without changes
|
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
|
samples/2/clu2-sample0.png
ADDED
Git LFS Details
|
samples/2/clu2-sample1.png
ADDED
Git LFS Details
|
samples/2/clu2-sample2.png
ADDED
Git LFS Details
|
samples/2/clu2-sample3.png
ADDED
Git LFS Details
|
samples/2/clu2-sample4.png
ADDED
Git LFS Details
|