narugo1992
commited on
Publish character 'sophia_reverse1999' to repository, on 2024-08-05 12:40:52 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 +116 -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 Sophia/苏菲亚/ソフィア(リバース:1999) (Reverse:1999)
|
13 |
+
|
14 |
+
This is the dataset of Sophia/苏菲亚/ソフィア(リバース:1999) (Reverse:1999), containing 47 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `red_hair, long_hair, green_eyes, hairband, white_hairband, hair_bun`, 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 | 47 | 75.06 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sophia_reverse1999/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | -- | -- |
|
25 |
+
| stage3-p480-1200 | 93 | 116.16 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sophia_reverse1999/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | 41 | 52 |
|
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/sophia_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 | 9 |  |  |  |  |  | curly_hair, white_dress, ancient_greek_clothes, drill_hair, outdoors, parted_lips, solo_focus, 1girl, 2girls, blue_hair, from_side, gold_choker, necklace, out_of_frame, sky, toga |
|
66 |
+
| 1 | 5 |  |  |  |  |  | 1girl, ancient_greek_clothes, closed_mouth, greco-roman_clothes, jewelry, blue_sky, hand_up, looking_at_viewer, parted_bangs, single_side_bun, smile, standing, toga, cleavage, cloud, day, fingerless_gloves, full_body, gold_choker, outdoors, solo_focus, white_dress, beach, black_gloves, curly_hair, drill_hair, dutch_angle, holding_book, single_glove |
|
67 |
+
| 2 | 8 |  |  |  |  |  | simple_background, white_background, 1girl, gold_choker, closed_mouth, necklace, upper_body, ancient_greek_clothes, cleavage, dress, freckles, looking_at_viewer, profile, solo_focus, toga |
|
68 |
+
|
69 |
+
### Table Version
|
70 |
+
|
71 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | curly_hair | white_dress | ancient_greek_clothes | drill_hair | outdoors | parted_lips | solo_focus | 1girl | 2girls | blue_hair | from_side | gold_choker | necklace | out_of_frame | sky | toga | closed_mouth | greco-roman_clothes | jewelry | blue_sky | hand_up | looking_at_viewer | parted_bangs | single_side_bun | smile | standing | cleavage | cloud | day | fingerless_gloves | full_body | beach | black_gloves | dutch_angle | holding_book | single_glove | simple_background | white_background | upper_body | dress | freckles | profile |
|
72 |
+
|----:|----------:|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-------------|:--------------|:------------------------|:-------------|:-----------|:--------------|:-------------|:--------|:---------|:------------|:------------|:--------------|:-----------|:---------------|:------|:-------|:---------------|:----------------------|:----------|:-----------|:----------|:--------------------|:---------------|:------------------|:--------|:-----------|:-----------|:--------|:------|:--------------------|:------------|:--------|:---------------|:--------------|:---------------|:---------------|:--------------------|:-------------------|:-------------|:--------|:-----------|:----------|
|
73 |
+
| 0 | 9 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | | | | | |
|
74 |
+
| 1 | 5 |  |  |  |  |  | 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 | | | | | | |
|
75 |
+
| 2 | 8 |  |  |  |  |  | | | X | | | | X | 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:62093f73949d1a735d029cac04a312067cea83e5516db4be4de1de33d0ae713a
|
3 |
+
size 78706998
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:73ffb9c9a8c8701c61d40fd27daa99444d299d8d85829a0c4afe266054d5eee6
|
3 |
+
size 121797675
|
embeddings/all.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b13923cdb323fb4a8c0a34c9612490e7fccf7b6b9e8f92f3b77c108b3c790377
|
3 |
+
size 192640
|
embeddings/group_0.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a63e5ef68af36f4a8f210cfd9e824823b00d4da9d7a217d943dd04950b78cda
|
3 |
+
size 36992
|
embeddings/group_1.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a8d9c3b737ec2a09690c68602d367df6c2492394d7ce961f5d272c899a2ffb4e
|
3 |
+
size 20608
|
embeddings/group_2.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf8fd3f754a70547cabe504fd8b7b5f1bece6165afb88a5122f0daaaa75b1558
|
3 |
+
size 32896
|
meta.json
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 47,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 9,
|
8 |
+
"tags": [
|
9 |
+
"curly_hair",
|
10 |
+
"white_dress",
|
11 |
+
"ancient_greek_clothes",
|
12 |
+
"drill_hair",
|
13 |
+
"outdoors",
|
14 |
+
"parted_lips",
|
15 |
+
"solo_focus",
|
16 |
+
"1girl",
|
17 |
+
"2girls",
|
18 |
+
"blue_hair",
|
19 |
+
"from_side",
|
20 |
+
"gold_choker",
|
21 |
+
"necklace",
|
22 |
+
"out_of_frame",
|
23 |
+
"sky",
|
24 |
+
"toga"
|
25 |
+
]
|
26 |
+
},
|
27 |
+
{
|
28 |
+
"id": 1,
|
29 |
+
"size": 5,
|
30 |
+
"tags": [
|
31 |
+
"1girl",
|
32 |
+
"ancient_greek_clothes",
|
33 |
+
"closed_mouth",
|
34 |
+
"greco-roman_clothes",
|
35 |
+
"jewelry",
|
36 |
+
"blue_sky",
|
37 |
+
"hand_up",
|
38 |
+
"looking_at_viewer",
|
39 |
+
"parted_bangs",
|
40 |
+
"single_side_bun",
|
41 |
+
"smile",
|
42 |
+
"standing",
|
43 |
+
"toga",
|
44 |
+
"cleavage",
|
45 |
+
"cloud",
|
46 |
+
"day",
|
47 |
+
"fingerless_gloves",
|
48 |
+
"full_body",
|
49 |
+
"gold_choker",
|
50 |
+
"outdoors",
|
51 |
+
"solo_focus",
|
52 |
+
"white_dress",
|
53 |
+
"beach",
|
54 |
+
"black_gloves",
|
55 |
+
"curly_hair",
|
56 |
+
"drill_hair",
|
57 |
+
"dutch_angle",
|
58 |
+
"holding_book",
|
59 |
+
"single_glove"
|
60 |
+
]
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"id": 2,
|
64 |
+
"size": 8,
|
65 |
+
"tags": [
|
66 |
+
"simple_background",
|
67 |
+
"white_background",
|
68 |
+
"1girl",
|
69 |
+
"gold_choker",
|
70 |
+
"closed_mouth",
|
71 |
+
"necklace",
|
72 |
+
"upper_body",
|
73 |
+
"ancient_greek_clothes",
|
74 |
+
"cleavage",
|
75 |
+
"dress",
|
76 |
+
"freckles",
|
77 |
+
"looking_at_viewer",
|
78 |
+
"profile",
|
79 |
+
"solo_focus",
|
80 |
+
"toga"
|
81 |
+
]
|
82 |
+
}
|
83 |
+
],
|
84 |
+
"core_tags": [
|
85 |
+
"red_hair",
|
86 |
+
"long_hair",
|
87 |
+
"green_eyes",
|
88 |
+
"hairband",
|
89 |
+
"white_hairband",
|
90 |
+
"hair_bun"
|
91 |
+
],
|
92 |
+
"display_name": "Sophia/苏菲亚/ソフィア(リバース:1999) (Reverse:1999)",
|
93 |
+
"name": "sophia_reverse1999",
|
94 |
+
"packages": {
|
95 |
+
"raw": {
|
96 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
97 |
+
"filename": "dataset-raw.zip",
|
98 |
+
"package_size": 78706998,
|
99 |
+
"size": 47,
|
100 |
+
"sub_sizes": {},
|
101 |
+
"type": "Waifuc-Raw"
|
102 |
+
},
|
103 |
+
"stage3-p480-1200": {
|
104 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
105 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
106 |
+
"package_size": 121797675,
|
107 |
+
"size": 93,
|
108 |
+
"sub_sizes": {
|
109 |
+
"head": 41,
|
110 |
+
"others": 52
|
111 |
+
},
|
112 |
+
"type": "IMG+TXT"
|
113 |
+
}
|
114 |
+
},
|
115 |
+
"version": "v1.6-alpha3"
|
116 |
+
}
|
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
|