narugo commited on
Commit
60790c2
1 Parent(s): 7d9be8b

Publish character 'old_tianshi_arknights' to repository, on 2024-05-11 01:45:15 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 Old Tianshi/老天师 (Arknights)
13
+
14
+ This is the dataset of Old Tianshi/老天师 (Arknights), containing 25 images and their tags.
15
+
16
+ The core tags of this character are `blonde_hair, horns, long_hair, animal_ears, facial_mark, yellow_eyes, grey_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 | Images-others | Images-head |
23
+ |:-----------------|---------:|:----------|:-----------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|:----------------|:--------------|
24
+ | raw | 25 | 60.25 MiB | [Download](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | -- | -- |
25
+ | stage3-p180-1200 | 63 | 86.60 MiB | [Download](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/dataset-stage3-p180-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 180x180 pixels. | 39 | 24 |
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/old_tianshi_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 | 14 | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample4.png) | 1girl, bare_shoulders, forehead_mark, grin, looking_at_viewer, off_shoulder, solo, collarbone, dress, hand_on_own_hip, outdoors, sky, upper_body, dutch_angle |
66
+ | 1 | 6 | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample4.png) | 1girl, bare_shoulders, black_gloves, fingerless_gloves, grin, hand_on_own_hip, looking_at_viewer, off_shoulder, solo, standing, black_footwear, boots, dress, full_body, holding, sky, cleavage, cloud, outdoors |
67
+
68
+ ### Table Version
69
+
70
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | bare_shoulders | forehead_mark | grin | looking_at_viewer | off_shoulder | solo | collarbone | dress | hand_on_own_hip | outdoors | sky | upper_body | dutch_angle | black_gloves | fingerless_gloves | standing | black_footwear | boots | full_body | holding | cleavage | cloud |
71
+ |----:|----------:|:--------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------|:--------|:-----------------|:----------------|:-------|:--------------------|:---------------|:-------|:-------------|:--------|:------------------|:-----------|:------|:-------------|:--------------|:---------------|:--------------------|:-----------|:-----------------|:--------|:------------|:----------|:-----------|:--------|
72
+ | 0 | 14 | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | |
73
+ | 1 | 6 | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_arknights/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/old_tianshi_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 |
74
+
dataset-raw.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e7f1663dabab4e939c2180b8ea8857a33455fac603f0321908be89f638ab698
3
+ size 63180653
dataset-stage3-p180-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:234d4a5a8c02ef1160b7f61bdce62d5a56d6bf3ba693c59d3d684c9c2d3375bc
3
+ size 90806614
meta.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 25,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 14,
8
+ "tags": [
9
+ "1girl",
10
+ "bare_shoulders",
11
+ "forehead_mark",
12
+ "grin",
13
+ "looking_at_viewer",
14
+ "off_shoulder",
15
+ "solo",
16
+ "collarbone",
17
+ "dress",
18
+ "hand_on_own_hip",
19
+ "outdoors",
20
+ "sky",
21
+ "upper_body",
22
+ "dutch_angle"
23
+ ]
24
+ },
25
+ {
26
+ "id": 1,
27
+ "size": 6,
28
+ "tags": [
29
+ "1girl",
30
+ "bare_shoulders",
31
+ "black_gloves",
32
+ "fingerless_gloves",
33
+ "grin",
34
+ "hand_on_own_hip",
35
+ "looking_at_viewer",
36
+ "off_shoulder",
37
+ "solo",
38
+ "standing",
39
+ "black_footwear",
40
+ "boots",
41
+ "dress",
42
+ "full_body",
43
+ "holding",
44
+ "sky",
45
+ "cleavage",
46
+ "cloud",
47
+ "outdoors"
48
+ ]
49
+ }
50
+ ],
51
+ "core_tags": [
52
+ "blonde_hair",
53
+ "horns",
54
+ "long_hair",
55
+ "animal_ears",
56
+ "facial_mark",
57
+ "yellow_eyes",
58
+ "grey_eyes"
59
+ ],
60
+ "display_name": "Old Tianshi/老天师 (Arknights)",
61
+ "name": "old_tianshi_arknights",
62
+ "packages": {
63
+ "raw": {
64
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
65
+ "filename": "dataset-raw.zip",
66
+ "package_size": 63180653,
67
+ "size": 25,
68
+ "sub_sizes": {},
69
+ "type": "Waifuc-Raw"
70
+ },
71
+ "stage3-p180-1200": {
72
+ "description": "3-stage cropped dataset with the area not less than 180x180 pixels.",
73
+ "filename": "dataset-stage3-p180-1200.zip",
74
+ "package_size": 90806614,
75
+ "size": 63,
76
+ "sub_sizes": {
77
+ "head": 24,
78
+ "others": 39
79
+ },
80
+ "type": "IMG+TXT"
81
+ }
82
+ },
83
+ "version": "v1.6-alpha0"
84
+ }
samples/0/clu0-sample0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 0c030a37289519857959b5851f4d89d4619b97ab55da27ab351c8f4c333db871
  • Pointer size: 131 Bytes
  • Size of remote file: 401 kB
samples/1/clu1-sample1.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 6759b19f665ec43124875972924f236060cfc9371bcbf27a26bdedb6b06f7f86
  • Pointer size: 131 Bytes
  • Size of remote file: 377 kB
samples/1/clu1-sample4.png ADDED

Git LFS Details

  • SHA256: 695a992275ddcdfd5124450553596033a8769a18f281b817d8f0d17bdd471a8f
  • Pointer size: 131 Bytes
  • Size of remote file: 411 kB