Publish character 'manchester (Azur Lane)' to repository, on 2024-01-13 20:34:44 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 +120 -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 manchester/マンチェスター/曼彻斯特 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of manchester/マンチェスター/曼彻斯特 (Azur Lane), containing 29 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `breasts, bangs, large_breasts, grey_hair, green_eyes, hair_bun, maid_headdress, short_hair, hat, nurse_cap, symbol-shaped_pupils`, 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 | 29 | 58.69 MiB | [Download](https://huggingface.co/datasets/CyberHarem/manchester_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 29 | 25.79 MiB | [Download](https://huggingface.co/datasets/CyberHarem/manchester_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 74 | 60.68 MiB | [Download](https://huggingface.co/datasets/CyberHarem/manchester_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 29 | 47.11 MiB | [Download](https://huggingface.co/datasets/CyberHarem/manchester_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 74 | 98.09 MiB | [Download](https://huggingface.co/datasets/CyberHarem/manchester_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/manchester_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 | 14 | ![](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, looking_at_viewer, navel, solo, black_bikini, blush, smile, collarbone, cleavage, open_mouth, twintails, aqua_eyes, maid_bikini, bare_shoulders, black_choker, frilled_bikini, outdoors, sitting, twin_braids, wrist_cuffs, bridal_garter, closed_mouth, nipples, side-tie_bikini_bottom, x_hair_ornament |
|
69 |
+
| 1 | 10 | ![](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, looking_at_viewer, solo, white_gloves, blush, nurse, short_sleeves, shrug_(clothing), white_thighhighs, bra, demon_wings, holding_syringe, demon_tail, heart-shaped_pupils, navel, open_mouth, simple_background, sitting, smile, white_skirt, garter_straps, medium_breasts, single_hair_bun, white_background |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | navel | solo | black_bikini | blush | smile | collarbone | cleavage | open_mouth | twintails | aqua_eyes | maid_bikini | bare_shoulders | black_choker | frilled_bikini | outdoors | sitting | twin_braids | wrist_cuffs | bridal_garter | closed_mouth | nipples | side-tie_bikini_bottom | x_hair_ornament | white_gloves | nurse | short_sleeves | shrug_(clothing) | white_thighhighs | bra | demon_wings | holding_syringe | demon_tail | heart-shaped_pupils | simple_background | white_skirt | garter_straps | medium_breasts | single_hair_bun | white_background |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:--------|:-------|:---------------|:--------|:--------|:-------------|:-----------|:-------------|:------------|:------------|:--------------|:-----------------|:---------------|:-----------------|:-----------|:----------|:--------------|:--------------|:----------------|:---------------|:----------|:-------------------------|:------------------|:---------------|:--------|:----------------|:-------------------|:-------------------|:------|:--------------|:------------------|:-------------|:----------------------|:--------------------|:--------------|:----------------|:-----------------|:------------------|:-------------------|
|
75 |
+
| 0 | 14 | ![](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 | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | |
|
76 |
+
| 1 | 10 | ![](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 | 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:78febee857cd7b6bae4adccc0ea03d19e6ea78e259c99479210b02a5502fef3e
|
3 |
+
size 49398559
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf940f177d770c7874b8c7e7c656602dcbf0e3950074ab589493147a060a9252
|
3 |
+
size 27043448
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a4f4d71bc466c6bbaa215c2ee6895f8ebdbf885a138e860128c9f1ed1167403
|
3 |
+
size 61536970
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2a64c3190400b8214b1bb3f42266b6efd5d74045bb311f88d2895368f7f567e8
|
3 |
+
size 102856632
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:86b90a4049cc20f42490343cdbf24910d93e5628b7b18639ce7ce26cfd4ee718
|
3 |
+
size 63630682
|
meta.json
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 29,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 14,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"looking_at_viewer",
|
11 |
+
"navel",
|
12 |
+
"solo",
|
13 |
+
"black_bikini",
|
14 |
+
"blush",
|
15 |
+
"smile",
|
16 |
+
"collarbone",
|
17 |
+
"cleavage",
|
18 |
+
"open_mouth",
|
19 |
+
"twintails",
|
20 |
+
"aqua_eyes",
|
21 |
+
"maid_bikini",
|
22 |
+
"bare_shoulders",
|
23 |
+
"black_choker",
|
24 |
+
"frilled_bikini",
|
25 |
+
"outdoors",
|
26 |
+
"sitting",
|
27 |
+
"twin_braids",
|
28 |
+
"wrist_cuffs",
|
29 |
+
"bridal_garter",
|
30 |
+
"closed_mouth",
|
31 |
+
"nipples",
|
32 |
+
"side-tie_bikini_bottom",
|
33 |
+
"x_hair_ornament"
|
34 |
+
]
|
35 |
+
},
|
36 |
+
{
|
37 |
+
"id": 1,
|
38 |
+
"size": 10,
|
39 |
+
"tags": [
|
40 |
+
"1girl",
|
41 |
+
"looking_at_viewer",
|
42 |
+
"solo",
|
43 |
+
"white_gloves",
|
44 |
+
"blush",
|
45 |
+
"nurse",
|
46 |
+
"short_sleeves",
|
47 |
+
"shrug_(clothing)",
|
48 |
+
"white_thighhighs",
|
49 |
+
"bra",
|
50 |
+
"demon_wings",
|
51 |
+
"holding_syringe",
|
52 |
+
"demon_tail",
|
53 |
+
"heart-shaped_pupils",
|
54 |
+
"navel",
|
55 |
+
"open_mouth",
|
56 |
+
"simple_background",
|
57 |
+
"sitting",
|
58 |
+
"smile",
|
59 |
+
"white_skirt",
|
60 |
+
"garter_straps",
|
61 |
+
"medium_breasts",
|
62 |
+
"single_hair_bun",
|
63 |
+
"white_background"
|
64 |
+
]
|
65 |
+
}
|
66 |
+
],
|
67 |
+
"core_tags": [
|
68 |
+
"breasts",
|
69 |
+
"bangs",
|
70 |
+
"large_breasts",
|
71 |
+
"grey_hair",
|
72 |
+
"green_eyes",
|
73 |
+
"hair_bun",
|
74 |
+
"maid_headdress",
|
75 |
+
"short_hair",
|
76 |
+
"hat",
|
77 |
+
"nurse_cap",
|
78 |
+
"symbol-shaped_pupils"
|
79 |
+
],
|
80 |
+
"display_name": "manchester/マンチェスター/曼彻斯特 (Azur Lane)",
|
81 |
+
"name": "manchester (Azur Lane)",
|
82 |
+
"packages": {
|
83 |
+
"1200": {
|
84 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
85 |
+
"filename": "dataset-1200.zip",
|
86 |
+
"package_size": 49398559,
|
87 |
+
"size": 29,
|
88 |
+
"type": "IMG+TXT"
|
89 |
+
},
|
90 |
+
"800": {
|
91 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
92 |
+
"filename": "dataset-800.zip",
|
93 |
+
"package_size": 27043448,
|
94 |
+
"size": 29,
|
95 |
+
"type": "IMG+TXT"
|
96 |
+
},
|
97 |
+
"raw": {
|
98 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
99 |
+
"filename": "dataset-raw.zip",
|
100 |
+
"package_size": 61536970,
|
101 |
+
"size": 29,
|
102 |
+
"type": "Waifuc-Raw"
|
103 |
+
},
|
104 |
+
"stage3-p480-1200": {
|
105 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
106 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
107 |
+
"package_size": 102856632,
|
108 |
+
"size": 74,
|
109 |
+
"type": "IMG+TXT"
|
110 |
+
},
|
111 |
+
"stage3-p480-800": {
|
112 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
113 |
+
"filename": "dataset-stage3-p480-800.zip",
|
114 |
+
"package_size": 63630682,
|
115 |
+
"size": 74,
|
116 |
+
"type": "IMG+TXT"
|
117 |
+
}
|
118 |
+
},
|
119 |
+
"version": "v1.5"
|
120 |
+
}
|
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
|