Publish character 'asanagi (Azur Lane)' to repository, on 2024-01-13 20:29:28 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 asanagi/朝凪/朝凪 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of asanagi/朝凪/朝凪 (Azur Lane), containing 34 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `animal_ears, long_hair, bangs, animal_ear_fluff, yellow_eyes, fox_ears, twintails, blunt_bangs, breasts, grey_hair, fox_girl, tail, braid, very_long_hair, fox_tail, small_breasts, bow, white_hair, hair_bow, red_bow, fang`, 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 | 34 | 58.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/asanagi_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 34 | 25.61 MiB | [Download](https://huggingface.co/datasets/CyberHarem/asanagi_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 88 | 60.00 MiB | [Download](https://huggingface.co/datasets/CyberHarem/asanagi_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 34 | 47.47 MiB | [Download](https://huggingface.co/datasets/CyberHarem/asanagi_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 88 | 94.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/asanagi_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/asanagi_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 | 10 | ![](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, white_thighhighs, solo, white_bikini, open_mouth, blush, micro_bikini, navel, smile, collarbone, side-tie_bikini_bottom, armpits, day, skindentation, sky, toeless_legwear |
|
69 |
+
| 1 | 15 | ![](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, solo, looking_at_viewer, detached_sleeves, black_thighhighs, open_mouth, black_gloves, blush, fingerless_gloves, simple_background, leotard, wide_sleeves, :d, japanese_clothes, navel, sword, white_background, bare_shoulders, clothing_cutout, fangs, ribbon_trim, skirt |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | white_thighhighs | solo | white_bikini | open_mouth | blush | micro_bikini | navel | smile | collarbone | side-tie_bikini_bottom | armpits | day | skindentation | sky | toeless_legwear | detached_sleeves | black_thighhighs | black_gloves | fingerless_gloves | simple_background | leotard | wide_sleeves | :d | japanese_clothes | sword | white_background | bare_shoulders | clothing_cutout | fangs | ribbon_trim | skirt |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------------------|:-------|:---------------|:-------------|:--------|:---------------|:--------|:--------|:-------------|:-------------------------|:----------|:------|:----------------|:------|:------------------|:-------------------|:-------------------|:---------------|:--------------------|:--------------------|:----------|:---------------|:-----|:-------------------|:--------|:-------------------|:-----------------|:------------------|:--------|:--------------|:--------|
|
75 |
+
| 0 | 10 | ![](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 | | | | | | | | | | | | | | | | |
|
76 |
+
| 1 | 15 | ![](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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7914469c8a79aa5df933d474fd3419d9f2242c99668ce376a870a33c0632f32b
|
3 |
+
size 49773972
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04f933f3fb3e8a6314df00fa31e3ebd7a705076ded72d865187740b350d59b51
|
3 |
+
size 26859078
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:07d4b474f6e52e5cf9b9f62a0aa366545bfc4c636011717ef0a2fd3cb455dbf9
|
3 |
+
size 61554914
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:407f37aceee211c74cc91a8baf995c148e886de63a25c714d11bf92edd71d020
|
3 |
+
size 98759367
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:45a24242ddbeb96332989addecc2b279d0e55eb1d55a9972defeb542c5e745e5
|
3 |
+
size 62912142
|
meta.json
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 34,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 10,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"looking_at_viewer",
|
11 |
+
"white_thighhighs",
|
12 |
+
"solo",
|
13 |
+
"white_bikini",
|
14 |
+
"open_mouth",
|
15 |
+
"blush",
|
16 |
+
"micro_bikini",
|
17 |
+
"navel",
|
18 |
+
"smile",
|
19 |
+
"collarbone",
|
20 |
+
"side-tie_bikini_bottom",
|
21 |
+
"armpits",
|
22 |
+
"day",
|
23 |
+
"skindentation",
|
24 |
+
"sky",
|
25 |
+
"toeless_legwear"
|
26 |
+
]
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"id": 1,
|
30 |
+
"size": 15,
|
31 |
+
"tags": [
|
32 |
+
"1girl",
|
33 |
+
"solo",
|
34 |
+
"looking_at_viewer",
|
35 |
+
"detached_sleeves",
|
36 |
+
"black_thighhighs",
|
37 |
+
"open_mouth",
|
38 |
+
"black_gloves",
|
39 |
+
"blush",
|
40 |
+
"fingerless_gloves",
|
41 |
+
"simple_background",
|
42 |
+
"leotard",
|
43 |
+
"wide_sleeves",
|
44 |
+
":d",
|
45 |
+
"japanese_clothes",
|
46 |
+
"navel",
|
47 |
+
"sword",
|
48 |
+
"white_background",
|
49 |
+
"bare_shoulders",
|
50 |
+
"clothing_cutout",
|
51 |
+
"fangs",
|
52 |
+
"ribbon_trim",
|
53 |
+
"skirt"
|
54 |
+
]
|
55 |
+
}
|
56 |
+
],
|
57 |
+
"core_tags": [
|
58 |
+
"animal_ears",
|
59 |
+
"long_hair",
|
60 |
+
"bangs",
|
61 |
+
"animal_ear_fluff",
|
62 |
+
"yellow_eyes",
|
63 |
+
"fox_ears",
|
64 |
+
"twintails",
|
65 |
+
"blunt_bangs",
|
66 |
+
"breasts",
|
67 |
+
"grey_hair",
|
68 |
+
"fox_girl",
|
69 |
+
"tail",
|
70 |
+
"braid",
|
71 |
+
"very_long_hair",
|
72 |
+
"fox_tail",
|
73 |
+
"small_breasts",
|
74 |
+
"bow",
|
75 |
+
"white_hair",
|
76 |
+
"hair_bow",
|
77 |
+
"red_bow",
|
78 |
+
"fang"
|
79 |
+
],
|
80 |
+
"display_name": "asanagi/朝凪/朝凪 (Azur Lane)",
|
81 |
+
"name": "asanagi (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": 49773972,
|
87 |
+
"size": 34,
|
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": 26859078,
|
94 |
+
"size": 34,
|
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": 61554914,
|
101 |
+
"size": 34,
|
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": 98759367,
|
108 |
+
"size": 88,
|
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": 62912142,
|
115 |
+
"size": 88,
|
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
|