Publish character 'isolated_island_oni (Kantai Collection)' to repository, on 2024-01-15 22:41:33 UTC
Browse files- README.md +59 -14
- dataset-512x512.zip → dataset-1200.zip +2 -2
- dataset-640x880.zip +0 -3
- dataset-512x704.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-640x640.zip → dataset-stage3-p480-1200.zip +2 -2
- dataset-stage3-p480-800.zip +3 -0
- meta.json +71 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- 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
CHANGED
@@ -9,22 +9,67 @@ size_categories:
|
|
9 |
- n<1K
|
10 |
---
|
11 |
|
12 |
-
# Dataset of
|
13 |
|
14 |
-
This is the dataset of
|
|
|
|
|
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 isolated_island_oni/離島棲鬼 (Kantai Collection)
|
13 |
|
14 |
+
This is the dataset of isolated_island_oni/離島棲鬼 (Kantai Collection), containing 41 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `black_hair, long_hair, red_eyes, horns, pale_skin, very_long_hair, bow, glowing_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 | 41 | 47.67 MiB | [Download](https://huggingface.co/datasets/CyberHarem/isolated_island_oni_kantaicollection/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 41 | 33.01 MiB | [Download](https://huggingface.co/datasets/CyberHarem/isolated_island_oni_kantaicollection/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 95 | 60.12 MiB | [Download](https://huggingface.co/datasets/CyberHarem/isolated_island_oni_kantaicollection/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 41 | 44.11 MiB | [Download](https://huggingface.co/datasets/CyberHarem/isolated_island_oni_kantaicollection/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 95 | 74.02 MiB | [Download](https://huggingface.co/datasets/CyberHarem/isolated_island_oni_kantaicollection/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/isolated_island_oni_kantaicollection',
|
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 | 34 | ![](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) | abyssal_ship, gothic_lolita, 1girl, looking_at_viewer, solo, smile, bonnet, black_dress, glowing, detached_sleeves, black_pantyhose |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | abyssal_ship | gothic_lolita | 1girl | looking_at_viewer | solo | smile | bonnet | black_dress | glowing | detached_sleeves | black_pantyhose |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:---------------|:----------------|:--------|:--------------------|:-------|:--------|:---------|:--------------|:----------|:-------------------|:------------------|
|
74 |
+
| 0 | 34 | ![](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 |
|
75 |
|
dataset-512x512.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:87dfdf3ebfc052a2d0ce32c0d647a51f895f4b6ff35a0c62884e25d06fac6054
|
3 |
+
size 46249661
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:c9345495393ae9040f6a4dc05360193f3e061de8640563b3a879cb623aad94bd
|
3 |
-
size 22098031
|
|
|
|
|
|
|
|
dataset-512x704.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:92858ae4e847a988faaaba90b87b3eb7167b2adae6fe692cf9b10f909d16466d
|
3 |
+
size 34616220
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:f85b871032d1c13ff18584508a2fcd4bd63fe2f8b313c8bc42b33650a01e67c6
|
3 |
-
size 57663662
|
|
|
|
|
|
|
|
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:9a63a65aa4abdf8353902fa859c8a1ce1aee63d0e9a37cac0de6122f1d691ce0
|
3 |
+
size 49981455
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:d06c81a923cb6bd58ecfebc585e72195ff10d1f3f365868ef675e873056b42ad
|
3 |
-
size 56328985
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a7a7cc6dc6c88d2d74c4b461d5fa8287f51635852f44ce14774b49de3d644683
|
3 |
-
size 41705019
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:0c2ca79e85eabe9b2fac84f9622b2a77797060ad1268c9d67d245070a53f623f
|
3 |
-
size 49321605
|
|
|
|
|
|
|
|
dataset-640x640.zip → dataset-stage3-p480-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:a5ead687c0ce978a4da617460ec8a45229637bc6fcf3e59f574ee3afe88bd55a
|
3 |
+
size 77619621
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:163cf86d9f8525eb972f2682fd9540853afc31788a4301db4ccf3e0c764c8db3
|
3 |
+
size 63043128
|
meta.json
CHANGED
@@ -1,4 +1,73 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 41,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 34,
|
8 |
+
"tags": [
|
9 |
+
"abyssal_ship",
|
10 |
+
"gothic_lolita",
|
11 |
+
"1girl",
|
12 |
+
"looking_at_viewer",
|
13 |
+
"solo",
|
14 |
+
"smile",
|
15 |
+
"bonnet",
|
16 |
+
"black_dress",
|
17 |
+
"glowing",
|
18 |
+
"detached_sleeves",
|
19 |
+
"black_pantyhose"
|
20 |
+
]
|
21 |
+
}
|
22 |
+
],
|
23 |
+
"core_tags": [
|
24 |
+
"black_hair",
|
25 |
+
"long_hair",
|
26 |
+
"red_eyes",
|
27 |
+
"horns",
|
28 |
+
"pale_skin",
|
29 |
+
"very_long_hair",
|
30 |
+
"bow",
|
31 |
+
"glowing_eyes"
|
32 |
+
],
|
33 |
+
"display_name": "isolated_island_oni/離島棲鬼 (Kantai Collection)",
|
34 |
+
"name": "isolated_island_oni (Kantai Collection)",
|
35 |
+
"packages": {
|
36 |
+
"1200": {
|
37 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
38 |
+
"filename": "dataset-1200.zip",
|
39 |
+
"package_size": 46249661,
|
40 |
+
"size": 41,
|
41 |
+
"type": "IMG+TXT"
|
42 |
+
},
|
43 |
+
"800": {
|
44 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
45 |
+
"filename": "dataset-800.zip",
|
46 |
+
"package_size": 34616220,
|
47 |
+
"size": 41,
|
48 |
+
"type": "IMG+TXT"
|
49 |
+
},
|
50 |
+
"raw": {
|
51 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
52 |
+
"filename": "dataset-raw.zip",
|
53 |
+
"package_size": 49981455,
|
54 |
+
"size": 41,
|
55 |
+
"type": "Waifuc-Raw"
|
56 |
+
},
|
57 |
+
"stage3-p480-1200": {
|
58 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
59 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
60 |
+
"package_size": 77619621,
|
61 |
+
"size": 95,
|
62 |
+
"type": "IMG+TXT"
|
63 |
+
},
|
64 |
+
"stage3-p480-800": {
|
65 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
66 |
+
"filename": "dataset-stage3-p480-800.zip",
|
67 |
+
"package_size": 63043128,
|
68 |
+
"size": 95,
|
69 |
+
"type": "IMG+TXT"
|
70 |
+
}
|
71 |
+
},
|
72 |
+
"version": "v1.5"
|
73 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
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
|