Datasets:

Size:
< 1K
Tags:
art
Not-For-All-Audiences
Libraries:
Datasets
License:
narugo commited on
Commit
3846c98
1 Parent(s): 2357f23

Publish character 'kent (Azur Lane)' to repository, on 2024-01-13 20:32:35 UTC

Browse files
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 kent/ケント/肯特 (Azur Lane)
13
+
14
+ This is the dataset of kent/ケント/肯特 (Azur Lane), containing 24 images and their tags.
15
+
16
+ The core tags of this character are `breasts, red_eyes, hairband, hair_between_eyes, large_breasts, short_hair, fang, purple_hair, bangs, ahoge, bow, ribbon, black_hairband`, 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 | 24 | 29.93 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kent_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 24 | 16.20 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kent_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 61 | 38.63 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kent_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 24 | 25.78 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kent_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 61 | 56.00 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kent_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/kent_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 | 24 | ![](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, looking_at_viewer, open_mouth, blush, bare_shoulders, black_gloves, elbow_gloves, simple_background, sleeveless_shirt, upper_body, white_background, white_shirt, :d, skirt, white_apron |
69
+
70
+ ### Table Version
71
+
72
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | looking_at_viewer | open_mouth | blush | bare_shoulders | black_gloves | elbow_gloves | simple_background | sleeveless_shirt | upper_body | white_background | white_shirt | :d | skirt | white_apron |
73
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------------------|:-------------|:--------|:-----------------|:---------------|:---------------|:--------------------|:-------------------|:-------------|:-------------------|:--------------|:-----|:--------|:--------------|
74
+ | 0 | 24 | ![](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 | X |
75
+
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e1ec80c76a692e4acdf69fe6efdc0b2b8bbf9e23af4f038f0db60a5cedbe262
3
+ size 27033279
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da1992bbeba867f62fea181e7182c2f51682cb1d6cc81dd847c81bdd8b863600
3
+ size 16990855
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bb12e7d1d41d16cb36a5d1df508a0d00300ebe4efdf648aee7aac496373a272
3
+ size 31385772
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c9afd59127978188c07a8afe05d0d942e05040f3c17a40c80bf821a52e689a1
3
+ size 58720622
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33eafb381b2f385490b268d64ab0eeb88f05b26639a42044b298138da85f0712
3
+ size 40504803
meta.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 24,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 24,
8
+ "tags": [
9
+ "1girl",
10
+ "solo",
11
+ "looking_at_viewer",
12
+ "open_mouth",
13
+ "blush",
14
+ "bare_shoulders",
15
+ "black_gloves",
16
+ "elbow_gloves",
17
+ "simple_background",
18
+ "sleeveless_shirt",
19
+ "upper_body",
20
+ "white_background",
21
+ "white_shirt",
22
+ ":d",
23
+ "skirt",
24
+ "white_apron"
25
+ ]
26
+ }
27
+ ],
28
+ "core_tags": [
29
+ "breasts",
30
+ "red_eyes",
31
+ "hairband",
32
+ "hair_between_eyes",
33
+ "large_breasts",
34
+ "short_hair",
35
+ "fang",
36
+ "purple_hair",
37
+ "bangs",
38
+ "ahoge",
39
+ "bow",
40
+ "ribbon",
41
+ "black_hairband"
42
+ ],
43
+ "display_name": "kent/ケント/肯特 (Azur Lane)",
44
+ "name": "kent (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": 27033279,
50
+ "size": 24,
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": 16990855,
57
+ "size": 24,
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": 31385772,
64
+ "size": 24,
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": 58720622,
71
+ "size": 61,
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": 40504803,
78
+ "size": 61,
79
+ "type": "IMG+TXT"
80
+ }
81
+ },
82
+ "version": "v1.5"
83
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

  • SHA256: d503dcf6b81272c97ec93ba8e38988f897a4678dee812b536eb99db45461e733
  • Pointer size: 131 Bytes
  • Size of remote file: 313 kB
samples/0/clu0-sample1.png ADDED

Git LFS Details

  • SHA256: 2ba6e71cc1f16306c04dfe89d4e6f61b58a862d5cabc16511e4e6f405a55c769
  • Pointer size: 131 Bytes
  • Size of remote file: 359 kB
samples/0/clu0-sample2.png ADDED

Git LFS Details

  • SHA256: a2faf0a3b240d6b3d39c773d8742dc5918bef6b587230542b9c48f32efececff
  • Pointer size: 131 Bytes
  • Size of remote file: 208 kB
samples/0/clu0-sample3.png ADDED

Git LFS Details

  • SHA256: 5f81e8bd3ebe5f7e8a53bda68670c7467e236381a48a53a1a730fbe4534ee6ca
  • Pointer size: 131 Bytes
  • Size of remote file: 318 kB
samples/0/clu0-sample4.png ADDED

Git LFS Details

  • SHA256: c09e270640758cb6b00a4d33e1b7159aa188b3af3f40a0a2312399a29a8aacf1
  • Pointer size: 131 Bytes
  • Size of remote file: 260 kB