Publish character 'jackal_nikke' to repository, on 2024-01-24 07:40:38 UTC
Browse files- README.md +64 -2
- dataset-1200.zip +3 -0
- dataset-640x880.zip +0 -3
- dataset-512x704.zip → dataset-800.zip +2 -2
- dataset-raw.zip +2 -2
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +155 -0
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x512.zip → samples/0/clu0-sample1.png +2 -2
- dataset-640x640.zip → samples/0/clu0-sample2.png +2 -2
- samples/0/clu0-sample3.png +3 -0
- samples/0/clu0-sample4.png +3 -0
- samples/1/clu1-sample0.png +3 -0
- samples/1/clu1-sample1.png +3 -0
- samples/1/clu1-sample2.png +3 -0
- samples/1/clu1-sample3.png +3 -0
- samples/1/clu1-sample4.png +3 -0
- samples/2/clu2-sample0.png +3 -0
- samples/2/clu2-sample1.png +3 -0
- samples/2/clu2-sample2.png +3 -0
- samples/2/clu2-sample3.png +3 -0
- samples/2/clu2-sample4.png +3 -0
README.md
CHANGED
@@ -9,9 +9,71 @@ size_categories:
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
-
# Dataset of jackal (Nikke: Goddess of Victory)
|
13 |
|
14 |
-
This is the dataset of jackal (Nikke: Goddess of Victory), containing
|
|
|
|
|
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 jackal/ジャッカル/豺狼/자칼 (Nikke: Goddess of Victory)
|
13 |
|
14 |
+
This is the dataset of jackal/ジャッカル/豺狼/자칼 (Nikke: Goddess of Victory), containing 70 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, breasts, multicolored_hair, hair_ornament, bangs, red_eyes, large_breasts, streaked_hair, twintails, hairclip, pink_hair, facial_mark, ahoge, white_hair, pink_eyes, side_ponytail`, 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 | 70 | 119.58 MiB | [Download](https://huggingface.co/datasets/CyberHarem/jackal_nikke/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 70 | 61.72 MiB | [Download](https://huggingface.co/datasets/CyberHarem/jackal_nikke/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 167 | 131.30 MiB | [Download](https://huggingface.co/datasets/CyberHarem/jackal_nikke/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 70 | 102.80 MiB | [Download](https://huggingface.co/datasets/CyberHarem/jackal_nikke/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 167 | 198.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/jackal_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/jackal_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 | 6 | ![](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, collar, gloves, jacket, looking_at_viewer, open_mouth, solo, smile, blonde_hair, blush, hair_bow, tongue_out, upper_body, cleavage, crop_top, shirt, virtual_youtuber |
|
69 |
+
| 1 | 9 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](samples/1/clu1-sample4.png) | cleavage, looking_at_viewer, 1girl, long_sleeves, open_mouth, pink_gloves, solo, tongue_out, midriff, navel, pink_shorts, blush, crop_top, heart, open_jacket, short_shorts, smile, virtual_youtuber, spiked_collar, asymmetrical_legwear, belt, blonde_hair, pink_thighhighs, tattoo |
|
70 |
+
| 2 | 6 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | 1girl, pink_shorts, short_shorts, smile, solo, asymmetrical_legwear, long_sleeves, looking_at_viewer, open_mouth, shirt, single_thighhigh, squatting, thigh_strap, cleavage, open_jacket, pink_gloves, sneakers, spiked_collar, tongue_out, white_jacket, blush, crop_top, hair_bow, midriff, mole, navel, pink_belt, single_sock, thighs, very_long_hair, virtual_youtuber, white_footwear |
|
71 |
+
|
72 |
+
### Table Version
|
73 |
+
|
74 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | collar | gloves | jacket | looking_at_viewer | open_mouth | solo | smile | blonde_hair | blush | hair_bow | tongue_out | upper_body | cleavage | crop_top | shirt | virtual_youtuber | long_sleeves | pink_gloves | midriff | navel | pink_shorts | heart | open_jacket | short_shorts | spiked_collar | asymmetrical_legwear | belt | pink_thighhighs | tattoo | single_thighhigh | squatting | thigh_strap | sneakers | white_jacket | mole | pink_belt | single_sock | thighs | very_long_hair | white_footwear |
|
75 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:---------|:---------|:---------|:--------------------|:-------------|:-------|:--------|:--------------|:--------|:-----------|:-------------|:-------------|:-----------|:-----------|:--------|:-------------------|:---------------|:--------------|:----------|:--------|:--------------|:--------|:--------------|:---------------|:----------------|:-----------------------|:-------|:------------------|:---------|:-------------------|:------------|:--------------|:-----------|:---------------|:-------|:------------|:--------------|:---------|:-----------------|:-----------------|
|
76 |
+
| 0 | 6 | ![](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 | X | | | | | | | | | | | | | | | | | | | | | | | | |
|
77 |
+
| 1 | 9 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](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 | X | X | X | | | | | | | | | | | |
|
78 |
+
| 2 | 6 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | X | | | | X | X | X | X | | X | X | X | | X | X | X | X | X | X | X | X | X | | X | X | X | X | | | | X | X | X | X | X | X | X | X | X | X | X |
|
79 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d3d7f9db2bff52acc1364f48dd209371dd15a1a7ec52ced670cd15fe3ddd7e0
|
3 |
+
size 107788714
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:82f28b055e345c3f3e26451f302a61114a8eb6d7eb439c14399ccf9dd4a5a884
|
3 |
-
size 16347217
|
|
|
|
|
|
|
|
dataset-512x704.zip → dataset-800.zip
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3453e11e9499b01dc26048ebd565a5a8dc1df479e3f01958d31d77628dd095c4
|
3 |
+
size 64714699
|
dataset-raw.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bcccb0b11cc9c956145e4c513609eb7981ca334c0733885995ba4b8322c04470
|
3 |
+
size 125392128
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a0338dfa0bb055390512f22518c27c469da2893e15955656354d73fe792c920e
|
3 |
+
size 208307629
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b70d9cbe0e1709a8e274d57690e16a09822866b7775ec8e66ac9c9498c65e26
|
3 |
+
size 137674460
|
meta.json
ADDED
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 70,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 6,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"collar",
|
11 |
+
"gloves",
|
12 |
+
"jacket",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"open_mouth",
|
15 |
+
"solo",
|
16 |
+
"smile",
|
17 |
+
"blonde_hair",
|
18 |
+
"blush",
|
19 |
+
"hair_bow",
|
20 |
+
"tongue_out",
|
21 |
+
"upper_body",
|
22 |
+
"cleavage",
|
23 |
+
"crop_top",
|
24 |
+
"shirt",
|
25 |
+
"virtual_youtuber"
|
26 |
+
]
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"id": 1,
|
30 |
+
"size": 9,
|
31 |
+
"tags": [
|
32 |
+
"cleavage",
|
33 |
+
"looking_at_viewer",
|
34 |
+
"1girl",
|
35 |
+
"long_sleeves",
|
36 |
+
"open_mouth",
|
37 |
+
"pink_gloves",
|
38 |
+
"solo",
|
39 |
+
"tongue_out",
|
40 |
+
"midriff",
|
41 |
+
"navel",
|
42 |
+
"pink_shorts",
|
43 |
+
"blush",
|
44 |
+
"crop_top",
|
45 |
+
"heart",
|
46 |
+
"open_jacket",
|
47 |
+
"short_shorts",
|
48 |
+
"smile",
|
49 |
+
"virtual_youtuber",
|
50 |
+
"spiked_collar",
|
51 |
+
"asymmetrical_legwear",
|
52 |
+
"belt",
|
53 |
+
"blonde_hair",
|
54 |
+
"pink_thighhighs",
|
55 |
+
"tattoo"
|
56 |
+
]
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"id": 2,
|
60 |
+
"size": 6,
|
61 |
+
"tags": [
|
62 |
+
"1girl",
|
63 |
+
"pink_shorts",
|
64 |
+
"short_shorts",
|
65 |
+
"smile",
|
66 |
+
"solo",
|
67 |
+
"asymmetrical_legwear",
|
68 |
+
"long_sleeves",
|
69 |
+
"looking_at_viewer",
|
70 |
+
"open_mouth",
|
71 |
+
"shirt",
|
72 |
+
"single_thighhigh",
|
73 |
+
"squatting",
|
74 |
+
"thigh_strap",
|
75 |
+
"cleavage",
|
76 |
+
"open_jacket",
|
77 |
+
"pink_gloves",
|
78 |
+
"sneakers",
|
79 |
+
"spiked_collar",
|
80 |
+
"tongue_out",
|
81 |
+
"white_jacket",
|
82 |
+
"blush",
|
83 |
+
"crop_top",
|
84 |
+
"hair_bow",
|
85 |
+
"midriff",
|
86 |
+
"mole",
|
87 |
+
"navel",
|
88 |
+
"pink_belt",
|
89 |
+
"single_sock",
|
90 |
+
"thighs",
|
91 |
+
"very_long_hair",
|
92 |
+
"virtual_youtuber",
|
93 |
+
"white_footwear"
|
94 |
+
]
|
95 |
+
}
|
96 |
+
],
|
97 |
+
"core_tags": [
|
98 |
+
"long_hair",
|
99 |
+
"breasts",
|
100 |
+
"multicolored_hair",
|
101 |
+
"hair_ornament",
|
102 |
+
"bangs",
|
103 |
+
"red_eyes",
|
104 |
+
"large_breasts",
|
105 |
+
"streaked_hair",
|
106 |
+
"twintails",
|
107 |
+
"hairclip",
|
108 |
+
"pink_hair",
|
109 |
+
"facial_mark",
|
110 |
+
"ahoge",
|
111 |
+
"white_hair",
|
112 |
+
"pink_eyes",
|
113 |
+
"side_ponytail"
|
114 |
+
],
|
115 |
+
"display_name": "jackal/ジャッカル/豺狼/자칼 (Nikke: Goddess of Victory)",
|
116 |
+
"name": "jackal_nikke",
|
117 |
+
"packages": {
|
118 |
+
"1200": {
|
119 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
120 |
+
"filename": "dataset-1200.zip",
|
121 |
+
"package_size": 107788714,
|
122 |
+
"size": 70,
|
123 |
+
"type": "IMG+TXT"
|
124 |
+
},
|
125 |
+
"800": {
|
126 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
127 |
+
"filename": "dataset-800.zip",
|
128 |
+
"package_size": 64714699,
|
129 |
+
"size": 70,
|
130 |
+
"type": "IMG+TXT"
|
131 |
+
},
|
132 |
+
"raw": {
|
133 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
134 |
+
"filename": "dataset-raw.zip",
|
135 |
+
"package_size": 125392128,
|
136 |
+
"size": 70,
|
137 |
+
"type": "Waifuc-Raw"
|
138 |
+
},
|
139 |
+
"stage3-p480-1200": {
|
140 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
141 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
142 |
+
"package_size": 208307629,
|
143 |
+
"size": 167,
|
144 |
+
"type": "IMG+TXT"
|
145 |
+
},
|
146 |
+
"stage3-p480-800": {
|
147 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
148 |
+
"filename": "dataset-stage3-p480-800.zip",
|
149 |
+
"package_size": 137674460,
|
150 |
+
"size": 167,
|
151 |
+
"type": "IMG+TXT"
|
152 |
+
}
|
153 |
+
},
|
154 |
+
"version": "v1.5"
|
155 |
+
}
|
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-640x640.zip → samples/0/clu0-sample2.png
RENAMED
File without changes
|
samples/0/clu0-sample3.png
ADDED
Git LFS Details
|
samples/0/clu0-sample4.png
ADDED
Git LFS Details
|
samples/1/clu1-sample0.png
ADDED
Git LFS Details
|
samples/1/clu1-sample1.png
ADDED
Git LFS Details
|
samples/1/clu1-sample2.png
ADDED
Git LFS Details
|
samples/1/clu1-sample3.png
ADDED
Git LFS Details
|
samples/1/clu1-sample4.png
ADDED
Git LFS Details
|
samples/2/clu2-sample0.png
ADDED
Git LFS Details
|
samples/2/clu2-sample1.png
ADDED
Git LFS Details
|
samples/2/clu2-sample2.png
ADDED
Git LFS Details
|
samples/2/clu2-sample3.png
ADDED
Git LFS Details
|
samples/2/clu2-sample4.png
ADDED
Git LFS Details
|