Publish character 'quercus (Arknights)' to repository, on 2024-01-11 08:54:19 UTC
Browse files- README.md +61 -14
- dataset-1200.zip +3 -0
- dataset-640x880.zip +0 -3
- dataset-512x512.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 +101 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x704.zip → samples/0/clu0-sample1.png +2 -2
- dataset-640x640.zip → samples/0/clu0-sample2.png +2 -2
- 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
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 quercus/クエルクス/夏栎 (Arknights)
|
13 |
|
14 |
+
This is the dataset of quercus/クエルクス/夏栎 (Arknights), containing 75 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `animal_ears, long_hair, blonde_hair, breasts, yellow_eyes, cat_ears, large_breasts, tail, animal_ear_fluff`, 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 | 75 | 125.79 MiB | [Download](https://huggingface.co/datasets/CyberHarem/quercus_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 75 | 65.63 MiB | [Download](https://huggingface.co/datasets/CyberHarem/quercus_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 174 | 138.96 MiB | [Download](https://huggingface.co/datasets/CyberHarem/quercus_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 75 | 106.45 MiB | [Download](https://huggingface.co/datasets/CyberHarem/quercus_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 174 | 215.52 MiB | [Download](https://huggingface.co/datasets/CyberHarem/quercus_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/quercus_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 | 8 |  |  |  |  |  | 1girl, looking_at_viewer, solo, upper_body, simple_background, white_background, smile, bare_shoulders, braid, cleavage_cutout, earpiece, heart, parted_lips, black_gloves, covered_navel |
|
69 |
+
| 1 | 16 |  |  |  |  |  | 1girl, solo, cat_girl, cleavage_cutout, smile, looking_at_viewer, black_gloves, cat_tail, closed_mouth, brown_leotard, covered_navel, boots, holding_staff, simple_background, bare_shoulders, fur_trim, hand_up, pants, white_background |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | solo | upper_body | simple_background | white_background | smile | bare_shoulders | braid | cleavage_cutout | earpiece | heart | parted_lips | black_gloves | covered_navel | cat_girl | cat_tail | closed_mouth | brown_leotard | boots | holding_staff | fur_trim | hand_up | pants |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------|:-------------|:--------------------|:-------------------|:--------|:-----------------|:--------|:------------------|:-----------|:--------|:--------------|:---------------|:----------------|:-----------|:-----------|:---------------|:----------------|:--------|:----------------|:-----------|:----------|:--------|
|
75 |
+
| 0 | 8 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | |
|
76 |
+
| 1 | 16 |  |  |  |  |  | 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:96fa7e9323982c288ba4a7240782c797262c519ad8a76e4545827582e99b9561
|
3 |
+
size 111622877
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:3c8360dda0c3945eaca669b2b8cddd69ef8383d384ed43f7cbf682fa58c9dcd4
|
3 |
-
size 22540639
|
|
|
|
|
|
|
|
dataset-512x512.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:04af991ac0101b32f11c2f70c97b97ce323ca67c887ec56b752262e120ba1061
|
3 |
+
size 68812850
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:49ae21e32c8f3c98e9790d79d705690f4bd0360d75d42fe92471e9a3da340615
|
3 |
-
size 110170007
|
|
|
|
|
|
|
|
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:4271962002815b0a287e4e13d11e95a05ef93de2236d16be2f310b5284111bb3
|
3 |
+
size 131897492
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:5fc033bc6d7bdbdf986bfad133815a13259b097a40f3149e9b22dfd5202822f7
|
3 |
-
size 67848943
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:b1b254e493589dd74c5831a1208562c29df497ce53b7b7c6439034228ec4c2f8
|
3 |
-
size 44804526
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:871aa95f863224073832b3fc9b87ba6945ffafe274fdb42cfa37cbb29dc827a6
|
3 |
-
size 57298174
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:27bbde64487fcfbb7c9cc15ca89678b5cd0913eba0fe5d668213fce5ffcc204d
|
3 |
+
size 225993001
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e978ed92ee7ed04d7246eb442b42342db1245d28597026ae82edb16c3062727b
|
3 |
+
size 145708646
|
meta.json
CHANGED
@@ -1,4 +1,103 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 75,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 8,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"looking_at_viewer",
|
11 |
+
"solo",
|
12 |
+
"upper_body",
|
13 |
+
"simple_background",
|
14 |
+
"white_background",
|
15 |
+
"smile",
|
16 |
+
"bare_shoulders",
|
17 |
+
"braid",
|
18 |
+
"cleavage_cutout",
|
19 |
+
"earpiece",
|
20 |
+
"heart",
|
21 |
+
"parted_lips",
|
22 |
+
"black_gloves",
|
23 |
+
"covered_navel"
|
24 |
+
]
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"id": 1,
|
28 |
+
"size": 16,
|
29 |
+
"tags": [
|
30 |
+
"1girl",
|
31 |
+
"solo",
|
32 |
+
"cat_girl",
|
33 |
+
"cleavage_cutout",
|
34 |
+
"smile",
|
35 |
+
"looking_at_viewer",
|
36 |
+
"black_gloves",
|
37 |
+
"cat_tail",
|
38 |
+
"closed_mouth",
|
39 |
+
"brown_leotard",
|
40 |
+
"covered_navel",
|
41 |
+
"boots",
|
42 |
+
"holding_staff",
|
43 |
+
"simple_background",
|
44 |
+
"bare_shoulders",
|
45 |
+
"fur_trim",
|
46 |
+
"hand_up",
|
47 |
+
"pants",
|
48 |
+
"white_background"
|
49 |
+
]
|
50 |
+
}
|
51 |
+
],
|
52 |
+
"core_tags": [
|
53 |
+
"animal_ears",
|
54 |
+
"long_hair",
|
55 |
+
"blonde_hair",
|
56 |
+
"breasts",
|
57 |
+
"yellow_eyes",
|
58 |
+
"cat_ears",
|
59 |
+
"large_breasts",
|
60 |
+
"tail",
|
61 |
+
"animal_ear_fluff"
|
62 |
+
],
|
63 |
+
"display_name": "quercus/クエルクス/夏栎 (Arknights)",
|
64 |
+
"name": "quercus (Arknights)",
|
65 |
+
"packages": {
|
66 |
+
"1200": {
|
67 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
68 |
+
"filename": "dataset-1200.zip",
|
69 |
+
"package_size": 111622877,
|
70 |
+
"size": 75,
|
71 |
+
"type": "IMG+TXT"
|
72 |
+
},
|
73 |
+
"800": {
|
74 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
75 |
+
"filename": "dataset-800.zip",
|
76 |
+
"package_size": 68812850,
|
77 |
+
"size": 75,
|
78 |
+
"type": "IMG+TXT"
|
79 |
+
},
|
80 |
+
"raw": {
|
81 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
82 |
+
"filename": "dataset-raw.zip",
|
83 |
+
"package_size": 131897492,
|
84 |
+
"size": 75,
|
85 |
+
"type": "Waifuc-Raw"
|
86 |
+
},
|
87 |
+
"stage3-p480-1200": {
|
88 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
89 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
90 |
+
"package_size": 225993001,
|
91 |
+
"size": 174,
|
92 |
+
"type": "IMG+TXT"
|
93 |
+
},
|
94 |
+
"stage3-p480-800": {
|
95 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
96 |
+
"filename": "dataset-stage3-p480-800.zip",
|
97 |
+
"package_size": 145708646,
|
98 |
+
"size": 174,
|
99 |
+
"type": "IMG+TXT"
|
100 |
+
}
|
101 |
+
},
|
102 |
+
"version": "v1.5"
|
103 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-512x704.zip → samples/0/clu0-sample1.png
RENAMED
File without changes
|
dataset-640x640.zip → samples/0/clu0-sample2.png
RENAMED
File without changes
|
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
|