Publish character 'lunacub (Arknights)' to repository, on 2024-01-11 07:43:08 UTC
Browse files- README.md +59 -14
- dataset-512x704.zip → dataset-1200.zip +2 -2
- dataset-640x880.zip +0 -3
- dataset-640x640.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 +80 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x512.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
README.md
CHANGED
@@ -9,22 +9,67 @@ 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 lunacub/ルナカブ/子月 (Arknights)
|
13 |
|
14 |
+
This is the dataset of lunacub/ルナカブ/子月 (Arknights), containing 58 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `animal_ears, yellow_eyes, brown_hair, bangs, long_hair, breasts, hair_between_eyes, tail`, 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 | 103.10 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lunacub_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 58 | 49.46 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lunacub_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 143 | 108.64 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lunacub_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 | 86.04 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lunacub_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 143 | 168.61 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lunacub_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/lunacub_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 | 28 |  |  |  |  |  | 1girl, solo, off_shoulder, white_dress, looking_at_viewer, bare_shoulders, open_jacket, simple_background, black_jacket, long_sleeves, sleeveless_dress, arrow_(projectile), white_background, black_gloves, fingerless_gloves, fur-trimmed_jacket, coat, holding_bow_(weapon), infection_monitor_(arknights), quiver |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | off_shoulder | white_dress | looking_at_viewer | bare_shoulders | open_jacket | simple_background | black_jacket | long_sleeves | sleeveless_dress | arrow_(projectile) | white_background | black_gloves | fingerless_gloves | fur-trimmed_jacket | coat | holding_bow_(weapon) | infection_monitor_(arknights) | quiver |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:---------------|:--------------|:--------------------|:-----------------|:--------------|:--------------------|:---------------|:---------------|:-------------------|:---------------------|:-------------------|:---------------|:--------------------|:---------------------|:-------|:-----------------------|:--------------------------------|:---------|
|
74 |
+
| 0 | 28 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
75 |
|
dataset-512x704.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:d6acb8d0a777ac7b33d190f299b6201584557b62e7c37f6993b963f8b82ac8d1
|
3 |
+
size 90223494
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:40e29d7f39c8be23140dfc4e39c608da3927b948180ff7883515daed2ac2c31b
|
3 |
-
size 18046035
|
|
|
|
|
|
|
|
dataset-640x640.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:f116ec5b554dc8a8cbb218d25b49a744170114a8f33b808f2e56be05398386c0
|
3 |
+
size 51864328
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:d270aeb044540e5283e5f4d64fa0681aa9a84f07bf6f92fcca8051c868d4b312
|
3 |
-
size 51024863
|
|
|
|
|
|
|
|
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:68b296dc3ee6c54e8afec43c050b70b65fe110f5a76189d8c7aee2e3a61740ee
|
3 |
+
size 108105512
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:ce5266e2ae7200e86ca154c32843d77a3abe27d47913524428b03507d5d6fae1
|
3 |
-
size 46802791
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:22eaba050b86fa5fc6e89fa6ab62bd121d880bcab169e85e83069415794e8407
|
3 |
-
size 37019879
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:2e8ec8c234b0c0c8a1cb14bccb51d3c32515f6774739a9cc29030b5c4f043c30
|
3 |
-
size 43245002
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fe54abadecc20fcfd3691baa11dd889b7b22658bb3a5bc3a01ac99445cccbb47
|
3 |
+
size 176801736
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3dc3818c2a731a86610fd13df5510f07d374a9a8e44fe979bf7228f07de1e6d0
|
3 |
+
size 113920214
|
meta.json
CHANGED
@@ -1,4 +1,82 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 58,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 28,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"off_shoulder",
|
12 |
+
"white_dress",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"bare_shoulders",
|
15 |
+
"open_jacket",
|
16 |
+
"simple_background",
|
17 |
+
"black_jacket",
|
18 |
+
"long_sleeves",
|
19 |
+
"sleeveless_dress",
|
20 |
+
"arrow_(projectile)",
|
21 |
+
"white_background",
|
22 |
+
"black_gloves",
|
23 |
+
"fingerless_gloves",
|
24 |
+
"fur-trimmed_jacket",
|
25 |
+
"coat",
|
26 |
+
"holding_bow_(weapon)",
|
27 |
+
"infection_monitor_(arknights)",
|
28 |
+
"quiver"
|
29 |
+
]
|
30 |
+
}
|
31 |
+
],
|
32 |
+
"core_tags": [
|
33 |
+
"animal_ears",
|
34 |
+
"yellow_eyes",
|
35 |
+
"brown_hair",
|
36 |
+
"bangs",
|
37 |
+
"long_hair",
|
38 |
+
"breasts",
|
39 |
+
"hair_between_eyes",
|
40 |
+
"tail"
|
41 |
+
],
|
42 |
+
"display_name": "lunacub/ルナカブ/子月 (Arknights)",
|
43 |
+
"name": "lunacub (Arknights)",
|
44 |
+
"packages": {
|
45 |
+
"1200": {
|
46 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
47 |
+
"filename": "dataset-1200.zip",
|
48 |
+
"package_size": 90223494,
|
49 |
+
"size": 58,
|
50 |
+
"type": "IMG+TXT"
|
51 |
+
},
|
52 |
+
"800": {
|
53 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
54 |
+
"filename": "dataset-800.zip",
|
55 |
+
"package_size": 51864328,
|
56 |
+
"size": 58,
|
57 |
+
"type": "IMG+TXT"
|
58 |
+
},
|
59 |
+
"raw": {
|
60 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
61 |
+
"filename": "dataset-raw.zip",
|
62 |
+
"package_size": 108105512,
|
63 |
+
"size": 58,
|
64 |
+
"type": "Waifuc-Raw"
|
65 |
+
},
|
66 |
+
"stage3-p480-1200": {
|
67 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
68 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
69 |
+
"package_size": 176801736,
|
70 |
+
"size": 143,
|
71 |
+
"type": "IMG+TXT"
|
72 |
+
},
|
73 |
+
"stage3-p480-800": {
|
74 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
75 |
+
"filename": "dataset-stage3-p480-800.zip",
|
76 |
+
"package_size": 113920214,
|
77 |
+
"size": 143,
|
78 |
+
"type": "IMG+TXT"
|
79 |
+
}
|
80 |
+
},
|
81 |
+
"version": "v1.5"
|
82 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-512x512.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
|