narugo commited on
Commit
bb4faf7
1 Parent(s): dcab518

Publish character 'yulie_arknights' to repository, on 2024-05-11 01:53:54 CST

Browse files
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Yulie/尤莉叶 (Arknights)
13
+
14
+ This is the dataset of Yulie/尤莉叶 (Arknights), containing 25 images and their tags.
15
+
16
+ The core tags of this character are `breasts, hair_over_one_eye, long_hair, red_hair, horns, pointy_ears, red_eyes, ear_piercing, brown_hair`, 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 | Images-others | Images-head |
23
+ |:-----------------|---------:|:----------|:-----------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|:----------------|:--------------|
24
+ | raw | 25 | 61.22 MiB | [Download](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | -- | -- |
25
+ | stage3-p180-1200 | 65 | 82.26 MiB | [Download](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/dataset-stage3-p180-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 180x180 pixels. | 47 | 18 |
26
+
27
+ ### Load Raw Dataset with Waifuc
28
+
29
+ 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
30
+
31
+ ```python
32
+ import os
33
+ import zipfile
34
+
35
+ from huggingface_hub import hf_hub_download
36
+ from waifuc.source import LocalSource
37
+
38
+ # download raw archive file
39
+ zip_file = hf_hub_download(
40
+ repo_id='CyberHarem/yulie_arknights',
41
+ repo_type='dataset',
42
+ filename='dataset-raw.zip',
43
+ )
44
+
45
+ # extract files to your directory
46
+ dataset_dir = 'dataset_dir'
47
+ os.makedirs(dataset_dir, exist_ok=True)
48
+ with zipfile.ZipFile(zip_file, 'r') as zf:
49
+ zf.extractall(dataset_dir)
50
+
51
+ # load the dataset with waifuc
52
+ source = LocalSource(dataset_dir)
53
+ for item in source:
54
+ print(item.image, item.meta['filename'], item.meta['tags'])
55
+ ```
56
+
57
+ ## List of Clusters
58
+
59
+ List of tag clustering result, maybe some outfits can be mined here.
60
+
61
+ ### Raw Text Version
62
+
63
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
64
+ |----:|----------:|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
65
+ | 0 | 10 | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample4.png) | 1girl, looking_at_viewer, piercing, solo, closed_mouth, shoulder_armor, outdoors, upper_body, open_jacket, belt, scar_on_face, demon_horns, earrings, medium_breasts, sky |
66
+ | 1 | 8 | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample4.png) | 1girl, belt, black_footwear, black_pants, boots, coat, full_body, shoulder_armor, solo, standing, sword, torn_clothes, looking_at_viewer, outdoors, gloves, sheathed, building, cloud, holding_weapon, parted_lips, sky |
67
+
68
+ ### Table Version
69
+
70
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | looking_at_viewer | piercing | solo | closed_mouth | shoulder_armor | outdoors | upper_body | open_jacket | belt | scar_on_face | demon_horns | earrings | medium_breasts | sky | black_footwear | black_pants | boots | coat | full_body | standing | sword | torn_clothes | gloves | sheathed | building | cloud | holding_weapon | parted_lips |
71
+ |----:|----------:|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:--------|:--------------------|:-----------|:-------|:---------------|:-----------------|:-----------|:-------------|:--------------|:-------|:---------------|:--------------|:-----------|:-----------------|:------|:-----------------|:--------------|:--------|:-------|:------------|:-----------|:--------|:---------------|:---------|:-----------|:-----------|:--------|:-----------------|:--------------|
72
+ | 0 | 10 | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | |
73
+ | 1 | 8 | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/yulie_arknights/resolve/main/samples/1/clu1-sample4.png) | X | X | | X | | X | X | | | X | | | | | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
74
+
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d1be6b3051219ccfbfa062462bca1ff0700d46fffa87be260e308210155ad52
3
+ size 64191975
dataset-stage3-p180-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:819898a8e7426abb99002558bc36741dda6692d9ddbdf684404c7e37f01eb891
3
+ size 86260106
meta.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 25,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 10,
8
+ "tags": [
9
+ "1girl",
10
+ "looking_at_viewer",
11
+ "piercing",
12
+ "solo",
13
+ "closed_mouth",
14
+ "shoulder_armor",
15
+ "outdoors",
16
+ "upper_body",
17
+ "open_jacket",
18
+ "belt",
19
+ "scar_on_face",
20
+ "demon_horns",
21
+ "earrings",
22
+ "medium_breasts",
23
+ "sky"
24
+ ]
25
+ },
26
+ {
27
+ "id": 1,
28
+ "size": 8,
29
+ "tags": [
30
+ "1girl",
31
+ "belt",
32
+ "black_footwear",
33
+ "black_pants",
34
+ "boots",
35
+ "coat",
36
+ "full_body",
37
+ "shoulder_armor",
38
+ "solo",
39
+ "standing",
40
+ "sword",
41
+ "torn_clothes",
42
+ "looking_at_viewer",
43
+ "outdoors",
44
+ "gloves",
45
+ "sheathed",
46
+ "building",
47
+ "cloud",
48
+ "holding_weapon",
49
+ "parted_lips",
50
+ "sky"
51
+ ]
52
+ }
53
+ ],
54
+ "core_tags": [
55
+ "breasts",
56
+ "hair_over_one_eye",
57
+ "long_hair",
58
+ "red_hair",
59
+ "horns",
60
+ "pointy_ears",
61
+ "red_eyes",
62
+ "ear_piercing",
63
+ "brown_hair"
64
+ ],
65
+ "display_name": "Yulie/尤莉叶 (Arknights)",
66
+ "name": "yulie_arknights",
67
+ "packages": {
68
+ "raw": {
69
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
70
+ "filename": "dataset-raw.zip",
71
+ "package_size": 64191975,
72
+ "size": 25,
73
+ "sub_sizes": {},
74
+ "type": "Waifuc-Raw"
75
+ },
76
+ "stage3-p180-1200": {
77
+ "description": "3-stage cropped dataset with the area not less than 180x180 pixels.",
78
+ "filename": "dataset-stage3-p180-1200.zip",
79
+ "package_size": 86260106,
80
+ "size": 65,
81
+ "sub_sizes": {
82
+ "head": 18,
83
+ "others": 47
84
+ },
85
+ "type": "IMG+TXT"
86
+ }
87
+ },
88
+ "version": "v1.6-alpha0"
89
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: b71fa2fea3ed3a1d13771b51e70cace7a05b0b8646639a0ffd09309f3d3a6cd9
  • Pointer size: 131 Bytes
  • Size of remote file: 286 kB
samples/1/clu1-sample0.png ADDED

Git LFS Details

  • SHA256: 4b7d8215a888f6571d57cea86680a14b2ef348f6393dc7f546993cf1581e9c72
  • Pointer size: 131 Bytes
  • Size of remote file: 436 kB
samples/1/clu1-sample1.png ADDED

Git LFS Details

  • SHA256: 3917728888d54b399fc18601366642ec12b898abf73835c43e137b5344ba90aa
  • Pointer size: 131 Bytes
  • Size of remote file: 659 kB
samples/1/clu1-sample2.png ADDED

Git LFS Details

  • SHA256: edb1649a58fccdf78f9f8bbe19d42e7b358438c82ee0e99f6a71ae055964bd84
  • Pointer size: 131 Bytes
  • Size of remote file: 413 kB
samples/1/clu1-sample3.png ADDED

Git LFS Details

  • SHA256: 9c8e572dbe14423e306c6c30a499e2b333cec26d3fb919b4919923a6934b77d5
  • Pointer size: 131 Bytes
  • Size of remote file: 449 kB
samples/1/clu1-sample4.png ADDED

Git LFS Details

  • SHA256: 26276978e63e44af4ea152b4724be763dfb8a99bada2039446fd13c77a96b365
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB