Publish character '6_reverse1999' to repository, on 2024-08-05 12:38:54 UTC
Browse files- README.md +76 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- embeddings/all.npy +3 -0
- embeddings/group_0.npy +3 -0
- embeddings/group_1.npy +3 -0
- embeddings/group_2.npy +3 -0
- meta.json +99 -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,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 6 (Reverse:1999)
|
13 |
+
|
14 |
+
This is the dataset of 6 (Reverse:1999), containing 39 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, blonde_hair, blue_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-head | Images-others |
|
23 |
+
|:-----------------|---------:|:-----------|:---------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|:--------------|:----------------|
|
24 |
+
| raw | 39 | 73.26 MiB | [Download](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | -- | -- |
|
25 |
+
| stage3-p480-1200 | 86 | 116.02 MiB | [Download](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | 33 | 53 |
|
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/6_reverse1999',
|
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 | 8 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample4.png) | long_sleeves, solo, 1boy, circlet, greco-roman_clothes, holding_scroll, looking_at_viewer, male_focus, closed_mouth, cowboy_shot, hair_over_one_eye, simple_background, standing, white_background, 1girl, jewelry, one_eye_covered, white_robe |
|
66 |
+
| 1 | 12 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample4.png) | 1boy, solo, long_sleeves, male_focus, circlet, closed_mouth, white_robe, ancient_greek_clothes, sky, standing, from_side, greco-roman_clothes, indoors, outdoors, upper_body |
|
67 |
+
| 2 | 5 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample4.png) | 1boy, circlet, male_focus, portrait, solo, wavy_hair, 1girl, looking_at_viewer, open_mouth, parted_lips, simple_background, upper_body, white_background |
|
68 |
+
|
69 |
+
### Table Version
|
70 |
+
|
71 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | long_sleeves | solo | 1boy | circlet | greco-roman_clothes | holding_scroll | looking_at_viewer | male_focus | closed_mouth | cowboy_shot | hair_over_one_eye | simple_background | standing | white_background | 1girl | jewelry | one_eye_covered | white_robe | ancient_greek_clothes | sky | from_side | indoors | outdoors | upper_body | portrait | wavy_hair | open_mouth | parted_lips |
|
72 |
+
|----:|----------:|:------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------|:---------------|:-------|:-------|:----------|:----------------------|:-----------------|:--------------------|:-------------|:---------------|:--------------|:--------------------|:--------------------|:-----------|:-------------------|:--------|:----------|:------------------|:-------------|:------------------------|:------|:------------|:----------|:-----------|:-------------|:-----------|:------------|:-------------|:--------------|
|
73 |
+
| 0 | 8 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/0/clu0-sample4.png) | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | |
|
74 |
+
| 1 | 12 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/1/clu1-sample4.png) | X | X | X | X | X | | | X | X | | | | X | | | | | X | X | X | X | X | X | X | | | | |
|
75 |
+
| 2 | 5 | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample0.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample1.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample2.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample3.png) | ![](https://huggingface.co/datasets/CyberHarem/6_reverse1999/resolve/main/samples/2/clu2-sample4.png) | | X | X | X | | | X | X | | | | X | | X | X | | | | | | | | | X | X | X | X | X |
|
76 |
+
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:72b88a5965d7a9ae440472a4682a35860b866f3c7469bd7ba29037b44b4a3254
|
3 |
+
size 76813679
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:925572af7fe188ac3bbe6447375381efc11921820ccf0fdec4810263b794d8af
|
3 |
+
size 121654733
|
embeddings/all.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e4d018fe804b7ff85c8091175b521b6fd0afb0be7e9a14b439ae6b61171c8021
|
3 |
+
size 159872
|
embeddings/group_0.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec015b4b3781cab650860cd822d02a2e2f2913bdbf9d74af57130cc450852729
|
3 |
+
size 32896
|
embeddings/group_1.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:08820f28c6254cc37a9aa943ea8fafdaf5f5ca862639105c07d025a0c1721f5f
|
3 |
+
size 49280
|
embeddings/group_2.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b55aa5d3934676f555091cf8f62f6c69bc54f11d98511bcf6d86ddcd07f9bb9
|
3 |
+
size 20608
|
meta.json
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 39,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 8,
|
8 |
+
"tags": [
|
9 |
+
"long_sleeves",
|
10 |
+
"solo",
|
11 |
+
"1boy",
|
12 |
+
"circlet",
|
13 |
+
"greco-roman_clothes",
|
14 |
+
"holding_scroll",
|
15 |
+
"looking_at_viewer",
|
16 |
+
"male_focus",
|
17 |
+
"closed_mouth",
|
18 |
+
"cowboy_shot",
|
19 |
+
"hair_over_one_eye",
|
20 |
+
"simple_background",
|
21 |
+
"standing",
|
22 |
+
"white_background",
|
23 |
+
"1girl",
|
24 |
+
"jewelry",
|
25 |
+
"one_eye_covered",
|
26 |
+
"white_robe"
|
27 |
+
]
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"id": 1,
|
31 |
+
"size": 12,
|
32 |
+
"tags": [
|
33 |
+
"1boy",
|
34 |
+
"solo",
|
35 |
+
"long_sleeves",
|
36 |
+
"male_focus",
|
37 |
+
"circlet",
|
38 |
+
"closed_mouth",
|
39 |
+
"white_robe",
|
40 |
+
"ancient_greek_clothes",
|
41 |
+
"sky",
|
42 |
+
"standing",
|
43 |
+
"from_side",
|
44 |
+
"greco-roman_clothes",
|
45 |
+
"indoors",
|
46 |
+
"outdoors",
|
47 |
+
"upper_body"
|
48 |
+
]
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"id": 2,
|
52 |
+
"size": 5,
|
53 |
+
"tags": [
|
54 |
+
"1boy",
|
55 |
+
"circlet",
|
56 |
+
"male_focus",
|
57 |
+
"portrait",
|
58 |
+
"solo",
|
59 |
+
"wavy_hair",
|
60 |
+
"1girl",
|
61 |
+
"looking_at_viewer",
|
62 |
+
"open_mouth",
|
63 |
+
"parted_lips",
|
64 |
+
"simple_background",
|
65 |
+
"upper_body",
|
66 |
+
"white_background"
|
67 |
+
]
|
68 |
+
}
|
69 |
+
],
|
70 |
+
"core_tags": [
|
71 |
+
"long_hair",
|
72 |
+
"blonde_hair",
|
73 |
+
"blue_eyes"
|
74 |
+
],
|
75 |
+
"display_name": "6 (Reverse:1999)",
|
76 |
+
"name": "6_reverse1999",
|
77 |
+
"packages": {
|
78 |
+
"raw": {
|
79 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
80 |
+
"filename": "dataset-raw.zip",
|
81 |
+
"package_size": 76813679,
|
82 |
+
"size": 39,
|
83 |
+
"sub_sizes": {},
|
84 |
+
"type": "Waifuc-Raw"
|
85 |
+
},
|
86 |
+
"stage3-p480-1200": {
|
87 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
88 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
89 |
+
"package_size": 121654733,
|
90 |
+
"size": 86,
|
91 |
+
"sub_sizes": {
|
92 |
+
"head": 33,
|
93 |
+
"others": 53
|
94 |
+
},
|
95 |
+
"type": "IMG+TXT"
|
96 |
+
}
|
97 |
+
},
|
98 |
+
"version": "v1.6-alpha3"
|
99 |
+
}
|
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
|