Publish character 'mary_anning (Fate/Grand Order)' to repository, on 2024-01-13 06:29:28 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 +75 -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 mary_anning/メアリー・アニング/玛丽·安宁 (Fate/Grand Order)
|
13 |
+
|
14 |
+
This is the dataset of mary_anning/メアリー・アニング/玛丽·安宁 (Fate/Grand Order), containing 25 images and their tags.
|
15 |
+
|
16 |
+
The core tags of this character are `brown_hair, yellow_eyes, long_hair, hat, horns, braid, bow, blue_bow, hair_bow, bangs`, 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 | 25 | 26.83 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mary_anning_fgo/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
|
25 |
+
| 800 | 25 | 16.34 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mary_anning_fgo/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
|
26 |
+
| stage3-p480-800 | 54 | 32.41 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mary_anning_fgo/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
|
27 |
+
| 1200 | 25 | 24.18 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mary_anning_fgo/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
|
28 |
+
| stage3-p480-1200 | 54 | 44.00 MiB | [Download](https://huggingface.co/datasets/CyberHarem/mary_anning_fgo/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/mary_anning_fgo',
|
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 | 25 |  |  |  |  |  | 1girl, solo, yellow_scarf, long_sleeves, looking_at_viewer, skirt, closed_mouth, shirt, smile, jacket, simple_background |
|
69 |
+
|
70 |
+
### Table Version
|
71 |
+
|
72 |
+
| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | solo | yellow_scarf | long_sleeves | looking_at_viewer | skirt | closed_mouth | shirt | smile | jacket | simple_background |
|
73 |
+
|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-------|:---------------|:---------------|:--------------------|:--------|:---------------|:--------|:--------|:---------|:--------------------|
|
74 |
+
| 0 | 25 |  |  |  |  |  | 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:e57630e5578a08622aa47e151a967d26ab380206b7927f7a67f22ccdb7ec9f7f
|
3 |
+
size 25353379
|
dataset-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:febee837edb009a9b51cb0eeb157e8fc8e9278ba56aa6864165b234b7754d594
|
3 |
+
size 17132997
|
dataset-raw.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:73082ac78e47bf6dabf7bb70a0492a0f05e86baeaff5d4e85f3bc783bc73a829
|
3 |
+
size 28134374
|
dataset-stage3-p480-1200.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:99d664371a27f3d5cc8a631cadca02120757e279b58e3ecaf69585a300a99606
|
3 |
+
size 46138621
|
dataset-stage3-p480-800.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21be60103fb4c02d28f3893778de9da42316a1f949708e7ada86988d79db92d5
|
3 |
+
size 33988674
|
meta.json
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bangumi": null,
|
3 |
+
"base_size": 25,
|
4 |
+
"clusters": [
|
5 |
+
{
|
6 |
+
"id": 0,
|
7 |
+
"size": 25,
|
8 |
+
"tags": [
|
9 |
+
"1girl",
|
10 |
+
"solo",
|
11 |
+
"yellow_scarf",
|
12 |
+
"long_sleeves",
|
13 |
+
"looking_at_viewer",
|
14 |
+
"skirt",
|
15 |
+
"closed_mouth",
|
16 |
+
"shirt",
|
17 |
+
"smile",
|
18 |
+
"jacket",
|
19 |
+
"simple_background"
|
20 |
+
]
|
21 |
+
}
|
22 |
+
],
|
23 |
+
"core_tags": [
|
24 |
+
"brown_hair",
|
25 |
+
"yellow_eyes",
|
26 |
+
"long_hair",
|
27 |
+
"hat",
|
28 |
+
"horns",
|
29 |
+
"braid",
|
30 |
+
"bow",
|
31 |
+
"blue_bow",
|
32 |
+
"hair_bow",
|
33 |
+
"bangs"
|
34 |
+
],
|
35 |
+
"display_name": "mary_anning/メアリー・アニング/玛丽·安宁 (Fate/Grand Order)",
|
36 |
+
"name": "mary_anning (Fate/Grand Order)",
|
37 |
+
"packages": {
|
38 |
+
"1200": {
|
39 |
+
"description": "dataset with the shorter side not exceeding 1200 pixels.",
|
40 |
+
"filename": "dataset-1200.zip",
|
41 |
+
"package_size": 25353379,
|
42 |
+
"size": 25,
|
43 |
+
"type": "IMG+TXT"
|
44 |
+
},
|
45 |
+
"800": {
|
46 |
+
"description": "dataset with the shorter side not exceeding 800 pixels.",
|
47 |
+
"filename": "dataset-800.zip",
|
48 |
+
"package_size": 17132997,
|
49 |
+
"size": 25,
|
50 |
+
"type": "IMG+TXT"
|
51 |
+
},
|
52 |
+
"raw": {
|
53 |
+
"description": "Raw data with meta information (min edge aligned to 1400 if larger).",
|
54 |
+
"filename": "dataset-raw.zip",
|
55 |
+
"package_size": 28134374,
|
56 |
+
"size": 25,
|
57 |
+
"type": "Waifuc-Raw"
|
58 |
+
},
|
59 |
+
"stage3-p480-1200": {
|
60 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
61 |
+
"filename": "dataset-stage3-p480-1200.zip",
|
62 |
+
"package_size": 46138621,
|
63 |
+
"size": 54,
|
64 |
+
"type": "IMG+TXT"
|
65 |
+
},
|
66 |
+
"stage3-p480-800": {
|
67 |
+
"description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
|
68 |
+
"filename": "dataset-stage3-p480-800.zip",
|
69 |
+
"package_size": 33988674,
|
70 |
+
"size": 54,
|
71 |
+
"type": "IMG+TXT"
|
72 |
+
}
|
73 |
+
},
|
74 |
+
"version": "v1.5"
|
75 |
+
}
|
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
|