Publish character 'battle_girl (Pokémon)' to repository, on 2024-01-16 14:35:52 UTC
Browse files- README.md +60 -0
- dataset-512x704.zip → dataset-1200.zip +2 -2
- dataset-640x880.zip +0 -3
- dataset-640x640.zip → dataset-800.zip +2 -2
- dataset-raw.zip +2 -2
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +91 -0
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x512.zip → samples/0/clu0-sample1.png +2 -2
- 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
README.md
CHANGED
@@ -13,5 +13,65 @@ size_categories:
|
|
13 |
|
14 |
This is the dataset of battle_girl (Pokémon), containing 36 images and their tags.
|
15 |
|
|
|
|
|
16 |
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)).
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
This is the dataset of battle_girl (Pokémon), containing 36 images and their tags.
|
15 |
|
16 |
+
The core tags of this character are `blue_hair, ponytail, breasts, long_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 |
|
23 |
+
|:-----------------|---------:|:----------|:---------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|
|
24 |
+
| raw | 36 | 24.37 MiB | [Download](https://huggingface.co/datasets/CyberHarem/battle_girl_pokemon/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 36 | 17.69 MiB | [Download](https://huggingface.co/datasets/CyberHarem/battle_girl_pokemon/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 74 | 34.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/battle_girl_pokemon/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 36 | 23.53 MiB | [Download](https://huggingface.co/datasets/CyberHarem/battle_girl_pokemon/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 74 | 41.23 MiB | [Download](https://huggingface.co/datasets/CyberHarem/battle_girl_pokemon/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/battle_girl_pokemon',
|
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 | 6 |  |  |  |  |  | 1girl, midriff, solo, fingerless_gloves, navel, sports_bra, sweat, bike_shorts, crop_top, smile, toned |
|
69 |
+
| 1 | 6 |  |  |  |  |  | 1girl, hetero, 1boy, nipples, open_mouth, penis, solo_focus, blush, medium_breasts, navel, nude, sex, pussy, spread_legs, vaginal |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | midriff | solo | fingerless_gloves | navel | sports_bra | sweat | bike_shorts | crop_top | smile | toned | hetero | 1boy | nipples | open_mouth | penis | solo_focus | blush | medium_breasts | nude | sex | pussy | spread_legs | vaginal |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:----------|:-------|:--------------------|:--------|:-------------|:--------|:--------------|:-----------|:--------|:--------|:---------|:-------|:----------|:-------------|:--------|:-------------|:--------|:-----------------|:-------|:------|:--------|:--------------|:----------|
|
75 |
+
| 0 | 6 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | |
|
76 |
+
| 1 | 6 |  |  |  |  |  | X | | | | X | | | | | | | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
77 |
+
|
dataset-512x704.zip → dataset-1200.zip
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:861c1564f6946d50f73c709f260c1eccf2d9f7de5e0f85fe18804f66cd2ea83d
|
3 |
+
size 24668947
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:75f6fc8241ed7c5f85ab2f7e9fcd18d5e80082ac4fdf22630e905a9f3b529b91
|
3 |
-
size 15080211
|
|
|
|
|
|
|
|
dataset-640x640.zip → dataset-800.zip
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2283ce0cce4c6d7cfe81538ee00275be7810156547bc9efb069f0d2bae7b5aae
|
3 |
+
size 18552354
|
dataset-raw.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b737311cda5cccdbea9f99176c747be28aa275cc09bcf1bac1df5232629d22b0
|
3 |
+
size 25551754
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e744497288b8d5dc265a3c6335694920a85ffd69b5c29649482cab51fcd3257
|
3 |
+
size 43232979
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7cc5a7ae09a3098284fb3c3d241313b050c8687153f76742fcd1afdc0118de80
|
3 |
+
size 35843876
|
meta.json
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 36,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 6,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"midriff",
|
11 |
+
"solo",
|
12 |
+
"fingerless_gloves",
|
13 |
+
"navel",
|
14 |
+
"sports_bra",
|
15 |
+
"sweat",
|
16 |
+
"bike_shorts",
|
17 |
+
"crop_top",
|
18 |
+
"smile",
|
19 |
+
"toned"
|
20 |
+
]
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"id": 1,
|
24 |
+
"size": 6,
|
25 |
+
"tags": [
|
26 |
+
"1girl",
|
27 |
+
"hetero",
|
28 |
+
"1boy",
|
29 |
+
"nipples",
|
30 |
+
"open_mouth",
|
31 |
+
"penis",
|
32 |
+
"solo_focus",
|
33 |
+
"blush",
|
34 |
+
"medium_breasts",
|
35 |
+
"navel",
|
36 |
+
"nude",
|
37 |
+
"sex",
|
38 |
+
"pussy",
|
39 |
+
"spread_legs",
|
40 |
+
"vaginal"
|
41 |
+
]
|
42 |
+
}
|
43 |
+
],
|
44 |
+
"core_tags": [
|
45 |
+
"blue_hair",
|
46 |
+
"ponytail",
|
47 |
+
"breasts",
|
48 |
+
"long_hair",
|
49 |
+
"blue_eyes"
|
50 |
+
],
|
51 |
+
"display_name": "battle_girl (Pokémon)",
|
52 |
+
"name": "battle_girl (Pokémon)",
|
53 |
+
"packages": {
|
54 |
+
"1200": {
|
55 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
56 |
+
"filename": "dataset-1200.zip",
|
57 |
+
"package_size": 24668947,
|
58 |
+
"size": 36,
|
59 |
+
"type": "IMG+TXT"
|
60 |
+
},
|
61 |
+
"800": {
|
62 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
63 |
+
"filename": "dataset-800.zip",
|
64 |
+
"package_size": 18552354,
|
65 |
+
"size": 36,
|
66 |
+
"type": "IMG+TXT"
|
67 |
+
},
|
68 |
+
"raw": {
|
69 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
70 |
+
"filename": "dataset-raw.zip",
|
71 |
+
"package_size": 25551754,
|
72 |
+
"size": 36,
|
73 |
+
"type": "Waifuc-Raw"
|
74 |
+
},
|
75 |
+
"stage3-p480-1200": {
|
76 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
77 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
78 |
+
"package_size": 43232979,
|
79 |
+
"size": 74,
|
80 |
+
"type": "IMG+TXT"
|
81 |
+
},
|
82 |
+
"stage3-p480-800": {
|
83 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
84 |
+
"filename": "dataset-stage3-p480-800.zip",
|
85 |
+
"package_size": 35843876,
|
86 |
+
"size": 74,
|
87 |
+
"type": "IMG+TXT"
|
88 |
+
}
|
89 |
+
},
|
90 |
+
"version": "v1.5"
|
91 |
+
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-512x512.zip → samples/0/clu0-sample1.png
RENAMED
File without changes
|
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
|