narugo commited on
Commit
a4cf95f
1 Parent(s): f2e5291

Publish character 'rapunzel_nikke' to repository, on 2024-01-24 07:59:57 UTC

Browse files
README.md CHANGED
@@ -9,9 +9,67 @@ size_categories:
9
  - n<1K
10
  ---
11
 
12
- # Dataset of rapunzel (Nikke: Goddess of Victory)
13
 
14
- This is the dataset of rapunzel (Nikke: Goddess of Victory), containing 22 images and their tags.
 
 
15
 
16
  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)).
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - n<1K
10
  ---
11
 
12
+ # Dataset of rapunzel/ラプンツェル/长发公主/라푼젤 (Nikke: Goddess of Victory)
13
 
14
+ This is the dataset of rapunzel/ラプンツェル/长发公主/라푼젤 (Nikke: Goddess of Victory), containing 72 images and their tags.
15
+
16
+ The core tags of this character are `blonde_hair, long_hair, breasts, blue_eyes, bangs, large_breasts, very_long_hair, braid`, 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 | 72 | 130.09 MiB | [Download](https://huggingface.co/datasets/CyberHarem/rapunzel_nikke/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 72 | 63.88 MiB | [Download](https://huggingface.co/datasets/CyberHarem/rapunzel_nikke/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 170 | 137.36 MiB | [Download](https://huggingface.co/datasets/CyberHarem/rapunzel_nikke/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 72 | 110.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/rapunzel_nikke/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 170 | 209.78 MiB | [Download](https://huggingface.co/datasets/CyberHarem/rapunzel_nikke/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/rapunzel_nikke',
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 | 20 | ![](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, nun, bodysuit, looking_at_viewer, gloves, habit, smile, open_mouth, blush, braided_ponytail, holding, dress |
69
+
70
+ ### Table Version
71
+
72
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | nun | bodysuit | looking_at_viewer | gloves | habit | smile | open_mouth | blush | braided_ponytail | holding | dress |
73
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:------|:-----------|:--------------------|:---------|:--------|:--------|:-------------|:--------|:-------------------|:----------|:--------|
74
+ | 0 | 20 | ![](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 |
75
+
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd8d36df07cddc2d436f93fa07fb152b80f3cd642bb16de1f8d54a38474d1928
3
+ size 115529803
dataset-640x880.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3b090ec0c08ff7a69835673625dd201fbff6614f9f7a465c46302e6bddba115a
3
- size 11926690
 
 
 
 
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dec191ad4b439a09107114c8f8332a55ba272c0347c96acb792ee24804ac84a
3
+ size 66979152
dataset-raw.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:83d8eb2d2f74e7ef93f8e982542398fd7b3ac4784aa91de98a125f40bcb8a318
3
- size 41999683
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67f6ebf94f369acbde681f123c7c6cd4ae9ecfa9d48e9bf9b85c5088be4a92b6
3
+ size 136407912
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0849d605f29e96db4197628c9270c977411f62702ef0b33e7a16ccc8dbb98fa7
3
+ size 219967605
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:298c6ec5e49947be0b8b92d2d85c39611d2bc3b940a5bd89509c9ed490535df4
3
+ size 144028678
meta.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bangumi": null,
3
+ "base_size": 72,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 20,
8
+ "tags": [
9
+ "1girl",
10
+ "solo",
11
+ "nun",
12
+ "bodysuit",
13
+ "looking_at_viewer",
14
+ "gloves",
15
+ "habit",
16
+ "smile",
17
+ "open_mouth",
18
+ "blush",
19
+ "braided_ponytail",
20
+ "holding",
21
+ "dress"
22
+ ]
23
+ }
24
+ ],
25
+ "core_tags": [
26
+ "blonde_hair",
27
+ "long_hair",
28
+ "breasts",
29
+ "blue_eyes",
30
+ "bangs",
31
+ "large_breasts",
32
+ "very_long_hair",
33
+ "braid"
34
+ ],
35
+ "display_name": "rapunzel/ラプンツェル/长发公主/라푼젤 (Nikke: Goddess of Victory)",
36
+ "name": "rapunzel_nikke",
37
+ "packages": {
38
+ "1200": {
39
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
40
+ "filename": "dataset-1200.zip",
41
+ "package_size": 115529803,
42
+ "size": 72,
43
+ "type": "IMG+TXT"
44
+ },
45
+ "800": {
46
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
47
+ "filename": "dataset-800.zip",
48
+ "package_size": 66979152,
49
+ "size": 72,
50
+ "type": "IMG+TXT"
51
+ },
52
+ "raw": {
53
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
54
+ "filename": "dataset-raw.zip",
55
+ "package_size": 136407912,
56
+ "size": 72,
57
+ "type": "Waifuc-Raw"
58
+ },
59
+ "stage3-p480-1200": {
60
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
61
+ "filename": "dataset-stage3-p480-1200.zip",
62
+ "package_size": 219967605,
63
+ "size": 170,
64
+ "type": "IMG+TXT"
65
+ },
66
+ "stage3-p480-800": {
67
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
68
+ "filename": "dataset-stage3-p480-800.zip",
69
+ "package_size": 144028678,
70
+ "size": 170,
71
+ "type": "IMG+TXT"
72
+ }
73
+ },
74
+ "version": "v1.5"
75
+ }
dataset-384x512.zip → samples/0/clu0-sample0.png RENAMED
File without changes
dataset-512x512.zip → samples/0/clu0-sample1.png RENAMED
File without changes
dataset-512x704.zip → samples/0/clu0-sample2.png RENAMED
File without changes
dataset-640x640.zip → samples/0/clu0-sample3.png RENAMED
File without changes
samples/0/clu0-sample4.png ADDED

Git LFS Details

  • SHA256: 7b466e632c4ce7b6a249a03ea883d25eb8d593a895d00bc03a13700f9dc2628f
  • Pointer size: 131 Bytes
  • Size of remote file: 526 kB