Datasets:

Size:
< 1K
Tags:
art
Not-For-All-Audiences
Libraries:
Datasets
License:
narugo commited on
Commit
1ed8841
·
verified ·
1 Parent(s): eecb042

Publish character 'oklahoma (Azur Lane)' to repository, on 2024-01-13 18:51:24 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 oklahoma/オクラホマ/俄克拉荷马 (Azur Lane)
13
+
14
+ This is the dataset of oklahoma/オクラホマ/俄克拉荷马 (Azur Lane), containing 28 images and their tags.
15
+
16
+ The core tags of this character are `ahoge, blue_eyes, breasts, hair_between_eyes, blonde_hair, short_hair, bangs, large_breasts`, 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 | 28 | 34.87 MiB | [Download](https://huggingface.co/datasets/CyberHarem/oklahoma_azurlane/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 28 | 18.46 MiB | [Download](https://huggingface.co/datasets/CyberHarem/oklahoma_azurlane/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 65 | 39.28 MiB | [Download](https://huggingface.co/datasets/CyberHarem/oklahoma_azurlane/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 28 | 30.35 MiB | [Download](https://huggingface.co/datasets/CyberHarem/oklahoma_azurlane/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 65 | 61.60 MiB | [Download](https://huggingface.co/datasets/CyberHarem/oklahoma_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/oklahoma_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 | 8 | ![](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, looking_at_viewer, solo, detached_sleeves, open_mouth, hat, simple_background, :d, boots, brown_gloves, white_background, brown_skirt, cleavage_cutout, long_sleeves, medium_breasts |
69
+
70
+ ### Table Version
71
+
72
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | solo | detached_sleeves | open_mouth | hat | simple_background | :d | boots | brown_gloves | white_background | brown_skirt | cleavage_cutout | long_sleeves | medium_breasts |
73
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------|:-------------------|:-------------|:------|:--------------------|:-----|:--------|:---------------|:-------------------|:--------------|:------------------|:---------------|:-----------------|
74
+ | 0 | 8 | ![](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:03895e84f3125489e173dd464123004a4d0991f60d91fc1d793f137ef37a8b76
3
+ size 31825377
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77cf6d6f1e71e3cebbd872e6c36b68bb74db79c2fbd344a15c925bd169ca7a34
3
+ size 19360058
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c62bf4e2652be0eb0bf83096de9d26626c102e604ddc0bb6e66af3a3eb334b1
3
+ size 36565852
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:471441f025b7e8a00949c1aaad10c0c3e48b26d573c820b09d0048fe861e6580
3
+ size 64593437
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94b4c857c80660469cc528f99997f9775d73cfc5b90a43de6d101adc36f87a8e
3
+ size 41185796
meta.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 28,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 8,
8
+ "tags": [
9
+ "1girl",
10
+ "looking_at_viewer",
11
+ "solo",
12
+ "detached_sleeves",
13
+ "open_mouth",
14
+ "hat",
15
+ "simple_background",
16
+ ":d",
17
+ "boots",
18
+ "brown_gloves",
19
+ "white_background",
20
+ "brown_skirt",
21
+ "cleavage_cutout",
22
+ "long_sleeves",
23
+ "medium_breasts"
24
+ ]
25
+ }
26
+ ],
27
+ "core_tags": [
28
+ "ahoge",
29
+ "blue_eyes",
30
+ "breasts",
31
+ "hair_between_eyes",
32
+ "blonde_hair",
33
+ "short_hair",
34
+ "bangs",
35
+ "large_breasts"
36
+ ],
37
+ "display_name": "oklahoma/オクラホマ/俄克拉荷马 (Azur Lane)",
38
+ "name": "oklahoma (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": 31825377,
44
+ "size": 28,
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": 19360058,
51
+ "size": 28,
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": 36565852,
58
+ "size": 28,
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": 64593437,
65
+ "size": 65,
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": 41185796,
72
+ "size": 65,
73
+ "type": "IMG+TXT"
74
+ }
75
+ },
76
+ "version": "v1.5"
77
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 9daee7832ed4dd1962046aaa158710f733e94d44a0e9f1f81949e8137587f05b
  • Pointer size: 131 Bytes
  • Size of remote file: 301 kB
samples/0/clu0-sample4.png ADDED

Git LFS Details

  • SHA256: 90b41ef19d090df87c7fb752a7b0cfb660beb614c572a6746ed6fb33ba80c965
  • Pointer size: 131 Bytes
  • Size of remote file: 348 kB