Publish character 'lakhesh_nyx_seniorious_sukasuka' to repository, on 2024-03-31 16:38:56 UTC
Browse files- README.md +77 -0
- dataset-1200.zip +3 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- meta.json +92 -0
- samples/0/clu0-sample0.png +3 -0
- samples/0/clu0-sample1.png +3 -0
- samples/0/clu0-sample2.png +3 -0
- 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
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 Lakhesh Nyx Seniorious/ラキシュ・ニクス・セニオリス (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)
|
13 |
+
|
14 |
+
This is the dataset of Lakhesh Nyx Seniorious/ラキシュ・ニクス・セニオリス (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?), containing 69 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `short_hair, brown_eyes, blonde_hair, side_ponytail, hair_ribbon, ribbon`, 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 | 69 | 32.30 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lakhesh_sukasuka/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 1200 | 69 | 32.28 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lakhesh_sukasuka/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
26 |
+
| stage3-p480-1200 | 117 | 54.40 MiB | [Download](https://huggingface.co/datasets/CyberHarem/lakhesh_sukasuka/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
|
28 |
+
### Load Raw Dataset with Waifuc
|
29 |
+
|
30 |
+
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
|
31 |
+
|
32 |
+
```python
|
33 |
+
import os
|
34 |
+
import zipfile
|
35 |
+
|
36 |
+
from huggingface_hub import hf_hub_download
|
37 |
+
from waifuc.source import LocalSource
|
38 |
+
|
39 |
+
# download raw archive file
|
40 |
+
zip_file = hf_hub_download(
|
41 |
+
repo_id='CyberHarem/lakhesh_sukasuka',
|
42 |
+
repo_type='dataset',
|
43 |
+
filename='dataset-raw.zip',
|
44 |
+
)
|
45 |
+
|
46 |
+
# extract files to your directory
|
47 |
+
dataset_dir = 'dataset_dir'
|
48 |
+
os.makedirs(dataset_dir, exist_ok=True)
|
49 |
+
with zipfile.ZipFile(zip_file, 'r') as zf:
|
50 |
+
zf.extractall(dataset_dir)
|
51 |
+
|
52 |
+
# load the dataset with waifuc
|
53 |
+
source = LocalSource(dataset_dir)
|
54 |
+
for item in source:
|
55 |
+
print(item.image, item.meta['filename'], item.meta['tags'])
|
56 |
+
```
|
57 |
+
|
58 |
+
## List of Clusters
|
59 |
+
|
60 |
+
List of tag clustering result, maybe some outfits can be mined here.
|
61 |
+
|
62 |
+
### Raw Text Version
|
63 |
+
|
64 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
|
65 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
66 |
+
| 0 | 14 | ![](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) | 2girls, brown_hair, pink_hair, long_hair, one_side_up, open_mouth |
|
67 |
+
| 1 | 8 | ![](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) | 1girl, closed_mouth, long_sleeves, solo, turtleneck, upper_body, blush, profile, shirt, dress, from_side, indoors, blurry_background |
|
68 |
+
| 2 | 8 | ![](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, brown_dress, holding_bag, long_sleeves, pinafore_dress, shirt, standing, open_mouth, solo, :o, turtleneck, door, blurry_background, one_side_up, v_arms |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 2girls | brown_hair | pink_hair | long_hair | one_side_up | open_mouth | 1girl | closed_mouth | long_sleeves | solo | turtleneck | upper_body | blush | profile | shirt | dress | from_side | indoors | blurry_background | brown_dress | holding_bag | pinafore_dress | standing | :o | door | v_arms |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------|:-------------|:------------|:------------|:--------------|:-------------|:--------|:---------------|:---------------|:-------|:-------------|:-------------|:--------|:----------|:--------|:--------|:------------|:----------|:--------------------|:--------------|:--------------|:-----------------|:-----------|:-----|:-------|:---------|
|
74 |
+
| 0 | 14 | ![](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 | | | | | | | | | | | | | | | | | | | | |
|
75 |
+
| 1 | 8 | ![](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 | | | | | | | |
|
76 |
+
| 2 | 8 | ![](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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f99a233c3f92a03704a829b800b76e0d10b42ca69816e6c47bfe324626f48576
|
3 |
+
size 33846518
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:337e590e8f703ca01bf0337f9bb96984a2fe96583163f69d6f81c3daaacac6f6
|
3 |
+
size 33869167
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:236075ef66a89544a1662166617cf97e52fa028611ca7a327a4222167f4b151c
|
3 |
+
size 57047393
|
meta.json
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": "BangumiBase/sukasuka",
|
3 |
+
"base_size": 69,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 14,
|
8 |
+
"tags": [
|
9 |
+
"2girls",
|
10 |
+
"brown_hair",
|
11 |
+
"pink_hair",
|
12 |
+
"long_hair",
|
13 |
+
"one_side_up",
|
14 |
+
"open_mouth"
|
15 |
+
]
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"id": 1,
|
19 |
+
"size": 8,
|
20 |
+
"tags": [
|
21 |
+
"1girl",
|
22 |
+
"closed_mouth",
|
23 |
+
"long_sleeves",
|
24 |
+
"solo",
|
25 |
+
"turtleneck",
|
26 |
+
"upper_body",
|
27 |
+
"blush",
|
28 |
+
"profile",
|
29 |
+
"shirt",
|
30 |
+
"dress",
|
31 |
+
"from_side",
|
32 |
+
"indoors",
|
33 |
+
"blurry_background"
|
34 |
+
]
|
35 |
+
},
|
36 |
+
{
|
37 |
+
"id": 2,
|
38 |
+
"size": 8,
|
39 |
+
"tags": [
|
40 |
+
"1girl",
|
41 |
+
"brown_dress",
|
42 |
+
"holding_bag",
|
43 |
+
"long_sleeves",
|
44 |
+
"pinafore_dress",
|
45 |
+
"shirt",
|
46 |
+
"standing",
|
47 |
+
"open_mouth",
|
48 |
+
"solo",
|
49 |
+
":o",
|
50 |
+
"turtleneck",
|
51 |
+
"door",
|
52 |
+
"blurry_background",
|
53 |
+
"one_side_up",
|
54 |
+
"v_arms"
|
55 |
+
]
|
56 |
+
}
|
57 |
+
],
|
58 |
+
"core_tags": [
|
59 |
+
"short_hair",
|
60 |
+
"brown_eyes",
|
61 |
+
"blonde_hair",
|
62 |
+
"side_ponytail",
|
63 |
+
"hair_ribbon",
|
64 |
+
"ribbon"
|
65 |
+
],
|
66 |
+
"display_name": "Lakhesh Nyx Seniorious/ラキシュ・ニクス・セニオリス (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)",
|
67 |
+
"name": "lakhesh_nyx_seniorious_sukasuka",
|
68 |
+
"packages": {
|
69 |
+
"1200": {
|
70 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
71 |
+
"filename": "dataset-1200.zip",
|
72 |
+
"package_size": 33846518,
|
73 |
+
"size": 69,
|
74 |
+
"type": "IMG+TXT"
|
75 |
+
},
|
76 |
+
"raw": {
|
77 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
78 |
+
"filename": "dataset-raw.zip",
|
79 |
+
"package_size": 33869167,
|
80 |
+
"size": 69,
|
81 |
+
"type": "Waifuc-Raw"
|
82 |
+
},
|
83 |
+
"stage3-p480-1200": {
|
84 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
85 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
86 |
+
"package_size": 57047393,
|
87 |
+
"size": 117,
|
88 |
+
"type": "IMG+TXT"
|
89 |
+
}
|
90 |
+
},
|
91 |
+
"version": "v1.5.1"
|
92 |
+
}
|
samples/0/clu0-sample0.png
ADDED
Git LFS Details
|
samples/0/clu0-sample1.png
ADDED
Git LFS Details
|
samples/0/clu0-sample2.png
ADDED
Git LFS Details
|
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
|