narugo1992
commited on
Publish character 'vertin_reverse1999' to repository, on 2024-08-05 14:27:38 UTC
Browse files- README.md +76 -0
- dataset-raw.zip +3 -0
- dataset-stage3-p480-1200.zip +3 -0
- embeddings/all.npy +3 -0
- embeddings/group_0.npy +3 -0
- embeddings/group_1.npy +3 -0
- embeddings/group_2.npy +3 -0
- meta.json +113 -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
- 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
- samples/2/clu2-sample0.png +3 -0
- samples/2/clu2-sample1.png +3 -0
- samples/2/clu2-sample2.png +3 -0
- samples/2/clu2-sample3.png +3 -0
- samples/2/clu2-sample4.png +3 -0
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 Vertin/维尔汀/ヴェルティ (Reverse:1999)
|
| 13 |
+
|
| 14 |
+
This is the dataset of Vertin/维尔汀/ヴェルティ (Reverse:1999), containing 71 images and their tags.
|
| 15 |
+
|
| 16 |
+
The core tags of this character are `grey_hair, hair_bun, grey_eyes, single_side_bun, hat, black_headwear, top_hat, short_hair, bow, hat_bow, blue_bow`, 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 | Images-head | Images-others |
|
| 23 |
+
|:-----------------|---------:|:-----------|:--------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------|:--------------|:----------------|
|
| 24 |
+
| raw | 71 | 149.23 MiB | [Download](https://huggingface.co/datasets/CyberHarem/vertin_reverse1999/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | -- | -- |
|
| 25 |
+
| stage3-p480-1200 | 182 | 244.96 MiB | [Download](https://huggingface.co/datasets/CyberHarem/vertin_reverse1999/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | 76 | 106 |
|
| 26 |
+
|
| 27 |
+
### Load Raw Dataset with Waifuc
|
| 28 |
+
|
| 29 |
+
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
|
| 30 |
+
|
| 31 |
+
```python
|
| 32 |
+
import os
|
| 33 |
+
import zipfile
|
| 34 |
+
|
| 35 |
+
from huggingface_hub import hf_hub_download
|
| 36 |
+
from waifuc.source import LocalSource
|
| 37 |
+
|
| 38 |
+
# download raw archive file
|
| 39 |
+
zip_file = hf_hub_download(
|
| 40 |
+
repo_id='CyberHarem/vertin_reverse1999',
|
| 41 |
+
repo_type='dataset',
|
| 42 |
+
filename='dataset-raw.zip',
|
| 43 |
+
)
|
| 44 |
+
|
| 45 |
+
# extract files to your directory
|
| 46 |
+
dataset_dir = 'dataset_dir'
|
| 47 |
+
os.makedirs(dataset_dir, exist_ok=True)
|
| 48 |
+
with zipfile.ZipFile(zip_file, 'r') as zf:
|
| 49 |
+
zf.extractall(dataset_dir)
|
| 50 |
+
|
| 51 |
+
# load the dataset with waifuc
|
| 52 |
+
source = LocalSource(dataset_dir)
|
| 53 |
+
for item in source:
|
| 54 |
+
print(item.image, item.meta['filename'], item.meta['tags'])
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## List of Clusters
|
| 58 |
+
|
| 59 |
+
List of tag clustering result, maybe some outfits can be mined here.
|
| 60 |
+
|
| 61 |
+
### Raw Text Version
|
| 62 |
+
|
| 63 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags |
|
| 64 |
+
|----:|----------:|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| 65 |
+
| 0 | 14 |  |  |  |  |  | 1girl, solo, collared_shirt, upper_body, black_coat, white_shirt, white_ascot, closed_mouth, black_vest, jacket, looking_at_viewer, expressionless, simple_background |
|
| 66 |
+
| 1 | 11 |  |  |  |  |  | 1girl, collared_shirt, long_sleeves, white_ascot, black_coat, closed_mouth, solo, white_shirt, black_pants, black_vest, looking_at_viewer, hand_up, outdoors, waistcoat, black_umbrella, holding_suitcase, open_coat |
|
| 67 |
+
| 2 | 6 |  |  |  |  |  | 1girl, blue_brooch, coat, collared_shirt, long_sleeves, solo, white_headwear, blue_gloves, closed_mouth, feathers, hat_feather, black_gloves, blue_shirt, looking_at_viewer, upper_body, white_jacket, blue_ribbon, flower, holding, neck_ribbon, simple_background, single_hair_bun |
|
| 68 |
+
|
| 69 |
+
### Table Version
|
| 70 |
+
|
| 71 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | collared_shirt | upper_body | black_coat | white_shirt | white_ascot | closed_mouth | black_vest | jacket | looking_at_viewer | expressionless | simple_background | long_sleeves | black_pants | hand_up | outdoors | waistcoat | black_umbrella | holding_suitcase | open_coat | blue_brooch | coat | white_headwear | blue_gloves | feathers | hat_feather | black_gloves | blue_shirt | white_jacket | blue_ribbon | flower | holding | neck_ribbon | single_hair_bun |
|
| 72 |
+
|----:|----------:|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|:--------|:-------|:-----------------|:-------------|:-------------|:--------------|:--------------|:---------------|:-------------|:---------|:--------------------|:-----------------|:--------------------|:---------------|:--------------|:----------|:-----------|:------------|:-----------------|:-------------------|:------------|:--------------|:-------|:-----------------|:--------------|:-----------|:--------------|:---------------|:-------------|:---------------|:--------------|:---------|:----------|:--------------|:------------------|
|
| 73 |
+
| 0 | 14 |  |  |  |  |  | X | X | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | |
|
| 74 |
+
| 1 | 11 |  |  |  |  |  | X | X | X | | X | X | X | X | X | | X | | | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | |
|
| 75 |
+
| 2 | 6 |  |  |  |  |  | X | X | X | X | | | | X | | | X | | X | X | | | | | | | | X | X | X | X | X | X | X | X | X | X | X | X | X | X |
|
| 76 |
+
|
dataset-raw.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0d9f2a0025e4ac86f2a2639c898bc05babf74c4816302ebe8749ba2d8059cd3
|
| 3 |
+
size 156478980
|
dataset-stage3-p480-1200.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6e1d2fdb0667a26ba6573f7e7f51680c48688601cecc06edd3ed338cfcc3d93
|
| 3 |
+
size 256864037
|
embeddings/all.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e04d635d6b54819ffe44be2070923f23122b48070e33a85a523517f579599da0
|
| 3 |
+
size 290944
|
embeddings/group_0.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:099f9368eb013492a5a4aa805e941f351c45d4be32a15d93918b0610d9ac202e
|
| 3 |
+
size 57472
|
embeddings/group_1.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bafe5aaf3dac30a36e0e37c1ee9b64d2f49b3b41f827e997482717611acc5585
|
| 3 |
+
size 45184
|
embeddings/group_2.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39c2fabbbcdd7ec6d9297f2fa899e89ba1d69ea3e9763439cfecc74ce944e946
|
| 3 |
+
size 24704
|
meta.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bangumi": null,
|
| 3 |
+
"base_size": 71,
|
| 4 |
+
"clusters": [
|
| 5 |
+
{
|
| 6 |
+
"id": 0,
|
| 7 |
+
"size": 14,
|
| 8 |
+
"tags": [
|
| 9 |
+
"1girl",
|
| 10 |
+
"solo",
|
| 11 |
+
"collared_shirt",
|
| 12 |
+
"upper_body",
|
| 13 |
+
"black_coat",
|
| 14 |
+
"white_shirt",
|
| 15 |
+
"white_ascot",
|
| 16 |
+
"closed_mouth",
|
| 17 |
+
"black_vest",
|
| 18 |
+
"jacket",
|
| 19 |
+
"looking_at_viewer",
|
| 20 |
+
"expressionless",
|
| 21 |
+
"simple_background"
|
| 22 |
+
]
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"id": 1,
|
| 26 |
+
"size": 11,
|
| 27 |
+
"tags": [
|
| 28 |
+
"1girl",
|
| 29 |
+
"collared_shirt",
|
| 30 |
+
"long_sleeves",
|
| 31 |
+
"white_ascot",
|
| 32 |
+
"black_coat",
|
| 33 |
+
"closed_mouth",
|
| 34 |
+
"solo",
|
| 35 |
+
"white_shirt",
|
| 36 |
+
"black_pants",
|
| 37 |
+
"black_vest",
|
| 38 |
+
"looking_at_viewer",
|
| 39 |
+
"hand_up",
|
| 40 |
+
"outdoors",
|
| 41 |
+
"waistcoat",
|
| 42 |
+
"black_umbrella",
|
| 43 |
+
"holding_suitcase",
|
| 44 |
+
"open_coat"
|
| 45 |
+
]
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"id": 2,
|
| 49 |
+
"size": 6,
|
| 50 |
+
"tags": [
|
| 51 |
+
"1girl",
|
| 52 |
+
"blue_brooch",
|
| 53 |
+
"coat",
|
| 54 |
+
"collared_shirt",
|
| 55 |
+
"long_sleeves",
|
| 56 |
+
"solo",
|
| 57 |
+
"white_headwear",
|
| 58 |
+
"blue_gloves",
|
| 59 |
+
"closed_mouth",
|
| 60 |
+
"feathers",
|
| 61 |
+
"hat_feather",
|
| 62 |
+
"black_gloves",
|
| 63 |
+
"blue_shirt",
|
| 64 |
+
"looking_at_viewer",
|
| 65 |
+
"upper_body",
|
| 66 |
+
"white_jacket",
|
| 67 |
+
"blue_ribbon",
|
| 68 |
+
"flower",
|
| 69 |
+
"holding",
|
| 70 |
+
"neck_ribbon",
|
| 71 |
+
"simple_background",
|
| 72 |
+
"single_hair_bun"
|
| 73 |
+
]
|
| 74 |
+
}
|
| 75 |
+
],
|
| 76 |
+
"core_tags": [
|
| 77 |
+
"grey_hair",
|
| 78 |
+
"hair_bun",
|
| 79 |
+
"grey_eyes",
|
| 80 |
+
"single_side_bun",
|
| 81 |
+
"hat",
|
| 82 |
+
"black_headwear",
|
| 83 |
+
"top_hat",
|
| 84 |
+
"short_hair",
|
| 85 |
+
"bow",
|
| 86 |
+
"hat_bow",
|
| 87 |
+
"blue_bow"
|
| 88 |
+
],
|
| 89 |
+
"display_name": "Vertin/维尔汀/ヴェルティ (Reverse:1999)",
|
| 90 |
+
"name": "vertin_reverse1999",
|
| 91 |
+
"packages": {
|
| 92 |
+
"raw": {
|
| 93 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
| 94 |
+
"filename": "dataset-raw.zip",
|
| 95 |
+
"package_size": 156478980,
|
| 96 |
+
"size": 71,
|
| 97 |
+
"sub_sizes": {},
|
| 98 |
+
"type": "Waifuc-Raw"
|
| 99 |
+
},
|
| 100 |
+
"stage3-p480-1200": {
|
| 101 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
| 102 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
| 103 |
+
"package_size": 256864037,
|
| 104 |
+
"size": 182,
|
| 105 |
+
"sub_sizes": {
|
| 106 |
+
"head": 76,
|
| 107 |
+
"others": 106
|
| 108 |
+
},
|
| 109 |
+
"type": "IMG+TXT"
|
| 110 |
+
}
|
| 111 |
+
},
|
| 112 |
+
"version": "v1.6-alpha3"
|
| 113 |
+
}
|
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
|
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
|
samples/2/clu2-sample0.png
ADDED
|
Git LFS Details
|
samples/2/clu2-sample1.png
ADDED
|
Git LFS Details
|
samples/2/clu2-sample2.png
ADDED
|
Git LFS Details
|
samples/2/clu2-sample3.png
ADDED
|
Git LFS Details
|
samples/2/clu2-sample4.png
ADDED
|
Git LFS Details
|