Publish character 'sol_neuralcloud' to repository, on 2024-02-17 16:24:36 UTC
Browse files- README.md +75 -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 +85 -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
README.md
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 sol/ソル/苏尔 (Neural Cloud)
|
13 |
+
|
14 |
+
This is the dataset of sol/ソル/苏尔 (Neural Cloud), containing 21 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `long_hair, blonde_hair, hair_between_eyes, yellow_eyes, ponytail, very_long_hair, 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 | 21 | 26.74 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sol_neuralcloud/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 21 | 17.03 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sol_neuralcloud/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 38 | 28.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sol_neuralcloud/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 21 | 24.02 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sol_neuralcloud/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 38 | 36.53 MiB | [Download](https://huggingface.co/datasets/CyberHarem/sol_neuralcloud/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/sol_neuralcloud',
|
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 | 21 | ![](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, solo, smile, fingerless_gloves, black_gloves, looking_at_viewer, white_shirt, belt, crop_top, midriff, navel, necklace, orange_jacket, open_jacket, black_pants, long_sleeves, standing, fur-trimmed_jacket, holding, outdoors, black_choker, boots, sky |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | smile | fingerless_gloves | black_gloves | looking_at_viewer | white_shirt | belt | crop_top | midriff | navel | necklace | orange_jacket | open_jacket | black_pants | long_sleeves | standing | fur-trimmed_jacket | holding | outdoors | black_choker | boots | sky |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------|:--------------------|:---------------|:--------------------|:--------------|:-------|:-----------|:----------|:--------|:-----------|:----------------|:--------------|:--------------|:---------------|:-----------|:---------------------|:----------|:-----------|:---------------|:--------|:------|
|
74 |
+
| 0 | 21 | ![](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 | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
75 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:589ddd87e6e972eb9c17f7a71c1f90357539c136b584b344fdf563dd8d7df26b
|
3 |
+
size 25185014
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5d0ca9f73e5f719cb9d308503cadc9dc212a09e250788a2828751e8f17aea7c
|
3 |
+
size 17854286
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab04e81b20b581758faab197bb06bf8baa80233b8d640b812444e7f1238ce445
|
3 |
+
size 28038436
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5da261a03830cb9960cc9e5e71c3552b48ab55ad8920bc66f5be6b0c8188875d
|
3 |
+
size 38303946
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d51c1c0f6876b3d33a0e761d8ea2ae4ba06056bfb9f32883f4177317c9151ffd
|
3 |
+
size 29553791
|
meta.json
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 21,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 21,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"smile",
|
12 |
+
"fingerless_gloves",
|
13 |
+
"black_gloves",
|
14 |
+
"looking_at_viewer",
|
15 |
+
"white_shirt",
|
16 |
+
"belt",
|
17 |
+
"crop_top",
|
18 |
+
"midriff",
|
19 |
+
"navel",
|
20 |
+
"necklace",
|
21 |
+
"orange_jacket",
|
22 |
+
"open_jacket",
|
23 |
+
"black_pants",
|
24 |
+
"long_sleeves",
|
25 |
+
"standing",
|
26 |
+
"fur-trimmed_jacket",
|
27 |
+
"holding",
|
28 |
+
"outdoors",
|
29 |
+
"black_choker",
|
30 |
+
"boots",
|
31 |
+
"sky"
|
32 |
+
]
|
33 |
+
}
|
34 |
+
],
|
35 |
+
"core_tags": [
|
36 |
+
"long_hair",
|
37 |
+
"blonde_hair",
|
38 |
+
"hair_between_eyes",
|
39 |
+
"yellow_eyes",
|
40 |
+
"ponytail",
|
41 |
+
"very_long_hair",
|
42 |
+
"bangs",
|
43 |
+
"breasts"
|
44 |
+
],
|
45 |
+
"display_name": "sol/ソル/苏尔 (Neural Cloud)",
|
46 |
+
"name": "sol_neuralcloud",
|
47 |
+
"packages": {
|
48 |
+
"1200": {
|
49 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
50 |
+
"filename": "dataset-1200.zip",
|
51 |
+
"package_size": 25185014,
|
52 |
+
"size": 21,
|
53 |
+
"type": "IMG+TXT"
|
54 |
+
},
|
55 |
+
"800": {
|
56 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
57 |
+
"filename": "dataset-800.zip",
|
58 |
+
"package_size": 17854286,
|
59 |
+
"size": 21,
|
60 |
+
"type": "IMG+TXT"
|
61 |
+
},
|
62 |
+
"raw": {
|
63 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
64 |
+
"filename": "dataset-raw.zip",
|
65 |
+
"package_size": 28038436,
|
66 |
+
"size": 21,
|
67 |
+
"type": "Waifuc-Raw"
|
68 |
+
},
|
69 |
+
"stage3-p480-1200": {
|
70 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
71 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
72 |
+
"package_size": 38303946,
|
73 |
+
"size": 38,
|
74 |
+
"type": "IMG+TXT"
|
75 |
+
},
|
76 |
+
"stage3-p480-800": {
|
77 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
78 |
+
"filename": "dataset-stage3-p480-800.zip",
|
79 |
+
"package_size": 29553791,
|
80 |
+
"size": 38,
|
81 |
+
"type": "IMG+TXT"
|
82 |
+
}
|
83 |
+
},
|
84 |
+
"version": "v1.5"
|
85 |
+
}
|
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
|