Publish character 'kita_hinako (THE iDOLM@STER: Cinderella Girls)' to repository, on 2024-01-16 18:58:09 UTC
Browse files- README.md +59 -14
- dataset-384x512.zip → dataset-1200.zip +2 -2
- dataset-640x880.zip +0 -3
- dataset-512x512.zip → dataset-800.zip +2 -2
- dataset-raw-stage3.zip +0 -3
- dataset-raw.zip +2 -2
- dataset-stage3-1200.zip +0 -3
- dataset-stage3-640.zip +0 -3
- dataset-stage3-800.zip +0 -3
- dataset-stage3-p480-1200.zip +3 -0
- dataset-stage3-p480-800.zip +3 -0
- meta.json +63 -1
- dataset-512x704.zip → samples/0/clu0-sample0.png +2 -2
- dataset-640x640.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
README.md
CHANGED
@@ -9,22 +9,67 @@ size_categories:
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
-
# Dataset of kita_hinako (THE iDOLM@STER: Cinderella Girls)
|
13 |
|
14 |
-
This is the dataset of kita_hinako (THE iDOLM@STER: Cinderella Girls), containing
|
|
|
|
|
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 |
|
18 |
-
|
19 |
-
|
20 |
-
|
|
21 |
-
|
22 |
-
|
|
23 |
-
|
|
24 |
-
|
|
25 |
-
|
|
26 |
-
|
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
+
# Dataset of kita_hinako/喜多日菜子 (THE iDOLM@STER: Cinderella Girls)
|
13 |
|
14 |
+
This is the dataset of kita_hinako/喜多日菜子 (THE iDOLM@STER: Cinderella Girls), containing 112 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `brown_hair, brown_eyes, short_hair, hat, bangs`, 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 | 112 | 93.98 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kita_hinako_idolmastercinderellagirls/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 112 | 66.89 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kita_hinako_idolmastercinderellagirls/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 237 | 131.39 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kita_hinako_idolmastercinderellagirls/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 112 | 87.82 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kita_hinako_idolmastercinderellagirls/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 237 | 166.37 MiB | [Download](https://huggingface.co/datasets/CyberHarem/kita_hinako_idolmastercinderellagirls/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/kita_hinako_idolmastercinderellagirls',
|
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 | 24 | ![](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, blush, solo, open_mouth, smile, dress, jewelry |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | blush | solo | open_mouth | smile | dress | jewelry |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------|:-------|:-------------|:--------|:--------|:----------|
|
74 |
+
| 0 | 24 | ![](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 |
|
75 |
|
dataset-384x512.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:6a6338bcd8594944411938780b5dd73383515dcc1c41bf65571cc1e272d746d7
|
3 |
+
size 92083608
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:34bdca80009d02e33cb5a0b065d4f345dad11f13f7a4ee34810e9e0bada310d2
|
3 |
-
size 36832731
|
|
|
|
|
|
|
|
dataset-512x512.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:f5646ccc9f33326830f088f721d8926217b279cfb9b4b3a8704d371377c693aa
|
3 |
+
size 70136583
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:41a602ab474ca1c592caa1481590e769b40838b8f1bd8fdd82b45fe434e8d5b9
|
3 |
-
size 84268710
|
|
|
|
|
|
|
|
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:c1e7f141beb23e0829a72ca1bcf5a5c59e50ed0298d7be179ffa83cf6d74eb91
|
3 |
+
size 98549467
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9bdb0b745b44158a7b8c49d4a2b0210af848bda9076a7d3bf2624bd0d0e2c896
|
3 |
-
size 83600983
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:337fb80d464a42d7f45db5da631e8869783d1d6581eb24aa1825c354d50bb890
|
3 |
-
size 74673800
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:2c17cac106e9517f55e99f3faefb70ea3ab281039185b79e1006b119c913d897
|
3 |
-
size 81871565
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:024272fbbe7c94f4744210bed1820dc66bf618e9153b1c68026c0303f8c45edb
|
3 |
+
size 174447067
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8eb915e0bcb53d4b3baa7f24a974bef9bfa579b357b9055c93b3c710b061bc8b
|
3 |
+
size 137775885
|
meta.json
CHANGED
@@ -1,4 +1,66 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"name": "kita_hinako (THE iDOLM@STER: Cinderella Girls)",
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 112,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 24,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"blush",
|
11 |
+
"solo",
|
12 |
+
"open_mouth",
|
13 |
+
"smile",
|
14 |
+
"dress",
|
15 |
+
"jewelry"
|
16 |
+
]
|
17 |
+
}
|
18 |
+
],
|
19 |
+
"core_tags": [
|
20 |
+
"brown_hair",
|
21 |
+
"brown_eyes",
|
22 |
+
"short_hair",
|
23 |
+
"hat",
|
24 |
+
"bangs"
|
25 |
+
],
|
26 |
+
"display_name": "kita_hinako/喜多日菜子 (THE iDOLM@STER: Cinderella Girls)",
|
27 |
"name": "kita_hinako (THE iDOLM@STER: Cinderella Girls)",
|
28 |
+
"packages": {
|
29 |
+
"1200": {
|
30 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
31 |
+
"filename": "dataset-1200.zip",
|
32 |
+
"package_size": 92083608,
|
33 |
+
"size": 112,
|
34 |
+
"type": "IMG+TXT"
|
35 |
+
},
|
36 |
+
"800": {
|
37 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
38 |
+
"filename": "dataset-800.zip",
|
39 |
+
"package_size": 70136583,
|
40 |
+
"size": 112,
|
41 |
+
"type": "IMG+TXT"
|
42 |
+
},
|
43 |
+
"raw": {
|
44 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
45 |
+
"filename": "dataset-raw.zip",
|
46 |
+
"package_size": 98549467,
|
47 |
+
"size": 112,
|
48 |
+
"type": "Waifuc-Raw"
|
49 |
+
},
|
50 |
+
"stage3-p480-1200": {
|
51 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
52 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
53 |
+
"package_size": 174447067,
|
54 |
+
"size": 237,
|
55 |
+
"type": "IMG+TXT"
|
56 |
+
},
|
57 |
+
"stage3-p480-800": {
|
58 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
59 |
+
"filename": "dataset-stage3-p480-800.zip",
|
60 |
+
"package_size": 137775885,
|
61 |
+
"size": 237,
|
62 |
+
"type": "IMG+TXT"
|
63 |
+
}
|
64 |
+
},
|
65 |
+
"version": "v1.5"
|
66 |
}
|
dataset-512x704.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-640x640.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
|