Publish character 'matsukaze (Azur Lane)' to repository, on 2024-01-13 20:32:49 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 +76 -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 matsukaze/松風/松风 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of matsukaze/松風/松风 (Azur Lane), containing 21 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `animal_ears, yellow_eyes, black_hair, fox_ears, long_hair, brown_hair, ponytail, tail, multicolored_hair, hair_between_eyes, hair_ornament, bangs, brown_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 | 21 | 20.69 MiB | [Download](https://huggingface.co/datasets/CyberHarem/matsukaze_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 21 | 14.33 MiB | [Download](https://huggingface.co/datasets/CyberHarem/matsukaze_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 47 | 28.13 MiB | [Download](https://huggingface.co/datasets/CyberHarem/matsukaze_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 21 | 18.50 MiB | [Download](https://huggingface.co/datasets/CyberHarem/matsukaze_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 47 | 35.61 MiB | [Download](https://huggingface.co/datasets/CyberHarem/matsukaze_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/matsukaze_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 | 21 | ![](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, open_mouth, looking_at_viewer, solo, hakama_skirt, wide_sleeves, long_sleeves, simple_background, smile |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | open_mouth | looking_at_viewer | solo | hakama_skirt | wide_sleeves | long_sleeves | simple_background | smile |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------------|:--------------------|:-------|:---------------|:---------------|:---------------|:--------------------|:--------|
|
74 |
+
| 0 | 21 | ![](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 |
|
75 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b14640045d65b471b4559d5640d76813c1579183e072b1121fab8e5cacd8ed9
|
3 |
+
size 19403886
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63ba854654fcadd866fb7322b453471db454bc5f69103a6fe8a049b2fce20f53
|
3 |
+
size 15025333
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:795f0803b654f2c7ccb84a2d919806795a4503c5f05431859a4833e42682e406
|
3 |
+
size 21696770
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a717430bc61bf4c7bbd7b923b6b148beed39112fffdc49942ba8137fcb1249d8
|
3 |
+
size 37334946
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e794dacacfbc3e748eaa0a216b7b0c810fb0f6fef81986e5cc1b78e213f637ef
|
3 |
+
size 29494560
|
meta.json
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 21,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 21,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"open_mouth",
|
11 |
+
"looking_at_viewer",
|
12 |
+
"solo",
|
13 |
+
"hakama_skirt",
|
14 |
+
"wide_sleeves",
|
15 |
+
"long_sleeves",
|
16 |
+
"simple_background",
|
17 |
+
"smile"
|
18 |
+
]
|
19 |
+
}
|
20 |
+
],
|
21 |
+
"core_tags": [
|
22 |
+
"animal_ears",
|
23 |
+
"yellow_eyes",
|
24 |
+
"black_hair",
|
25 |
+
"fox_ears",
|
26 |
+
"long_hair",
|
27 |
+
"brown_hair",
|
28 |
+
"ponytail",
|
29 |
+
"tail",
|
30 |
+
"multicolored_hair",
|
31 |
+
"hair_between_eyes",
|
32 |
+
"hair_ornament",
|
33 |
+
"bangs",
|
34 |
+
"brown_eyes"
|
35 |
+
],
|
36 |
+
"display_name": "matsukaze/松風/松风 (Azur Lane)",
|
37 |
+
"name": "matsukaze (Azur Lane)",
|
38 |
+
"packages": {
|
39 |
+
"1200": {
|
40 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
41 |
+
"filename": "dataset-1200.zip",
|
42 |
+
"package_size": 19403886,
|
43 |
+
"size": 21,
|
44 |
+
"type": "IMG+TXT"
|
45 |
+
},
|
46 |
+
"800": {
|
47 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
48 |
+
"filename": "dataset-800.zip",
|
49 |
+
"package_size": 15025333,
|
50 |
+
"size": 21,
|
51 |
+
"type": "IMG+TXT"
|
52 |
+
},
|
53 |
+
"raw": {
|
54 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
55 |
+
"filename": "dataset-raw.zip",
|
56 |
+
"package_size": 21696770,
|
57 |
+
"size": 21,
|
58 |
+
"type": "Waifuc-Raw"
|
59 |
+
},
|
60 |
+
"stage3-p480-1200": {
|
61 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
62 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
63 |
+
"package_size": 37334946,
|
64 |
+
"size": 47,
|
65 |
+
"type": "IMG+TXT"
|
66 |
+
},
|
67 |
+
"stage3-p480-800": {
|
68 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
69 |
+
"filename": "dataset-stage3-p480-800.zip",
|
70 |
+
"package_size": 29494560,
|
71 |
+
"size": 47,
|
72 |
+
"type": "IMG+TXT"
|
73 |
+
}
|
74 |
+
},
|
75 |
+
"version": "v1.5"
|
76 |
+
}
|
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
|