Publish character 'mccall (Azur Lane)' to repository, on 2024-01-13 18:46:44 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 +77 -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 mccall/マッコール/麦考尔 (Azur Lane)
|
13 |
+
|
14 |
+
This is the dataset of mccall/マッコール/麦考尔 (Azur Lane), containing 12 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `blue_eyes, hair_ornament, long_hair, ahoge, pink_hair, star_hair_ornament, twintails, low_twintails, hairclip, bangs, hair_between_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 | 12 | 8.04 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mccall_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 12 | 6.03 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mccall_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 25 | 12.03 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mccall_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 12 | 7.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mccall_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 25 | 15.07 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mccall_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/mccall_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 | 12 | ![](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, blush, star_(symbol), popsicle, looking_at_viewer, solo, holding, shoes, short_sleeves, white_background, dress, sailor_collar |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | blush | star_(symbol) | popsicle | looking_at_viewer | solo | holding | shoes | short_sleeves | white_background | dress | sailor_collar |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------|:----------------|:-----------|:--------------------|:-------|:----------|:--------|:----------------|:-------------------|:--------|:----------------|
|
74 |
+
| 0 | 12 | ![](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 |
|
75 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c87983bfb3726187567fc9a667ad7f1ee61ead652918a052bccbe6fd6684d7e
|
3 |
+
size 8028420
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c80a232543aa19e30b0dd4df1b2fb7754c5feb1f74396edf6254f0768fa95e16
|
3 |
+
size 6318180
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0487f2c56e04b4224220d8f8b6af6cc39e8a4a1074d725d80b140bce77e9f004
|
3 |
+
size 8427555
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85c17ebb446848e0398ddcc54b0cb46f2f098f62e4b96b2e942af5c20d4a12df
|
3 |
+
size 15799159
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:692f60a0d9ef8822a7005010da719eed7d51e68cebd252d904c244a9789a5904
|
3 |
+
size 12610299
|
meta.json
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 12,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 12,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"blush",
|
11 |
+
"star_(symbol)",
|
12 |
+
"popsicle",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"solo",
|
15 |
+
"holding",
|
16 |
+
"shoes",
|
17 |
+
"short_sleeves",
|
18 |
+
"white_background",
|
19 |
+
"dress",
|
20 |
+
"sailor_collar"
|
21 |
+
]
|
22 |
+
}
|
23 |
+
],
|
24 |
+
"core_tags": [
|
25 |
+
"blue_eyes",
|
26 |
+
"hair_ornament",
|
27 |
+
"long_hair",
|
28 |
+
"ahoge",
|
29 |
+
"pink_hair",
|
30 |
+
"star_hair_ornament",
|
31 |
+
"twintails",
|
32 |
+
"low_twintails",
|
33 |
+
"hairclip",
|
34 |
+
"bangs",
|
35 |
+
"hair_between_eyes"
|
36 |
+
],
|
37 |
+
"display_name": "mccall/マッコール/麦考尔 (Azur Lane)",
|
38 |
+
"name": "mccall (Azur Lane)",
|
39 |
+
"packages": {
|
40 |
+
"1200": {
|
41 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
42 |
+
"filename": "dataset-1200.zip",
|
43 |
+
"package_size": 8028420,
|
44 |
+
"size": 12,
|
45 |
+
"type": "IMG+TXT"
|
46 |
+
},
|
47 |
+
"800": {
|
48 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
49 |
+
"filename": "dataset-800.zip",
|
50 |
+
"package_size": 6318180,
|
51 |
+
"size": 12,
|
52 |
+
"type": "IMG+TXT"
|
53 |
+
},
|
54 |
+
"raw": {
|
55 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
56 |
+
"filename": "dataset-raw.zip",
|
57 |
+
"package_size": 8427555,
|
58 |
+
"size": 12,
|
59 |
+
"type": "Waifuc-Raw"
|
60 |
+
},
|
61 |
+
"stage3-p480-1200": {
|
62 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
63 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
64 |
+
"package_size": 15799159,
|
65 |
+
"size": 25,
|
66 |
+
"type": "IMG+TXT"
|
67 |
+
},
|
68 |
+
"stage3-p480-800": {
|
69 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
70 |
+
"filename": "dataset-stage3-p480-800.zip",
|
71 |
+
"package_size": 12610299,
|
72 |
+
"size": 25,
|
73 |
+
"type": "IMG+TXT"
|
74 |
+
}
|
75 |
+
},
|
76 |
+
"version": "v1.5"
|
77 |
+
}
|
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
|