narugo1992
commited on
Publish character 'hatakaze (Azur Lane)' to repository, on 2024-01-14 07:57:51 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 hatakaze/旗風/旗风 (Azur Lane)
|
| 13 |
+
|
| 14 |
+
This is the dataset of hatakaze/旗風/旗风 (Azur Lane), containing 22 images and their tags.
|
| 15 |
+
|
| 16 |
+
The core tags of this character are `glasses, animal_ears, long_hair, yellow_eyes, round_eyewear, very_long_hair, twintails, braid, tail, breasts, fox_ears`, 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 | 34.33 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hatakaze_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
| 25 |
+
| 800 | 22 | 18.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hatakaze_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
| 26 |
+
| stage3-p480-800 | 58 | 41.24 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hatakaze_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 | 30.29 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hatakaze_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
| 28 |
+
| stage3-p480-1200 | 58 | 59.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/hatakaze_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/hatakaze_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 |  |  |  |  |  | 1girl, solo, looking_at_viewer, wide_sleeves, black_kimono, leaf, long_sleeves, hakama_short_skirt, holding, pleated_skirt, sleeves_past_wrists |
|
| 69 |
+
|
| 70 |
+
### Table Version
|
| 71 |
+
|
| 72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | looking_at_viewer | wide_sleeves | black_kimono | leaf | long_sleeves | hakama_short_skirt | holding | pleated_skirt | sleeves_past_wrists |
|
| 73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------------------|:---------------|:---------------|:-------|:---------------|:---------------------|:----------|:----------------|:----------------------|
|
| 74 |
+
| 0 | 22 |  |  |  |  |  | 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:a6f7b9e23f68cc479103d6b25777ebb01b6623cee61107aef6e1a509c094f59b
|
| 3 |
+
size 31759888
|
dataset-800.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37a2df23ee28d1f4dd80ddae819c4666eac986f926a8360ed5d2c6e8e9590959
|
| 3 |
+
size 19609698
|
dataset-raw.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80f1ea27f25f349fe8dc4a245524430eca5b1e236fc53a7d4768b76f3eb47e13
|
| 3 |
+
size 35993828
|
dataset-stage3-p480-1200.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce7c18c47ccf272bda57f62391808e3b9d73240c42fa81f8c8ffe39314660a87
|
| 3 |
+
size 62602267
|
dataset-stage3-p480-800.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82705bc7d4c42501fa6d8dc95b1b65b106f3088b69b4c4089688b06161d3dc2a
|
| 3 |
+
size 43238707
|
meta.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bangumi": null,
|
| 3 |
+
"base_size": 22,
|
| 4 |
+
"clusters": [
|
| 5 |
+
{
|
| 6 |
+
"id": 0,
|
| 7 |
+
"size": 22,
|
| 8 |
+
"tags": [
|
| 9 |
+
"1girl",
|
| 10 |
+
"solo",
|
| 11 |
+
"looking_at_viewer",
|
| 12 |
+
"wide_sleeves",
|
| 13 |
+
"black_kimono",
|
| 14 |
+
"leaf",
|
| 15 |
+
"long_sleeves",
|
| 16 |
+
"hakama_short_skirt",
|
| 17 |
+
"holding",
|
| 18 |
+
"pleated_skirt",
|
| 19 |
+
"sleeves_past_wrists"
|
| 20 |
+
]
|
| 21 |
+
}
|
| 22 |
+
],
|
| 23 |
+
"core_tags": [
|
| 24 |
+
"glasses",
|
| 25 |
+
"animal_ears",
|
| 26 |
+
"long_hair",
|
| 27 |
+
"yellow_eyes",
|
| 28 |
+
"round_eyewear",
|
| 29 |
+
"very_long_hair",
|
| 30 |
+
"twintails",
|
| 31 |
+
"braid",
|
| 32 |
+
"tail",
|
| 33 |
+
"breasts",
|
| 34 |
+
"fox_ears"
|
| 35 |
+
],
|
| 36 |
+
"display_name": "hatakaze/旗風/旗风 (Azur Lane)",
|
| 37 |
+
"name": "hatakaze (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": 31759888,
|
| 43 |
+
"size": 22,
|
| 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": 19609698,
|
| 50 |
+
"size": 22,
|
| 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": 35993828,
|
| 57 |
+
"size": 22,
|
| 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": 62602267,
|
| 64 |
+
"size": 58,
|
| 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": 43238707,
|
| 71 |
+
"size": 58,
|
| 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
|