Publish character 'pallas (Arknights)' to repository, on 2024-01-10 16:00:34 UTC
Browse files- README.md +61 -14
- dataset-1200.zip +3 -0
- dataset-640x880.zip +0 -3
- dataset-800.zip +3 -0
- 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 +108 -2
- dataset-384x512.zip → samples/0/clu0-sample0.png +2 -2
- dataset-512x512.zip → samples/0/clu0-sample1.png +2 -2
- dataset-512x704.zip → samples/0/clu0-sample2.png +2 -2
- dataset-640x640.zip → samples/0/clu0-sample3.png +2 -2
- 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
README.md
CHANGED
@@ -9,22 +9,69 @@ 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 pallas/パラス/帕拉斯 (Arknights)
|
13 |
|
14 |
+
This is the dataset of pallas/パラス/帕拉斯 (Arknights), containing 176 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `brown_hair, horns, animal_ears, cow_horns, bangs, cow_ears, green_eyes, hair_between_eyes, cow_girl, sidelocks, 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 | 176 | 337.92 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pallas_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 176 | 149.23 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pallas_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 469 | 345.53 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pallas_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 176 | 274.86 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pallas_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 469 | 549.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pallas_arknights/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/pallas_arknights',
|
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 | 8 | ![](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, black_gloves, cowboy_shot, long_sleeves, looking_at_viewer, solo, closed_mouth, off_shoulder, petals, purple_shirt, short_hair_with_long_locks, white_background, white_skirt, black_pantyhose, veil, blue_shirt, holding_weapon, open_coat, red_rose, simple_background, white_coat, white_jacket, open_jacket |
|
69 |
+
| 1 | 6 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](samples/1/clu1-sample4.png) | 1girl, black_gloves, shirt, short_sleeves, solo, looking_at_viewer, official_alternate_costume, sky, cloud, smile, bird, black_pantyhose, holding, outdoors, sitting, yellow_flower |
|
70 |
+
|
71 |
+
### Table Version
|
72 |
+
|
73 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | black_gloves | cowboy_shot | long_sleeves | looking_at_viewer | solo | closed_mouth | off_shoulder | petals | purple_shirt | short_hair_with_long_locks | white_background | white_skirt | black_pantyhose | veil | blue_shirt | holding_weapon | open_coat | red_rose | simple_background | white_coat | white_jacket | open_jacket | shirt | short_sleeves | official_alternate_costume | sky | cloud | smile | bird | holding | outdoors | sitting | yellow_flower |
|
74 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:---------------|:--------------|:---------------|:--------------------|:-------|:---------------|:---------------|:---------|:---------------|:-----------------------------|:-------------------|:--------------|:------------------|:-------|:-------------|:-----------------|:------------|:-----------|:--------------------|:-------------|:---------------|:--------------|:--------|:----------------|:-----------------------------|:------|:--------|:--------|:-------|:----------|:-----------|:----------|:----------------|
|
75 |
+
| 0 | 8 | ![](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 | X | X | X | X | X | X | X | X | | | | | | | | | | | |
|
76 |
+
| 1 | 6 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | ![](samples/1/clu1-sample3.png) | ![](samples/1/clu1-sample4.png) | X | X | | | X | X | | | | | | | | X | | | | | | | | | | X | X | X | X | X | X | X | X | X | X | X |
|
77 |
|
dataset-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5dba28d9d7dcf16e0c47d13182710962d60dd23ba37137dca72f4e7975b14e0
|
3 |
+
size 288209275
|
dataset-640x880.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:c4d114d2e0146da787c665472ca3134b6f022a553280d85c5415208c1b0e6abd
|
3 |
-
size 81609955
|
|
|
|
|
|
|
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:698bc7d5122626835aeb01d97639935552c644682a30d79fa14e5bf30c99cd21
|
3 |
+
size 156479444
|
dataset-raw-stage3.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9d43ee214299ec27e4e85cf222382e2a6718d7ef70f54341ccc084ee1765e36b
|
3 |
-
size 469992918
|
|
|
|
|
|
|
|
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:0aa5b06ed49b6d43507e3f2bc4586733507ebbe824bf67effd8dfba4744e0102
|
3 |
+
size 354335808
|
dataset-stage3-1200.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:9429a42a7d2c78f0fda83048462bf68065bc0c8afb6be6b32694a8e7a6d0bf2b
|
3 |
-
size 280751701
|
|
|
|
|
|
|
|
dataset-stage3-640.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:6d42c570a394e5cde448ade9ac9d737684f51b904f068228440ce7e7c37e1bc3
|
3 |
-
size 181919932
|
|
|
|
|
|
|
|
dataset-stage3-800.zip
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:3a531604dbc48a5c69f104bb96ddb119b5c141ef3830acf8d401c546b347a70f
|
3 |
-
size 225220040
|
|
|
|
|
|
|
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7ef5685f44e6459a1024d74f5826d9c1ac94e69c573b0237b8dc649c9ee19568
|
3 |
+
size 576401689
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1afb9a62c778cdf1f2c7597821fb3a0e90406bab898ec07a366ee1aa772bb382
|
3 |
+
size 362315945
|
meta.json
CHANGED
@@ -1,4 +1,110 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 176,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 8,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"black_gloves",
|
11 |
+
"cowboy_shot",
|
12 |
+
"long_sleeves",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"solo",
|
15 |
+
"closed_mouth",
|
16 |
+
"off_shoulder",
|
17 |
+
"petals",
|
18 |
+
"purple_shirt",
|
19 |
+
"short_hair_with_long_locks",
|
20 |
+
"white_background",
|
21 |
+
"white_skirt",
|
22 |
+
"black_pantyhose",
|
23 |
+
"veil",
|
24 |
+
"blue_shirt",
|
25 |
+
"holding_weapon",
|
26 |
+
"open_coat",
|
27 |
+
"red_rose",
|
28 |
+
"simple_background",
|
29 |
+
"white_coat",
|
30 |
+
"white_jacket",
|
31 |
+
"open_jacket"
|
32 |
+
]
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"id": 1,
|
36 |
+
"size": 6,
|
37 |
+
"tags": [
|
38 |
+
"1girl",
|
39 |
+
"black_gloves",
|
40 |
+
"shirt",
|
41 |
+
"short_sleeves",
|
42 |
+
"solo",
|
43 |
+
"looking_at_viewer",
|
44 |
+
"official_alternate_costume",
|
45 |
+
"sky",
|
46 |
+
"cloud",
|
47 |
+
"smile",
|
48 |
+
"bird",
|
49 |
+
"black_pantyhose",
|
50 |
+
"holding",
|
51 |
+
"outdoors",
|
52 |
+
"sitting",
|
53 |
+
"yellow_flower"
|
54 |
+
]
|
55 |
+
}
|
56 |
+
],
|
57 |
+
"core_tags": [
|
58 |
+
"brown_hair",
|
59 |
+
"horns",
|
60 |
+
"animal_ears",
|
61 |
+
"cow_horns",
|
62 |
+
"bangs",
|
63 |
+
"cow_ears",
|
64 |
+
"green_eyes",
|
65 |
+
"hair_between_eyes",
|
66 |
+
"cow_girl",
|
67 |
+
"sidelocks",
|
68 |
+
"long_hair"
|
69 |
+
],
|
70 |
+
"display_name": "pallas/パラス/帕拉斯 (Arknights)",
|
71 |
+
"name": "pallas (Arknights)",
|
72 |
+
"packages": {
|
73 |
+
"1200": {
|
74 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
75 |
+
"filename": "dataset-1200.zip",
|
76 |
+
"package_size": 288209275,
|
77 |
+
"size": 176,
|
78 |
+
"type": "IMG+TXT"
|
79 |
+
},
|
80 |
+
"800": {
|
81 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
82 |
+
"filename": "dataset-800.zip",
|
83 |
+
"package_size": 156479444,
|
84 |
+
"size": 176,
|
85 |
+
"type": "IMG+TXT"
|
86 |
+
},
|
87 |
+
"raw": {
|
88 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
89 |
+
"filename": "dataset-raw.zip",
|
90 |
+
"package_size": 354335808,
|
91 |
+
"size": 176,
|
92 |
+
"type": "Waifuc-Raw"
|
93 |
+
},
|
94 |
+
"stage3-p480-1200": {
|
95 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
96 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
97 |
+
"package_size": 576401689,
|
98 |
+
"size": 469,
|
99 |
+
"type": "IMG+TXT"
|
100 |
+
},
|
101 |
+
"stage3-p480-800": {
|
102 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
103 |
+
"filename": "dataset-stage3-p480-800.zip",
|
104 |
+
"package_size": 362315945,
|
105 |
+
"size": 469,
|
106 |
+
"type": "IMG+TXT"
|
107 |
+
}
|
108 |
+
},
|
109 |
+
"version": "v1.5"
|
110 |
}
|
dataset-384x512.zip → samples/0/clu0-sample0.png
RENAMED
File without changes
|
dataset-512x512.zip → samples/0/clu0-sample1.png
RENAMED
File without changes
|
dataset-512x704.zip → samples/0/clu0-sample2.png
RENAMED
File without changes
|
dataset-640x640.zip → samples/0/clu0-sample3.png
RENAMED
File without changes
|
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
|