Publish character 'kiev (Azur Lane)' to repository, on 2024-01-13 19:02:58 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 +102 -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 kiev/キエフ/基辅 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of kiev/キエフ/基辅 (Azur Lane), containing 69 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, red_eyes, twintails, breasts, hair_bun, hair_over_one_eye, cone_hair_bun, white_hair, very_long_hair, small_breasts, hat, medium_breasts`, 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 | 69 | 124.83 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kiev_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 69 | 58.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kiev_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 177 | 135.24 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kiev_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 69 | 105.86 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kiev_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 177 | 214.41 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kiev_azurlane/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/kiev_azurlane',
|
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 | 24 | ![](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, solo, white_dress, looking_at_viewer, fur-trimmed_dress, very_long_sleeves, one_eye_covered, pom_pom_hair_ornament, criss-cross_halter, cleavage, fur_hat, thighhighs, white_headwear, standing, sleeves_past_wrists |
|
69 |
+
| 1 | 23 | ![](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) | looking_at_viewer, 1girl, official_alternate_costume, bare_shoulders, solo, one_eye_covered, dress, elbow_gloves, black_gloves, blush, navel_cutout, ribbon, simple_background, white_background |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | bare_shoulders | solo | white_dress | looking_at_viewer | fur-trimmed_dress | very_long_sleeves | one_eye_covered | pom_pom_hair_ornament | criss-cross_halter | cleavage | fur_hat | thighhighs | white_headwear | standing | sleeves_past_wrists | official_alternate_costume | dress | elbow_gloves | black_gloves | blush | navel_cutout | ribbon | simple_background | white_background |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-----------------|:-------|:--------------|:--------------------|:--------------------|:--------------------|:------------------|:------------------------|:---------------------|:-----------|:----------|:-------------|:-----------------|:-----------|:----------------------|:-----------------------------|:--------|:---------------|:---------------|:--------|:---------------|:---------|:--------------------|:-------------------|
|
75 |
+
| 0 | 24 | ![](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 | | | | | | | | | |
|
76 |
+
| 1 | 23 | ![](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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cdb224c68fcac51c27cb6e72c4e9e9e27734f1d10e9d13162001c31708f4494b
|
3 |
+
size 111001661
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:78c341aca9f8418cc4c1d20a2f0a30260c7e8b5bb4f3ddfe5f574c59c2f74166
|
3 |
+
size 61506960
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa830dfed5d8217855a10fd31ec59344f08daf9963bdf0ed4c3887ea59a3da67
|
3 |
+
size 130896769
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80d91ab6c03925f28f8afb457290d70e15ec752f882503f1c3954041b50c9334
|
3 |
+
size 224828245
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13b66eca135d72499e051ff783f3da3a528cb305f540e8e3f9115cc465dccdd8
|
3 |
+
size 141811001
|
meta.json
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 69,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 24,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"bare_shoulders",
|
11 |
+
"solo",
|
12 |
+
"white_dress",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"fur-trimmed_dress",
|
15 |
+
"very_long_sleeves",
|
16 |
+
"one_eye_covered",
|
17 |
+
"pom_pom_hair_ornament",
|
18 |
+
"criss-cross_halter",
|
19 |
+
"cleavage",
|
20 |
+
"fur_hat",
|
21 |
+
"thighhighs",
|
22 |
+
"white_headwear",
|
23 |
+
"standing",
|
24 |
+
"sleeves_past_wrists"
|
25 |
+
]
|
26 |
+
},
|
27 |
+
{
|
28 |
+
"id": 1,
|
29 |
+
"size": 23,
|
30 |
+
"tags": [
|
31 |
+
"looking_at_viewer",
|
32 |
+
"1girl",
|
33 |
+
"official_alternate_costume",
|
34 |
+
"bare_shoulders",
|
35 |
+
"solo",
|
36 |
+
"one_eye_covered",
|
37 |
+
"dress",
|
38 |
+
"elbow_gloves",
|
39 |
+
"black_gloves",
|
40 |
+
"blush",
|
41 |
+
"navel_cutout",
|
42 |
+
"ribbon",
|
43 |
+
"simple_background",
|
44 |
+
"white_background"
|
45 |
+
]
|
46 |
+
}
|
47 |
+
],
|
48 |
+
"core_tags": [
|
49 |
+
"long_hair",
|
50 |
+
"red_eyes",
|
51 |
+
"twintails",
|
52 |
+
"breasts",
|
53 |
+
"hair_bun",
|
54 |
+
"hair_over_one_eye",
|
55 |
+
"cone_hair_bun",
|
56 |
+
"white_hair",
|
57 |
+
"very_long_hair",
|
58 |
+
"small_breasts",
|
59 |
+
"hat",
|
60 |
+
"medium_breasts"
|
61 |
+
],
|
62 |
+
"display_name": "kiev/キエフ/基辅 (Azur Lane)",
|
63 |
+
"name": "kiev (Azur Lane)",
|
64 |
+
"packages": {
|
65 |
+
"1200": {
|
66 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
67 |
+
"filename": "dataset-1200.zip",
|
68 |
+
"package_size": 111001661,
|
69 |
+
"size": 69,
|
70 |
+
"type": "IMG+TXT"
|
71 |
+
},
|
72 |
+
"800": {
|
73 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
74 |
+
"filename": "dataset-800.zip",
|
75 |
+
"package_size": 61506960,
|
76 |
+
"size": 69,
|
77 |
+
"type": "IMG+TXT"
|
78 |
+
},
|
79 |
+
"raw": {
|
80 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
81 |
+
"filename": "dataset-raw.zip",
|
82 |
+
"package_size": 130896769,
|
83 |
+
"size": 69,
|
84 |
+
"type": "Waifuc-Raw"
|
85 |
+
},
|
86 |
+
"stage3-p480-1200": {
|
87 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
88 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
89 |
+
"package_size": 224828245,
|
90 |
+
"size": 177,
|
91 |
+
"type": "IMG+TXT"
|
92 |
+
},
|
93 |
+
"stage3-p480-800": {
|
94 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
95 |
+
"filename": "dataset-stage3-p480-800.zip",
|
96 |
+
"package_size": 141811001,
|
97 |
+
"size": 177,
|
98 |
+
"type": "IMG+TXT"
|
99 |
+
}
|
100 |
+
},
|
101 |
+
"version": "v1.5"
|
102 |
+
}
|
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
|