Publish character 'collon_rin_purgatrio_sukasuka' to repository, on 2024-03-31 16:39:16 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 +76 -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 Collon Rin Purgatrio/コロン・リン・プルガトリオ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)
|
13 |
+
|
14 |
+
This is the dataset of Collon Rin Purgatrio/コロン・リン・プルガトリオ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?), containing 54 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `pink_hair, long_hair, pink_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 |
|
23 |
+
|:-----------------|---------:|:----------|:-----------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|
|
24 |
+
| raw | 54 | 29.64 MiB | [Download](https://huggingface.co/datasets/CyberHarem/collon_sukasuka/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 1200 | 54 | 29.62 MiB | [Download](https://huggingface.co/datasets/CyberHarem/collon_sukasuka/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
26 |
+
| stage3-p480-1200 | 82 | 49.16 MiB | [Download](https://huggingface.co/datasets/CyberHarem/collon_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/collon_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 | 15 | ![](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, open_mouth, shorts, solo, :d, shirt |
|
67 |
+
| 1 | 6 | ![](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) | 2girls, purple_hair, red_eyes, solo_focus, 1girl, open_mouth, smile |
|
68 |
+
| 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) | 3girls, broom, green_hair, grin, mop, red_eyes, short_hair, wooden_floor |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | open_mouth | shorts | solo | :d | shirt | 2girls | purple_hair | red_eyes | solo_focus | smile | 3girls | broom | green_hair | grin | mop | short_hair | wooden_floor |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------------|:---------|:-------|:-----|:--------|:---------|:--------------|:-----------|:-------------|:--------|:---------|:--------|:-------------|:-------|:------|:-------------|:---------------|
|
74 |
+
| 0 | 15 | ![](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 | 6 | ![](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 | | | | | | | |
|
76 |
+
| 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 |
|
77 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:12e474c9b00baefb25aa1bc43875659abb758ddba732466ec1cddbc70610ef76
|
3 |
+
size 31061798
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9030d6c558d3b67340cdfa2dd7740f846274cfdd6a2d3df01ffb4461156e212
|
3 |
+
size 31077950
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3706d8fc7111d54048b2dbd0916a2fab2c2c373f82646de94de32302faca318b
|
3 |
+
size 51547971
|
meta.json
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": "BangumiBase/sukasuka",
|
3 |
+
"base_size": 54,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 15,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"open_mouth",
|
11 |
+
"shorts",
|
12 |
+
"solo",
|
13 |
+
":d",
|
14 |
+
"shirt"
|
15 |
+
]
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"id": 1,
|
19 |
+
"size": 6,
|
20 |
+
"tags": [
|
21 |
+
"2girls",
|
22 |
+
"purple_hair",
|
23 |
+
"red_eyes",
|
24 |
+
"solo_focus",
|
25 |
+
"1girl",
|
26 |
+
"open_mouth",
|
27 |
+
"smile"
|
28 |
+
]
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"id": 2,
|
32 |
+
"size": 6,
|
33 |
+
"tags": [
|
34 |
+
"3girls",
|
35 |
+
"broom",
|
36 |
+
"green_hair",
|
37 |
+
"grin",
|
38 |
+
"mop",
|
39 |
+
"red_eyes",
|
40 |
+
"short_hair",
|
41 |
+
"wooden_floor"
|
42 |
+
]
|
43 |
+
}
|
44 |
+
],
|
45 |
+
"core_tags": [
|
46 |
+
"pink_hair",
|
47 |
+
"long_hair",
|
48 |
+
"pink_eyes"
|
49 |
+
],
|
50 |
+
"display_name": "Collon Rin Purgatrio/コロン・リン・プルガトリオ (Shuumatsu Nani Shitemasu Ka? Isogashii Desu Ka?)",
|
51 |
+
"name": "collon_rin_purgatrio_sukasuka",
|
52 |
+
"packages": {
|
53 |
+
"1200": {
|
54 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
55 |
+
"filename": "dataset-1200.zip",
|
56 |
+
"package_size": 31061798,
|
57 |
+
"size": 54,
|
58 |
+
"type": "IMG+TXT"
|
59 |
+
},
|
60 |
+
"raw": {
|
61 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
62 |
+
"filename": "dataset-raw.zip",
|
63 |
+
"package_size": 31077950,
|
64 |
+
"size": 54,
|
65 |
+
"type": "Waifuc-Raw"
|
66 |
+
},
|
67 |
+
"stage3-p480-1200": {
|
68 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
69 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
70 |
+
"package_size": 51547971,
|
71 |
+
"size": 82,
|
72 |
+
"type": "IMG+TXT"
|
73 |
+
}
|
74 |
+
},
|
75 |
+
"version": "v1.5.1"
|
76 |
+
}
|
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
|