Publish character 'hanya (Honkai: Star Rail)' to repository, on 2024-01-13 09:33:29 UTC
Browse files- README.md +77 -0
- dataset-1200.zip +3 -0
- dataset-800.zip +3 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +99 -0
- samples/0/clu0-sample0.png +3 -0
- samples/0/clu0-sample1.png +3 -0
- 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
README.md
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 hanya/寒鴉/寒鸦/한아 (Honkai: Star Rail)
|
13 |
+
|
14 |
+
This is the dataset of hanya/寒鴉/寒鸦/한아 (Honkai: Star Rail), containing 56 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `bangs, long_hair, breasts, hair_between_eyes, hair_ornament, large_breasts, blue_eyes, grey_hair, horns, blue_hair, grey_eyes`, 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 | 56 | 108.15 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hanya_starrail/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 56 | 51.34 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hanya_starrail/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 143 | 113.65 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hanya_starrail/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 56 | 90.20 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hanya_starrail/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 143 | 168.24 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hanya_starrail/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/hanya_starrail',
|
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 | 7 | ![](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, bare_shoulders, black_gloves, looking_at_viewer, solo, cleavage, elbow_gloves, holding, parted_lips, sitting, thighs, jewelry, blue_dress |
|
69 |
+
| 1 | 5 | ![](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, holding, looking_at_viewer, simple_background, solo, bare_shoulders, black_gloves, closed_mouth, dress, jewelry, white_background, cleavage, elbow_gloves, upper_body, tassel |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | bare_shoulders | black_gloves | looking_at_viewer | solo | cleavage | elbow_gloves | holding | parted_lips | sitting | thighs | jewelry | blue_dress | simple_background | closed_mouth | dress | white_background | upper_body | tassel |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-----------------|:---------------|:--------------------|:-------|:-----------|:---------------|:----------|:--------------|:----------|:---------|:----------|:-------------|:--------------------|:---------------|:--------|:-------------------|:-------------|:---------|
|
75 |
+
| 0 | 7 | ![](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 | | | | | | |
|
76 |
+
| 1 | 5 | ![](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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71081b23c4a3c85ed578d95b8e83977ce4ea47c76796e71d435c18b9af27a201
|
3 |
+
size 94576508
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2172472465a3db4127ba9752521b2b407683c73d24881fde6beacf3ea2e2030a
|
3 |
+
size 53835695
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4affc145d861ae07b86068770f32a9714585633cdf07e3efa5ec2c399b3d4f7a
|
3 |
+
size 113406336
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1953bfbb977b96464b08dc5dcf4ee3391d147f8dde389def8b800c211032b57c
|
3 |
+
size 176409107
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:70efb6e05dcd5ae6ef72eba9bfe2e9d0893c65dfe6024f2ba2a72a918f8646b4
|
3 |
+
size 119174914
|
meta.json
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 56,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 7,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"bare_shoulders",
|
11 |
+
"black_gloves",
|
12 |
+
"looking_at_viewer",
|
13 |
+
"solo",
|
14 |
+
"cleavage",
|
15 |
+
"elbow_gloves",
|
16 |
+
"holding",
|
17 |
+
"parted_lips",
|
18 |
+
"sitting",
|
19 |
+
"thighs",
|
20 |
+
"jewelry",
|
21 |
+
"blue_dress"
|
22 |
+
]
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"id": 1,
|
26 |
+
"size": 5,
|
27 |
+
"tags": [
|
28 |
+
"1girl",
|
29 |
+
"holding",
|
30 |
+
"looking_at_viewer",
|
31 |
+
"simple_background",
|
32 |
+
"solo",
|
33 |
+
"bare_shoulders",
|
34 |
+
"black_gloves",
|
35 |
+
"closed_mouth",
|
36 |
+
"dress",
|
37 |
+
"jewelry",
|
38 |
+
"white_background",
|
39 |
+
"cleavage",
|
40 |
+
"elbow_gloves",
|
41 |
+
"upper_body",
|
42 |
+
"tassel"
|
43 |
+
]
|
44 |
+
}
|
45 |
+
],
|
46 |
+
"core_tags": [
|
47 |
+
"bangs",
|
48 |
+
"long_hair",
|
49 |
+
"breasts",
|
50 |
+
"hair_between_eyes",
|
51 |
+
"hair_ornament",
|
52 |
+
"large_breasts",
|
53 |
+
"blue_eyes",
|
54 |
+
"grey_hair",
|
55 |
+
"horns",
|
56 |
+
"blue_hair",
|
57 |
+
"grey_eyes"
|
58 |
+
],
|
59 |
+
"display_name": "hanya/寒鴉/寒鸦/한아 (Honkai: Star Rail)",
|
60 |
+
"name": "hanya (Honkai: Star Rail)",
|
61 |
+
"packages": {
|
62 |
+
"1200": {
|
63 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
64 |
+
"filename": "dataset-1200.zip",
|
65 |
+
"package_size": 94576508,
|
66 |
+
"size": 56,
|
67 |
+
"type": "IMG+TXT"
|
68 |
+
},
|
69 |
+
"800": {
|
70 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
71 |
+
"filename": "dataset-800.zip",
|
72 |
+
"package_size": 53835695,
|
73 |
+
"size": 56,
|
74 |
+
"type": "IMG+TXT"
|
75 |
+
},
|
76 |
+
"raw": {
|
77 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
78 |
+
"filename": "dataset-raw.zip",
|
79 |
+
"package_size": 113406336,
|
80 |
+
"size": 56,
|
81 |
+
"type": "Waifuc-Raw"
|
82 |
+
},
|
83 |
+
"stage3-p480-1200": {
|
84 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
85 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
86 |
+
"package_size": 176409107,
|
87 |
+
"size": 143,
|
88 |
+
"type": "IMG+TXT"
|
89 |
+
},
|
90 |
+
"stage3-p480-800": {
|
91 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
92 |
+
"filename": "dataset-stage3-p480-800.zip",
|
93 |
+
"package_size": 119174914,
|
94 |
+
"size": 143,
|
95 |
+
"type": "IMG+TXT"
|
96 |
+
}
|
97 |
+
},
|
98 |
+
"version": "v1.5"
|
99 |
+
}
|
samples/0/clu0-sample0.png
ADDED
![]() |
Git LFS Details
|
samples/0/clu0-sample1.png
ADDED
![]() |
Git LFS Details
|
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
|