Publish character 'hans_ludemann (Azur Lane)' to repository, on 2024-01-14 01:29:29 UTC
Browse files- README.md +75 -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 +84 -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
README.md
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 hans_ludemann/ハンス・リューデマン/Z18 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of hans_ludemann/ハンス・リューデマン/Z18 (Azur Lane), containing 22 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `blonde_hair, long_hair, twintails, blue_eyes, hair_ornament, hairclip, hat, bow, fang, breasts, hair_between_eyes, small_breasts, bangs, very_long_hair, black_headwear`, 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 | 22 | 29.75 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hans_ludemann_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 22 | 17.76 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hans_ludemann_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 58 | 39.43 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hans_ludemann_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 22 | 27.03 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hans_ludemann_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 58 | 54.35 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hans_ludemann_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/hans_ludemann_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 | 22 | ![](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) | blush, 1girl, solo, looking_at_viewer, navel, open_mouth, fingerless_gloves, smile, black_gloves, skirt, white_panties, black_thighhighs, jacket, open_clothes, training_bra |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | blush | 1girl | solo | looking_at_viewer | navel | open_mouth | fingerless_gloves | smile | black_gloves | skirt | white_panties | black_thighhighs | jacket | open_clothes | training_bra |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------|:-------|:--------------------|:--------|:-------------|:--------------------|:--------|:---------------|:--------|:----------------|:-------------------|:---------|:---------------|:---------------|
|
74 |
+
| 0 | 22 | ![](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 |
|
75 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0b5069ac167cf4b12ee0cdb40b96676e806a991c377159f0cd599df6f777e2e0
|
3 |
+
size 28338726
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1a9c77362cdb47811ac7442a9ad0d580eca152ab9a9610dc261916139e1d9f79
|
3 |
+
size 18627856
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68e6e2cae06e3f826efa8f13dede0049709160cf6e29dd98551fd44eddf7e290
|
3 |
+
size 31197001
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3c8808b06f11218f33c6e162437aad774023a229c463bb49ed6d812c07b8e65
|
3 |
+
size 56990139
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8cb69060e0229b449a4d161d7c1ce9204d0484a9a87198f8049af33e1d42d4f1
|
3 |
+
size 41348340
|
meta.json
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 22,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 22,
|
8 |
+
"tags": [
|
9 |
+
"blush",
|
10 |
+
"1girl",
|
11 |
+
"solo",
|
12 |
+
"looking_at_viewer",
|
13 |
+
"navel",
|
14 |
+
"open_mouth",
|
15 |
+
"fingerless_gloves",
|
16 |
+
"smile",
|
17 |
+
"black_gloves",
|
18 |
+
"skirt",
|
19 |
+
"white_panties",
|
20 |
+
"black_thighhighs",
|
21 |
+
"jacket",
|
22 |
+
"open_clothes",
|
23 |
+
"training_bra"
|
24 |
+
]
|
25 |
+
}
|
26 |
+
],
|
27 |
+
"core_tags": [
|
28 |
+
"blonde_hair",
|
29 |
+
"long_hair",
|
30 |
+
"twintails",
|
31 |
+
"blue_eyes",
|
32 |
+
"hair_ornament",
|
33 |
+
"hairclip",
|
34 |
+
"hat",
|
35 |
+
"bow",
|
36 |
+
"fang",
|
37 |
+
"breasts",
|
38 |
+
"hair_between_eyes",
|
39 |
+
"small_breasts",
|
40 |
+
"bangs",
|
41 |
+
"very_long_hair",
|
42 |
+
"black_headwear"
|
43 |
+
],
|
44 |
+
"display_name": "hans_ludemann/ハンス・リューデマン/Z18 (Azur Lane)",
|
45 |
+
"name": "hans_ludemann (Azur Lane)",
|
46 |
+
"packages": {
|
47 |
+
"1200": {
|
48 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
49 |
+
"filename": "dataset-1200.zip",
|
50 |
+
"package_size": 28338726,
|
51 |
+
"size": 22,
|
52 |
+
"type": "IMG+TXT"
|
53 |
+
},
|
54 |
+
"800": {
|
55 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
56 |
+
"filename": "dataset-800.zip",
|
57 |
+
"package_size": 18627856,
|
58 |
+
"size": 22,
|
59 |
+
"type": "IMG+TXT"
|
60 |
+
},
|
61 |
+
"raw": {
|
62 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
63 |
+
"filename": "dataset-raw.zip",
|
64 |
+
"package_size": 31197001,
|
65 |
+
"size": 22,
|
66 |
+
"type": "Waifuc-Raw"
|
67 |
+
},
|
68 |
+
"stage3-p480-1200": {
|
69 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
70 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
71 |
+
"package_size": 56990139,
|
72 |
+
"size": 58,
|
73 |
+
"type": "IMG+TXT"
|
74 |
+
},
|
75 |
+
"stage3-p480-800": {
|
76 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
77 |
+
"filename": "dataset-stage3-p480-800.zip",
|
78 |
+
"package_size": 41348340,
|
79 |
+
"size": 58,
|
80 |
+
"type": "IMG+TXT"
|
81 |
+
}
|
82 |
+
},
|
83 |
+
"version": "v1.5"
|
84 |
+
}
|
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
|