narugo1992 commited on
Publish character "gr_mg23 (Girls' Frontline)" to repository, on 2024-01-14 03:49:39 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 +76 -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 gr_mg23/GrMG23/HK23 (Girls' Frontline)
|
| 13 |
+
|
| 14 |
+
This is the dataset of gr_mg23/GrMG23/HK23 (Girls' Frontline), containing 12 images and their tags.
|
| 15 |
+
|
| 16 |
+
The core tags of this character are `breasts, double_bun, hair_bun, long_hair, blonde_hair, large_breasts, purple_eyes, bangs, very_long_hair`, 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 | 12 | 14.63 MiB | [Download](https://huggingface.co/datasets/CyberHarem/gr_mg23_girlsfrontline/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
| 25 |
+
| 800 | 12 | 7.71 MiB | [Download](https://huggingface.co/datasets/CyberHarem/gr_mg23_girlsfrontline/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
| 26 |
+
| stage3-p480-800 | 30 | 17.96 MiB | [Download](https://huggingface.co/datasets/CyberHarem/gr_mg23_girlsfrontline/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
| 27 |
+
| 1200 | 12 | 12.59 MiB | [Download](https://huggingface.co/datasets/CyberHarem/gr_mg23_girlsfrontline/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
| 28 |
+
| stage3-p480-1200 | 30 | 26.80 MiB | [Download](https://huggingface.co/datasets/CyberHarem/gr_mg23_girlsfrontline/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/gr_mg23_girlsfrontline',
|
| 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 | 12 |  |  |  |  |  | 1girl, solo, blush, gloves, looking_at_viewer, long_sleeves, open_mouth, white_background, black_skirt, black_thighhighs, pleated_skirt, black_jacket, simple_background |
|
| 69 |
+
|
| 70 |
+
### Table Version
|
| 71 |
+
|
| 72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | blush | gloves | looking_at_viewer | long_sleeves | open_mouth | white_background | black_skirt | black_thighhighs | pleated_skirt | black_jacket | simple_background |
|
| 73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:--------|:---------|:--------------------|:---------------|:-------------|:-------------------|:--------------|:-------------------|:----------------|:---------------|:--------------------|
|
| 74 |
+
| 0 | 12 |  |  |  |  |  | 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:7894ee26a3bea071e206ab53040c8af54be4ff057371571759505574a26006cb
|
| 3 |
+
size 13198005
|
dataset-800.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b13285ab4d93e474bee512d5ee9375317d72e5a9daa30fa4f2be7d0e026ff085
|
| 3 |
+
size 8086317
|
dataset-raw.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af9e6caf4975f649bf710f39aa598b6f10157ee8b7eca3dcf8d23b9b3ca050af
|
| 3 |
+
size 15344541
|
dataset-stage3-p480-1200.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47e7baf3d229572e2e9b17ccfc7d62033b3d51872c9aee1012c40d984003427c
|
| 3 |
+
size 28099491
|
dataset-stage3-p480-800.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ac6b42415f9b833d194659752f4102ccac8bfd55f49f56192cd515f29616dc3
|
| 3 |
+
size 18831062
|
meta.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bangumi": null,
|
| 3 |
+
"base_size": 12,
|
| 4 |
+
"clusters": [
|
| 5 |
+
{
|
| 6 |
+
"id": 0,
|
| 7 |
+
"size": 12,
|
| 8 |
+
"tags": [
|
| 9 |
+
"1girl",
|
| 10 |
+
"solo",
|
| 11 |
+
"blush",
|
| 12 |
+
"gloves",
|
| 13 |
+
"looking_at_viewer",
|
| 14 |
+
"long_sleeves",
|
| 15 |
+
"open_mouth",
|
| 16 |
+
"white_background",
|
| 17 |
+
"black_skirt",
|
| 18 |
+
"black_thighhighs",
|
| 19 |
+
"pleated_skirt",
|
| 20 |
+
"black_jacket",
|
| 21 |
+
"simple_background"
|
| 22 |
+
]
|
| 23 |
+
}
|
| 24 |
+
],
|
| 25 |
+
"core_tags": [
|
| 26 |
+
"breasts",
|
| 27 |
+
"double_bun",
|
| 28 |
+
"hair_bun",
|
| 29 |
+
"long_hair",
|
| 30 |
+
"blonde_hair",
|
| 31 |
+
"large_breasts",
|
| 32 |
+
"purple_eyes",
|
| 33 |
+
"bangs",
|
| 34 |
+
"very_long_hair"
|
| 35 |
+
],
|
| 36 |
+
"display_name": "gr_mg23/GrMG23/HK23 (Girls' Frontline)",
|
| 37 |
+
"name": "gr_mg23 (Girls' Frontline)",
|
| 38 |
+
"packages": {
|
| 39 |
+
"1200": {
|
| 40 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
| 41 |
+
"filename": "dataset-1200.zip",
|
| 42 |
+
"package_size": 13198005,
|
| 43 |
+
"size": 12,
|
| 44 |
+
"type": "IMG+TXT"
|
| 45 |
+
},
|
| 46 |
+
"800": {
|
| 47 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
| 48 |
+
"filename": "dataset-800.zip",
|
| 49 |
+
"package_size": 8086317,
|
| 50 |
+
"size": 12,
|
| 51 |
+
"type": "IMG+TXT"
|
| 52 |
+
},
|
| 53 |
+
"raw": {
|
| 54 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
| 55 |
+
"filename": "dataset-raw.zip",
|
| 56 |
+
"package_size": 15344541,
|
| 57 |
+
"size": 12,
|
| 58 |
+
"type": "Waifuc-Raw"
|
| 59 |
+
},
|
| 60 |
+
"stage3-p480-1200": {
|
| 61 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
| 62 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
| 63 |
+
"package_size": 28099491,
|
| 64 |
+
"size": 30,
|
| 65 |
+
"type": "IMG+TXT"
|
| 66 |
+
},
|
| 67 |
+
"stage3-p480-800": {
|
| 68 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
| 69 |
+
"filename": "dataset-stage3-p480-800.zip",
|
| 70 |
+
"package_size": 18831062,
|
| 71 |
+
"size": 30,
|
| 72 |
+
"type": "IMG+TXT"
|
| 73 |
+
}
|
| 74 |
+
},
|
| 75 |
+
"version": "v1.5"
|
| 76 |
+
}
|
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
|