Publish character 'alpha_lapisrelights' to repository, on 2024-02-22 04:59:06 UTC
Browse files- README.md +79 -0
- dataset-1200.zip +3 -0
- dataset-800.zip +3 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +118 -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,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 Alpha (Lapis Re:LiGHTs)
|
13 |
+
|
14 |
+
This is the dataset of Alpha (Lapis Re:LiGHTs), containing 57 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `pink_hair, long_hair, side_ponytail, blue_eyes, bangs, breasts`, 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 | 57 | 31.24 MiB | [Download](https://huggingface.co/datasets/CyberHarem/alpha_lapisrelights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 57 | 27.14 MiB | [Download](https://huggingface.co/datasets/CyberHarem/alpha_lapisrelights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 105 | 48.37 MiB | [Download](https://huggingface.co/datasets/CyberHarem/alpha_lapisrelights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 57 | 31.21 MiB | [Download](https://huggingface.co/datasets/CyberHarem/alpha_lapisrelights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 105 | 55.13 MiB | [Download](https://huggingface.co/datasets/CyberHarem/alpha_lapisrelights/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/alpha_lapisrelights',
|
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 | 8 | ![](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, fingerless_gloves, solo, black_gloves, bike_shorts, dress, capelet, skirt, black_shorts, standing |
|
69 |
+
| 1 | 10 | ![](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) | black_capelet, 1girl, closed_mouth, sidelocks, upper_body, white_shirt, sitting, chair, couch, looking_at_viewer, medium_breasts, indoors, solo_focus |
|
70 |
+
| 2 | 7 | ![](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, collarbone, sleeveless_dress, frilled_dress, looking_at_viewer, purple_dress, solo, bare_shoulders, closed_mouth, cowboy_shot, layered_dress, red_rose, sidelocks, arm_garter, black_bow, black_choker, blurry, hair_bow, hair_flower, medium_breasts, skirt, standing, upper_body |
|
71 |
+
|
72 |
+
### Table Version
|
73 |
+
|
74 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | fingerless_gloves | solo | black_gloves | bike_shorts | dress | capelet | skirt | black_shorts | standing | black_capelet | closed_mouth | sidelocks | upper_body | white_shirt | sitting | chair | couch | looking_at_viewer | medium_breasts | indoors | solo_focus | collarbone | sleeveless_dress | frilled_dress | purple_dress | bare_shoulders | cowboy_shot | layered_dress | red_rose | arm_garter | black_bow | black_choker | blurry | hair_bow | hair_flower |
|
75 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------|:---------------|:--------------|:--------|:----------|:--------|:---------------|:-----------|:----------------|:---------------|:------------|:-------------|:--------------|:----------|:--------|:--------|:--------------------|:-----------------|:----------|:-------------|:-------------|:-------------------|:----------------|:---------------|:-----------------|:--------------|:----------------|:-----------|:-------------|:------------|:---------------|:---------|:-----------|:--------------|
|
76 |
+
| 0 | 8 | ![](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 | | | | | | | | | | | | | | | | | | | | | | | | | | |
|
77 |
+
| 1 | 10 | ![](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 | | | | | | | | | | | | | | |
|
78 |
+
| 2 | 7 | ![](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 |
|
79 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65a73330d5d7f99186e5df26f792738e9ba6a22be62ed86d2515ac3d9f2ea7e4
|
3 |
+
size 32731140
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7df5e2a8619213ed239ed05a33959a8375e211a0d47dd48cd7aea2efcaf3c3e8
|
3 |
+
size 28455915
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25c22157d2c76e6546a86e62008284cf3985d0020dec7f1cb8407df3ae3a357b
|
3 |
+
size 32756074
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6a2635874400503779766b8d1876492ad297dd1185763e151ddfd215a6f62f06
|
3 |
+
size 57807849
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:da08378bd6665200dbffd019ea773b3138b925641e47024e7953c00dd8bca131
|
3 |
+
size 50716600
|
meta.json
ADDED
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": "BangumiBase/lapisrelights",
|
3 |
+
"base_size": 57,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 8,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"fingerless_gloves",
|
11 |
+
"solo",
|
12 |
+
"black_gloves",
|
13 |
+
"bike_shorts",
|
14 |
+
"dress",
|
15 |
+
"capelet",
|
16 |
+
"skirt",
|
17 |
+
"black_shorts",
|
18 |
+
"standing"
|
19 |
+
]
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"id": 1,
|
23 |
+
"size": 10,
|
24 |
+
"tags": [
|
25 |
+
"black_capelet",
|
26 |
+
"1girl",
|
27 |
+
"closed_mouth",
|
28 |
+
"sidelocks",
|
29 |
+
"upper_body",
|
30 |
+
"white_shirt",
|
31 |
+
"sitting",
|
32 |
+
"chair",
|
33 |
+
"couch",
|
34 |
+
"looking_at_viewer",
|
35 |
+
"medium_breasts",
|
36 |
+
"indoors",
|
37 |
+
"solo_focus"
|
38 |
+
]
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"id": 2,
|
42 |
+
"size": 7,
|
43 |
+
"tags": [
|
44 |
+
"1girl",
|
45 |
+
"collarbone",
|
46 |
+
"sleeveless_dress",
|
47 |
+
"frilled_dress",
|
48 |
+
"looking_at_viewer",
|
49 |
+
"purple_dress",
|
50 |
+
"solo",
|
51 |
+
"bare_shoulders",
|
52 |
+
"closed_mouth",
|
53 |
+
"cowboy_shot",
|
54 |
+
"layered_dress",
|
55 |
+
"red_rose",
|
56 |
+
"sidelocks",
|
57 |
+
"arm_garter",
|
58 |
+
"black_bow",
|
59 |
+
"black_choker",
|
60 |
+
"blurry",
|
61 |
+
"hair_bow",
|
62 |
+
"hair_flower",
|
63 |
+
"medium_breasts",
|
64 |
+
"skirt",
|
65 |
+
"standing",
|
66 |
+
"upper_body"
|
67 |
+
]
|
68 |
+
}
|
69 |
+
],
|
70 |
+
"core_tags": [
|
71 |
+
"pink_hair",
|
72 |
+
"long_hair",
|
73 |
+
"side_ponytail",
|
74 |
+
"blue_eyes",
|
75 |
+
"bangs",
|
76 |
+
"breasts"
|
77 |
+
],
|
78 |
+
"display_name": "Alpha (Lapis Re:LiGHTs)",
|
79 |
+
"name": "alpha_lapisrelights",
|
80 |
+
"packages": {
|
81 |
+
"1200": {
|
82 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
83 |
+
"filename": "dataset-1200.zip",
|
84 |
+
"package_size": 32731140,
|
85 |
+
"size": 57,
|
86 |
+
"type": "IMG+TXT"
|
87 |
+
},
|
88 |
+
"800": {
|
89 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
90 |
+
"filename": "dataset-800.zip",
|
91 |
+
"package_size": 28455915,
|
92 |
+
"size": 57,
|
93 |
+
"type": "IMG+TXT"
|
94 |
+
},
|
95 |
+
"raw": {
|
96 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
97 |
+
"filename": "dataset-raw.zip",
|
98 |
+
"package_size": 32756074,
|
99 |
+
"size": 57,
|
100 |
+
"type": "Waifuc-Raw"
|
101 |
+
},
|
102 |
+
"stage3-p480-1200": {
|
103 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
104 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
105 |
+
"package_size": 57807849,
|
106 |
+
"size": 105,
|
107 |
+
"type": "IMG+TXT"
|
108 |
+
},
|
109 |
+
"stage3-p480-800": {
|
110 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
111 |
+
"filename": "dataset-stage3-p480-800.zip",
|
112 |
+
"package_size": 50716600,
|
113 |
+
"size": 105,
|
114 |
+
"type": "IMG+TXT"
|
115 |
+
}
|
116 |
+
},
|
117 |
+
"version": "v1.5"
|
118 |
+
}
|
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
|