narugo1992
commited on
Publish character 'chitose (Azur Lane)' to repository, on 2024-01-13 20:55:23 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 +91 -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 chitose/千歳/千岁 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of chitose/千歳/千岁 (Azur Lane), containing 32 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `breasts, long_hair, large_breasts, red_hair, purple_eyes, bangs, hat, mask_on_head, sun_hat`, 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 | 32 | 56.95 MiB | [Download](https://huggingface.co/datasets/CyberHarem/chitose_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 32 | 31.85 MiB | [Download](https://huggingface.co/datasets/CyberHarem/chitose_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 78 | 62.01 MiB | [Download](https://huggingface.co/datasets/CyberHarem/chitose_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 32 | 50.88 MiB | [Download](https://huggingface.co/datasets/CyberHarem/chitose_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 78 | 94.07 MiB | [Download](https://huggingface.co/datasets/CyberHarem/chitose_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/chitose_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 | 13 |  |  |  |  |  | 1girl, looking_at_viewer, red_bikini, straw_hat, solo, side-tie_bikini_bottom, blush, outdoors, purple_hair |
|
69 |
+
| 1 | 13 |  |  |  |  |  | 1girl, looking_at_viewer, fox_mask, solo, bare_shoulders, cleavage, blush, japanese_clothes, skirt, wide_sleeves, simple_background, veil, white_background |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | red_bikini | straw_hat | solo | side-tie_bikini_bottom | blush | outdoors | purple_hair | fox_mask | bare_shoulders | cleavage | japanese_clothes | skirt | wide_sleeves | simple_background | veil | white_background |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------------|:------------|:-------|:-------------------------|:--------|:-----------|:--------------|:-----------|:-----------------|:-----------|:-------------------|:--------|:---------------|:--------------------|:-------|:-------------------|
|
75 |
+
| 0 | 13 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | | | | | | | | | |
|
76 |
+
| 1 | 13 |  |  |  |  |  | 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:071856195eb3d3dc5115d00d0d2e035e85814be6aea5ac8bfae3a61b39d19b06
|
3 |
+
size 53348783
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:572e019ae53c128e37b544e96508d7bc720c05ab4f3ebbbb178d5a1fec90a91d
|
3 |
+
size 33397541
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aedd61ab6d5ab4b9aa7d480d5d22709c7fec93e8f495e01ceaa6fc60ffb5b93d
|
3 |
+
size 59711951
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00a0c022ed7a3514788247bbdacb8c445ae75ecac5f486fbb476219d42b74915
|
3 |
+
size 98639989
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16d1780cd3b47223e1da6cf3dc9b886c2cfe8abf2d7662df40688008a2d45072
|
3 |
+
size 65019539
|
meta.json
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 32,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 13,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"looking_at_viewer",
|
11 |
+
"red_bikini",
|
12 |
+
"straw_hat",
|
13 |
+
"solo",
|
14 |
+
"side-tie_bikini_bottom",
|
15 |
+
"blush",
|
16 |
+
"outdoors",
|
17 |
+
"purple_hair"
|
18 |
+
]
|
19 |
+
},
|
20 |
+
{
|
21 |
+
"id": 1,
|
22 |
+
"size": 13,
|
23 |
+
"tags": [
|
24 |
+
"1girl",
|
25 |
+
"looking_at_viewer",
|
26 |
+
"fox_mask",
|
27 |
+
"solo",
|
28 |
+
"bare_shoulders",
|
29 |
+
"cleavage",
|
30 |
+
"blush",
|
31 |
+
"japanese_clothes",
|
32 |
+
"skirt",
|
33 |
+
"wide_sleeves",
|
34 |
+
"simple_background",
|
35 |
+
"veil",
|
36 |
+
"white_background"
|
37 |
+
]
|
38 |
+
}
|
39 |
+
],
|
40 |
+
"core_tags": [
|
41 |
+
"breasts",
|
42 |
+
"long_hair",
|
43 |
+
"large_breasts",
|
44 |
+
"red_hair",
|
45 |
+
"purple_eyes",
|
46 |
+
"bangs",
|
47 |
+
"hat",
|
48 |
+
"mask_on_head",
|
49 |
+
"sun_hat"
|
50 |
+
],
|
51 |
+
"display_name": "chitose/千歳/千岁 (Azur Lane)",
|
52 |
+
"name": "chitose (Azur Lane)",
|
53 |
+
"packages": {
|
54 |
+
"1200": {
|
55 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
56 |
+
"filename": "dataset-1200.zip",
|
57 |
+
"package_size": 53348783,
|
58 |
+
"size": 32,
|
59 |
+
"type": "IMG+TXT"
|
60 |
+
},
|
61 |
+
"800": {
|
62 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
63 |
+
"filename": "dataset-800.zip",
|
64 |
+
"package_size": 33397541,
|
65 |
+
"size": 32,
|
66 |
+
"type": "IMG+TXT"
|
67 |
+
},
|
68 |
+
"raw": {
|
69 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
70 |
+
"filename": "dataset-raw.zip",
|
71 |
+
"package_size": 59711951,
|
72 |
+
"size": 32,
|
73 |
+
"type": "Waifuc-Raw"
|
74 |
+
},
|
75 |
+
"stage3-p480-1200": {
|
76 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
77 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
78 |
+
"package_size": 98639989,
|
79 |
+
"size": 78,
|
80 |
+
"type": "IMG+TXT"
|
81 |
+
},
|
82 |
+
"stage3-p480-800": {
|
83 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
84 |
+
"filename": "dataset-stage3-p480-800.zip",
|
85 |
+
"package_size": 65019539,
|
86 |
+
"size": 78,
|
87 |
+
"type": "IMG+TXT"
|
88 |
+
}
|
89 |
+
},
|
90 |
+
"version": "v1.5"
|
91 |
+
}
|
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
|