Publish character 'croissant (Arknights)' to repository, on 2024-01-10 13:52:04 UTC
Browse files- README.md +61 -14
- dataset-1200.zip +3 -0
- dataset-640x880.zip +0 -3
- dataset-800.zip +3 -0
- 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 +134 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x512.zip → samples/0/clu0-sample1.png +2 -2
- dataset-512x704.zip → samples/0/clu0-sample2.png +2 -2
- dataset-640x640.zip → samples/0/clu0-sample3.png +2 -2
- 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
README.md
CHANGED
@@ -9,22 +9,69 @@ 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 croissant/クロワッサン/可颂 (Arknights)
|
13 |
|
14 |
+
This is the dataset of croissant/クロワッサン/可颂 (Arknights), containing 198 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `horns, orange_hair, bangs, green_eyes, ahoge, long_hair, breasts, visor_cap, short_hair, cow_horns, fang`, 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 | 198 | 274.40 MiB | [Download](https://huggingface.co/datasets/CyberHarem/croissant_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 198 | 150.58 MiB | [Download](https://huggingface.co/datasets/CyberHarem/croissant_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 433 | 301.86 MiB | [Download](https://huggingface.co/datasets/CyberHarem/croissant_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 198 | 236.69 MiB | [Download](https://huggingface.co/datasets/CyberHarem/croissant_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 433 | 440.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/croissant_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/croissant_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 | 42 | ![](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) | fur-trimmed_jacket, 1girl, open_jacket, black_jacket, solo, midriff, white_gloves, looking_at_viewer, navel, black_shorts, collarbone, long_sleeves, open_mouth, short_shorts, simple_background, cowboy_shot, crop_top, standing, stomach, white_background, cleavage, small_breasts, hair_between_eyes, holding, belt, black_gloves, :d, medium_breasts |
|
69 |
+
| 1 | 6 | ![](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, :d, bare_shoulders, black_shorts, crop_top, midriff, navel, official_alternate_costume, open_mouth, outdoors, short_shorts, stomach, thigh_strap, belt, black_gloves, day, fingerless_gloves, goggles_around_neck, looking_at_viewer, motorcycle, solo, twin_braids, bandaged_arm, blue_sky, cloud, ground_vehicle, holding_hammer, side_braid, standing, arm_up, armpits, binoculars, black_footwear, boots, elbow_gloves, medium_breasts, thighs |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | fur-trimmed_jacket | 1girl | open_jacket | black_jacket | solo | midriff | white_gloves | looking_at_viewer | navel | black_shorts | collarbone | long_sleeves | open_mouth | short_shorts | simple_background | cowboy_shot | crop_top | standing | stomach | white_background | cleavage | small_breasts | hair_between_eyes | holding | belt | black_gloves | :d | medium_breasts | bare_shoulders | official_alternate_costume | outdoors | thigh_strap | day | fingerless_gloves | goggles_around_neck | motorcycle | twin_braids | bandaged_arm | blue_sky | cloud | ground_vehicle | holding_hammer | side_braid | arm_up | armpits | binoculars | black_footwear | boots | elbow_gloves | thighs |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------------------|:--------|:--------------|:---------------|:-------|:----------|:---------------|:--------------------|:--------|:---------------|:-------------|:---------------|:-------------|:---------------|:--------------------|:--------------|:-----------|:-----------|:----------|:-------------------|:-----------|:----------------|:--------------------|:----------|:-------|:---------------|:-----|:-----------------|:-----------------|:-----------------------------|:-----------|:--------------|:------|:--------------------|:----------------------|:-------------|:--------------|:---------------|:-----------|:--------|:-----------------|:-----------------|:-------------|:---------|:----------|:-------------|:-----------------|:--------|:---------------|:---------|
|
75 |
+
| 0 | 42 | ![](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 | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | |
|
76 |
+
| 1 | 6 | ![](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 | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
77 |
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b256c31eb4339d5f70808760b1c453bf1fc5278f79d9d30124203a744731da23
|
3 |
+
size 248186662
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:313352fb921ad019355545cba155906929326f82448a0c1387db1f79422d99bd
|
3 |
-
size 53406156
|
|
|
|
|
|
|
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efe5e48927888c52be53df9ce97d079b6227b07cdc9969a6315861da48f25a11
|
3 |
+
size 157890625
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:3d862cd9ab4d7492ce43fbf815b4f2b28e2af5b2e808f33015c157a4c8ca72bc
|
3 |
-
size 193210072
|
|
|
|
|
|
|
|
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:2a1632e85ae8aba15db50d4b6606d61911ca78a967110f04ca858c65ef11b45e
|
3 |
+
size 287730238
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:829069432273625dd570fe01987b3cc31c5fbe9d7382f68d2e37435c109b9cad
|
3 |
-
size 155974441
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a1f672acab8c5ac6ff8a9bdfffb8bfcd03b83a27566da7d681f3e6b1045a9bb2
|
3 |
-
size 107998290
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0771a96d8649320031c3526f40758ad6ece6b3df4462e40f07ca3e17a73ce332
|
3 |
-
size 131864097
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ea615ee36a7fb1e7a064dd0ff1bed67468b1b0e0129c0907e9ebe1f0ef85425
|
3 |
+
size 461564123
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0063a5fc1fce7f0a320f397cdd493d142df451cfcb54fd68062ca119ab0ccce
|
3 |
+
size 316522195
|
meta.json
CHANGED
@@ -1,4 +1,136 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 198,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 42,
|
8 |
+
"tags": [
|
9 |
+
"fur-trimmed_jacket",
|
10 |
+
"1girl",
|
11 |
+
"open_jacket",
|
12 |
+
"black_jacket",
|
13 |
+
"solo",
|
14 |
+
"midriff",
|
15 |
+
"white_gloves",
|
16 |
+
"looking_at_viewer",
|
17 |
+
"navel",
|
18 |
+
"black_shorts",
|
19 |
+
"collarbone",
|
20 |
+
"long_sleeves",
|
21 |
+
"open_mouth",
|
22 |
+
"short_shorts",
|
23 |
+
"simple_background",
|
24 |
+
"cowboy_shot",
|
25 |
+
"crop_top",
|
26 |
+
"standing",
|
27 |
+
"stomach",
|
28 |
+
"white_background",
|
29 |
+
"cleavage",
|
30 |
+
"small_breasts",
|
31 |
+
"hair_between_eyes",
|
32 |
+
"holding",
|
33 |
+
"belt",
|
34 |
+
"black_gloves",
|
35 |
+
":d",
|
36 |
+
"medium_breasts"
|
37 |
+
]
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"id": 1,
|
41 |
+
"size": 6,
|
42 |
+
"tags": [
|
43 |
+
"1girl",
|
44 |
+
":d",
|
45 |
+
"bare_shoulders",
|
46 |
+
"black_shorts",
|
47 |
+
"crop_top",
|
48 |
+
"midriff",
|
49 |
+
"navel",
|
50 |
+
"official_alternate_costume",
|
51 |
+
"open_mouth",
|
52 |
+
"outdoors",
|
53 |
+
"short_shorts",
|
54 |
+
"stomach",
|
55 |
+
"thigh_strap",
|
56 |
+
"belt",
|
57 |
+
"black_gloves",
|
58 |
+
"day",
|
59 |
+
"fingerless_gloves",
|
60 |
+
"goggles_around_neck",
|
61 |
+
"looking_at_viewer",
|
62 |
+
"motorcycle",
|
63 |
+
"solo",
|
64 |
+
"twin_braids",
|
65 |
+
"bandaged_arm",
|
66 |
+
"blue_sky",
|
67 |
+
"cloud",
|
68 |
+
"ground_vehicle",
|
69 |
+
"holding_hammer",
|
70 |
+
"side_braid",
|
71 |
+
"standing",
|
72 |
+
"arm_up",
|
73 |
+
"armpits",
|
74 |
+
"binoculars",
|
75 |
+
"black_footwear",
|
76 |
+
"boots",
|
77 |
+
"elbow_gloves",
|
78 |
+
"medium_breasts",
|
79 |
+
"thighs"
|
80 |
+
]
|
81 |
+
}
|
82 |
+
],
|
83 |
+
"core_tags": [
|
84 |
+
"horns",
|
85 |
+
"orange_hair",
|
86 |
+
"bangs",
|
87 |
+
"green_eyes",
|
88 |
+
"ahoge",
|
89 |
+
"long_hair",
|
90 |
+
"breasts",
|
91 |
+
"visor_cap",
|
92 |
+
"short_hair",
|
93 |
+
"cow_horns",
|
94 |
+
"fang"
|
95 |
+
],
|
96 |
+
"display_name": "croissant/クロワッサン/可颂 (Arknights)",
|
97 |
+
"name": "croissant (Arknights)",
|
98 |
+
"packages": {
|
99 |
+
"1200": {
|
100 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
101 |
+
"filename": "dataset-1200.zip",
|
102 |
+
"package_size": 248186662,
|
103 |
+
"size": 198,
|
104 |
+
"type": "IMG+TXT"
|
105 |
+
},
|
106 |
+
"800": {
|
107 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
108 |
+
"filename": "dataset-800.zip",
|
109 |
+
"package_size": 157890625,
|
110 |
+
"size": 198,
|
111 |
+
"type": "IMG+TXT"
|
112 |
+
},
|
113 |
+
"raw": {
|
114 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
115 |
+
"filename": "dataset-raw.zip",
|
116 |
+
"package_size": 287730238,
|
117 |
+
"size": 198,
|
118 |
+
"type": "Waifuc-Raw"
|
119 |
+
},
|
120 |
+
"stage3-p480-1200": {
|
121 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
122 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
123 |
+
"package_size": 461564123,
|
124 |
+
"size": 433,
|
125 |
+
"type": "IMG+TXT"
|
126 |
+
},
|
127 |
+
"stage3-p480-800": {
|
128 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
129 |
+
"filename": "dataset-stage3-p480-800.zip",
|
130 |
+
"package_size": 316522195,
|
131 |
+
"size": 433,
|
132 |
+
"type": "IMG+TXT"
|
133 |
+
}
|
134 |
+
},
|
135 |
+
"version": "v1.5"
|
136 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-512x512.zip → samples/0/clu0-sample1.png
RENAMED
File without changes
|
dataset-512x704.zip → samples/0/clu0-sample2.png
RENAMED
File without changes
|
dataset-640x640.zip → samples/0/clu0-sample3.png
RENAMED
File without changes
|
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
|