Publish character 'attilio_regolo (Azur Lane)' to repository, on 2024-01-13 23:54:02 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 +83 -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 attilio_regolo/アッティリオ・レゴロ/阿蒂利奥·雷戈洛 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of attilio_regolo/アッティリオ・レゴロ/阿蒂利奥·雷戈洛 (Azur Lane), containing 29 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, purple_eyes, bangs, ahoge, twintails, blonde_hair, very_long_hair, hair_between_eyes, bow, ribbon, hair_ornament, breasts, fang, 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 | 46.25 MiB | [Download](https://huggingface.co/datasets/CyberHarem/attilio_regolo_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 29 | 22.28 MiB | [Download](https://huggingface.co/datasets/CyberHarem/attilio_regolo_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 65 | 47.58 MiB | [Download](https://huggingface.co/datasets/CyberHarem/attilio_regolo_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 | 38.24 MiB | [Download](https://huggingface.co/datasets/CyberHarem/attilio_regolo_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 65 | 75.26 MiB | [Download](https://huggingface.co/datasets/CyberHarem/attilio_regolo_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/attilio_regolo_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 | 29 | ![](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, solo, bare_shoulders, blush, looking_at_viewer, open_mouth, long_sleeves, dress, heart, collarbone, underwear, detached_sleeves, :d, sitting, halterneck |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | bare_shoulders | blush | looking_at_viewer | open_mouth | long_sleeves | dress | heart | collarbone | underwear | detached_sleeves | :d | sitting | halterneck |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:-----------------|:--------|:--------------------|:-------------|:---------------|:--------|:--------|:-------------|:------------|:-------------------|:-----|:----------|:-------------|
|
74 |
+
| 0 | 29 | ![](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:89551204791e929835c7b8db09d75608c529b4cebd1eb8619ab8fe67a5789ca5
|
3 |
+
size 40095864
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0f3a37662e2dabc44ae2eba83bf31e2b6b99d3c0977bde529a56381b7d1a9c9
|
3 |
+
size 23363625
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c36c42e8d5af934e3efae90fc9ec9d9f9ca5eb4f4f809ea8fe3132fbfb9394a
|
3 |
+
size 48499937
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:19a0af707c6e6c9a846828fe0884c20e4347c213def4b9660145a5bf2bcf993b
|
3 |
+
size 78912692
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:53211f09aaed88e525de3db4784eb1b148dff3ffd0bde253e558d00aa8e0017d
|
3 |
+
size 49890766
|
meta.json
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 29,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 29,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"bare_shoulders",
|
12 |
+
"blush",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"open_mouth",
|
15 |
+
"long_sleeves",
|
16 |
+
"dress",
|
17 |
+
"heart",
|
18 |
+
"collarbone",
|
19 |
+
"underwear",
|
20 |
+
"detached_sleeves",
|
21 |
+
":d",
|
22 |
+
"sitting",
|
23 |
+
"halterneck"
|
24 |
+
]
|
25 |
+
}
|
26 |
+
],
|
27 |
+
"core_tags": [
|
28 |
+
"long_hair",
|
29 |
+
"purple_eyes",
|
30 |
+
"bangs",
|
31 |
+
"ahoge",
|
32 |
+
"twintails",
|
33 |
+
"blonde_hair",
|
34 |
+
"very_long_hair",
|
35 |
+
"hair_between_eyes",
|
36 |
+
"bow",
|
37 |
+
"ribbon",
|
38 |
+
"hair_ornament",
|
39 |
+
"breasts",
|
40 |
+
"fang",
|
41 |
+
"symbol-shaped_pupils"
|
42 |
+
],
|
43 |
+
"display_name": "attilio_regolo/アッティリオ・レゴロ/阿蒂利奥·雷戈洛 (Azur Lane)",
|
44 |
+
"name": "attilio_regolo (Azur Lane)",
|
45 |
+
"packages": {
|
46 |
+
"1200": {
|
47 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
48 |
+
"filename": "dataset-1200.zip",
|
49 |
+
"package_size": 40095864,
|
50 |
+
"size": 29,
|
51 |
+
"type": "IMG+TXT"
|
52 |
+
},
|
53 |
+
"800": {
|
54 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
55 |
+
"filename": "dataset-800.zip",
|
56 |
+
"package_size": 23363625,
|
57 |
+
"size": 29,
|
58 |
+
"type": "IMG+TXT"
|
59 |
+
},
|
60 |
+
"raw": {
|
61 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
62 |
+
"filename": "dataset-raw.zip",
|
63 |
+
"package_size": 48499937,
|
64 |
+
"size": 29,
|
65 |
+
"type": "Waifuc-Raw"
|
66 |
+
},
|
67 |
+
"stage3-p480-1200": {
|
68 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
69 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
70 |
+
"package_size": 78912692,
|
71 |
+
"size": 65,
|
72 |
+
"type": "IMG+TXT"
|
73 |
+
},
|
74 |
+
"stage3-p480-800": {
|
75 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
76 |
+
"filename": "dataset-stage3-p480-800.zip",
|
77 |
+
"package_size": 49890766,
|
78 |
+
"size": 65,
|
79 |
+
"type": "IMG+TXT"
|
80 |
+
}
|
81 |
+
},
|
82 |
+
"version": "v1.5"
|
83 |
+
}
|
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
|