Publish character 'milk_nikke' to repository, on 2024-01-24 09:49:49 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 +77 -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 milk/ミルク/米尔克/밀크 (Nikke: Goddess of Victory)
|
13 |
+
|
14 |
+
This is the dataset of milk/ミルク/米尔克/밀크 (Nikke: Goddess of Victory), containing 16 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `black_hair, yellow_eyes, short_hair, breasts, bangs, hat, black_headwear, large_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 | 16 | 20.53 MiB | [Download](https://huggingface.co/datasets/CyberHarem/milk_nikke/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 16 | 10.55 MiB | [Download](https://huggingface.co/datasets/CyberHarem/milk_nikke/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 37 | 22.81 MiB | [Download](https://huggingface.co/datasets/CyberHarem/milk_nikke/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 16 | 17.45 MiB | [Download](https://huggingface.co/datasets/CyberHarem/milk_nikke/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 37 | 33.39 MiB | [Download](https://huggingface.co/datasets/CyberHarem/milk_nikke/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/milk_nikke',
|
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 | 16 | ![](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, looking_at_viewer, fingerless_gloves, navel, black_gloves, bare_shoulders, midriff, see-through, simple_background, white_background, closed_mouth, crop_top, shirt, stomach |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | looking_at_viewer | fingerless_gloves | navel | black_gloves | bare_shoulders | midriff | see-through | simple_background | white_background | closed_mouth | crop_top | shirt | stomach |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------------------|:--------------------|:--------|:---------------|:-----------------|:----------|:--------------|:--------------------|:-------------------|:---------------|:-----------|:--------|:----------|
|
74 |
+
| 0 | 16 | ![](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 |
|
75 |
+
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3b841c7346301342acca55fc29f6fe70b3bbc821d5ca93fdd7343417504736a
|
3 |
+
size 18296174
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:423232708ec46e87ea85ac9c9cbf304e972926bfa22bd544e21b72673ba61c52
|
3 |
+
size 11066677
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a87998db7ed27f56c1eaad555c8a265a37ef3b5b9b89e26b3ba062374ece975
|
3 |
+
size 21527990
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b27bbe1d215a5eb4f6fd8eca06d6ac7b48f15b63a611c07ea39eef2b140670ed
|
3 |
+
size 35015063
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ee284f8bf31b7d2dd8e3284fa611eea1255d8b57db163712df8f89651fad93e
|
3 |
+
size 23915700
|
meta.json
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 16,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 16,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"looking_at_viewer",
|
12 |
+
"fingerless_gloves",
|
13 |
+
"navel",
|
14 |
+
"black_gloves",
|
15 |
+
"bare_shoulders",
|
16 |
+
"midriff",
|
17 |
+
"see-through",
|
18 |
+
"simple_background",
|
19 |
+
"white_background",
|
20 |
+
"closed_mouth",
|
21 |
+
"crop_top",
|
22 |
+
"shirt",
|
23 |
+
"stomach"
|
24 |
+
]
|
25 |
+
}
|
26 |
+
],
|
27 |
+
"core_tags": [
|
28 |
+
"black_hair",
|
29 |
+
"yellow_eyes",
|
30 |
+
"short_hair",
|
31 |
+
"breasts",
|
32 |
+
"bangs",
|
33 |
+
"hat",
|
34 |
+
"black_headwear",
|
35 |
+
"large_breasts"
|
36 |
+
],
|
37 |
+
"display_name": "milk/ミルク/米尔克/밀크 (Nikke: Goddess of Victory)",
|
38 |
+
"name": "milk_nikke",
|
39 |
+
"packages": {
|
40 |
+
"1200": {
|
41 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
42 |
+
"filename": "dataset-1200.zip",
|
43 |
+
"package_size": 18296174,
|
44 |
+
"size": 16,
|
45 |
+
"type": "IMG+TXT"
|
46 |
+
},
|
47 |
+
"800": {
|
48 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
49 |
+
"filename": "dataset-800.zip",
|
50 |
+
"package_size": 11066677,
|
51 |
+
"size": 16,
|
52 |
+
"type": "IMG+TXT"
|
53 |
+
},
|
54 |
+
"raw": {
|
55 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
56 |
+
"filename": "dataset-raw.zip",
|
57 |
+
"package_size": 21527990,
|
58 |
+
"size": 16,
|
59 |
+
"type": "Waifuc-Raw"
|
60 |
+
},
|
61 |
+
"stage3-p480-1200": {
|
62 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
63 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
64 |
+
"package_size": 35015063,
|
65 |
+
"size": 37,
|
66 |
+
"type": "IMG+TXT"
|
67 |
+
},
|
68 |
+
"stage3-p480-800": {
|
69 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
70 |
+
"filename": "dataset-stage3-p480-800.zip",
|
71 |
+
"package_size": 23915700,
|
72 |
+
"size": 37,
|
73 |
+
"type": "IMG+TXT"
|
74 |
+
}
|
75 |
+
},
|
76 |
+
"version": "v1.5"
|
77 |
+
}
|
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
|