Datasets:

Tags:
art
Not-For-All-Audiences
Libraries:
Datasets
License:
narugo commited on
Commit
6252502
1 Parent(s): 0a67963

Publish character 'diona (Genshin Impact)' to repository, on 2024-01-10 22:27:22 UTC

Browse files
README.md CHANGED
@@ -9,22 +9,77 @@ size_categories:
9
  - n<1K
10
  ---
11
 
12
- # Dataset of diona_genshin
13
 
14
- This is the dataset of diona_genshin, containing 200 images and their tags.
 
 
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
- | Name | Images | Download | Description |
19
- |:------------|---------:|:------------------------------------|:-------------------------------------------------------------------------|
20
- | raw | 200 | [Download](dataset-raw.zip) | Raw data with meta information. |
21
- | raw-stage3 | 499 | [Download](dataset-raw-stage3.zip) | 3-stage cropped raw data with meta information. |
22
- | 384x512 | 200 | [Download](dataset-384x512.zip) | 384x512 aligned dataset. |
23
- | 512x512 | 200 | [Download](dataset-512x512.zip) | 512x512 aligned dataset. |
24
- | 512x704 | 200 | [Download](dataset-512x704.zip) | 512x704 aligned dataset. |
25
- | 640x640 | 200 | [Download](dataset-640x640.zip) | 640x640 aligned dataset. |
26
- | 640x880 | 200 | [Download](dataset-640x880.zip) | 640x880 aligned dataset. |
27
- | stage3-640 | 499 | [Download](dataset-stage3-640.zip) | 3-stage cropped dataset with the shorter side not exceeding 640 pixels. |
28
- | stage3-800 | 499 | [Download](dataset-stage3-800.zip) | 3-stage cropped dataset with the shorter side not exceeding 800 pixels. |
29
- | stage3-1200 | 499 | [Download](dataset-stage3-1200.zip) | 3-stage cropped dataset with the shorter side not exceeding 1200 pixels. |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
 
9
  - n<1K
10
  ---
11
 
12
+ # Dataset of diona/ディオナ/迪奥娜 (Genshin Impact)
13
 
14
+ This is the dataset of diona/ディオナ/迪奥娜 (Genshin Impact), containing 500 images and their tags.
15
+
16
+ The core tags of this character are `animal_ears, cat_ears, pink_hair, animal_ear_fluff, cat_girl, short_hair, cat_tail, tail, green_eyes, hat, thick_eyebrows`, 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 | 500 | 757.12 MiB | [Download](https://huggingface.co/datasets/CyberHarem/diona_genshin/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 500 | 381.68 MiB | [Download](https://huggingface.co/datasets/CyberHarem/diona_genshin/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 1280 | 878.90 MiB | [Download](https://huggingface.co/datasets/CyberHarem/diona_genshin/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 500 | 644.75 MiB | [Download](https://huggingface.co/datasets/CyberHarem/diona_genshin/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 1280 | 1.32 GiB | [Download](https://huggingface.co/datasets/CyberHarem/diona_genshin/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/diona_genshin',
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 | 47 | ![](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, bangs_pinned_back, solo, looking_at_viewer, paw_print, hair_ribbon, forehead, sidelocks, white_gloves, long_sleeves, simple_background, puffy_detached_sleeves, navel, smile, white_background, black_shorts, open_mouth, puffy_shorts, belt, midriff, fang, blush, paw_pose, cat_print |
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_shorts, blush, detached_sleeves, looking_at_viewer, navel, solo, white_background, white_shirt, bangs_pinned_back, black_headwear, puffy_long_sleeves, short_eyebrows, simple_background, sleeveless_shirt, white_gloves, bare_shoulders, beret, fang, forehead, paw_print, puffy_shorts |
70
+ | 2 | 19 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | 1girl, loli, looking_at_viewer, nipples, blush, solo, barefoot, small_breasts, navel, pussy, completely_nude, feet, bangs_pinned_back, open_mouth, spread_legs, toes, flat_chest, simple_background, smile, sitting |
71
+ | 3 | 9 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | ![](samples/3/clu3-sample3.png) | ![](samples/3/clu3-sample4.png) | 1girl, blush, hetero, loli, navel, nipples, penis, 1boy, sex, solo_focus, open_mouth, small_breasts, vaginal, completely_nude, cum_in_pussy, heart, uncensored, bangs_pinned_back, cowgirl_position, flat_chest, girl_on_top, spread_legs, symbol-shaped_pupils |
72
+ | 4 | 6 | ![](samples/4/clu4-sample0.png) | ![](samples/4/clu4-sample1.png) | ![](samples/4/clu4-sample2.png) | ![](samples/4/clu4-sample3.png) | ![](samples/4/clu4-sample4.png) | 1boy, 1girl, hetero, loli, solo_focus, blush, tongue_out, bangs_pinned_back, looking_at_viewer, mosaic_censoring, open_mouth, simple_background, detached_sleeves, erection, licking_penis, nude |
73
+ | 5 | 6 | ![](samples/5/clu5-sample0.png) | ![](samples/5/clu5-sample1.png) | ![](samples/5/clu5-sample2.png) | ![](samples/5/clu5-sample3.png) | ![](samples/5/clu5-sample4.png) | 1boy, 1girl, anus, ass, blush, english_text, folded, hetero, loli, solo_focus, boots, censored, open_mouth, closed_eyes, cum_in_pussy, cumdrip, dark-skinned_male, spread_pussy |
74
+
75
+ ### Table Version
76
+
77
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | bangs_pinned_back | solo | looking_at_viewer | paw_print | hair_ribbon | forehead | sidelocks | white_gloves | long_sleeves | simple_background | puffy_detached_sleeves | navel | smile | white_background | black_shorts | open_mouth | puffy_shorts | belt | midriff | fang | blush | paw_pose | cat_print | detached_sleeves | white_shirt | black_headwear | puffy_long_sleeves | short_eyebrows | sleeveless_shirt | bare_shoulders | beret | loli | nipples | barefoot | small_breasts | pussy | completely_nude | feet | spread_legs | toes | flat_chest | sitting | hetero | penis | 1boy | sex | solo_focus | vaginal | cum_in_pussy | heart | uncensored | cowgirl_position | girl_on_top | symbol-shaped_pupils | tongue_out | mosaic_censoring | erection | licking_penis | nude | anus | ass | english_text | folded | boots | censored | closed_eyes | cumdrip | dark-skinned_male | spread_pussy |
78
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:--------------------|:-------|:--------------------|:------------|:--------------|:-----------|:------------|:---------------|:---------------|:--------------------|:-------------------------|:--------|:--------|:-------------------|:---------------|:-------------|:---------------|:-------|:----------|:-------|:--------|:-----------|:------------|:-------------------|:--------------|:-----------------|:---------------------|:-----------------|:-------------------|:-----------------|:--------|:-------|:----------|:-----------|:----------------|:--------|:------------------|:-------|:--------------|:-------|:-------------|:----------|:---------|:--------|:-------|:------|:-------------|:----------|:---------------|:--------|:-------------|:-------------------|:--------------|:-----------------------|:-------------|:-------------------|:-----------|:----------------|:-------|:-------|:------|:---------------|:---------|:--------|:-----------|:--------------|:----------|:--------------------|:---------------|
79
+ | 0 | 47 | ![](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 | X | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
80
+ | 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 | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
81
+ | 2 | 19 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | ![](samples/2/clu2-sample3.png) | ![](samples/2/clu2-sample4.png) | X | X | X | X | | | | | | | X | | X | X | | | X | | | | | X | | | | | | | | | | | X | X | X | X | X | X | X | X | X | X | X | | | | | | | | | | | | | | | | | | | | | | | | | | | |
82
+ | 3 | 9 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | ![](samples/3/clu3-sample3.png) | ![](samples/3/clu3-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 | | | | | | | | | | | | | | | |
83
+ | 4 | 6 | ![](samples/4/clu4-sample0.png) | ![](samples/4/clu4-sample1.png) | ![](samples/4/clu4-sample2.png) | ![](samples/4/clu4-sample3.png) | ![](samples/4/clu4-sample4.png) | X | X | | X | | | | | | | X | | | | | | X | | | | | X | | | X | | | | | | | | X | | | | | | | | | | | X | | X | | X | | | | | | | | X | X | X | X | X | | | | | | | | | | |
84
+ | 5 | 6 | ![](samples/5/clu5-sample0.png) | ![](samples/5/clu5-sample1.png) | ![](samples/5/clu5-sample2.png) | ![](samples/5/clu5-sample3.png) | ![](samples/5/clu5-sample4.png) | X | | | | | | | | | | | | | | | | X | | | | | X | | | | | | | | | | | X | | | | | | | | | | | X | | X | | X | | X | | | | | | | | | | | X | X | X | X | X | X | X | X | X | X |
85
 
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20af87aa533c3697f44baaede232b86fe17e6a432f93972e49ecb0560f34176c
3
+ size 676066620
dataset-640x880.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:89c8c471ff59b62f2cdd6de28ea8d8c9bef19b46d6801371142296e7bf101ad1
3
- size 109953416
 
 
 
 
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3ffaec0a8f462706fb1834c20033af41cbb02c37095323989a4d2d925d4cb2e
3
+ size 400220884
dataset-raw-stage3.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:39ec2c79f9f868230a7fffbb155b20c549baa5797bc1ef14ef61598fde92132c
3
- size 357105793
 
 
 
 
dataset-raw.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3997bb3466801dc43a2c4ba897604399a6310d5f6821788f4269ee559e8d4562
3
- size 178647837
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:797d141d868cd036b48b23973f751c79e17fafcb3e1f073bc21a7d273b6c757b
3
+ size 793901525
dataset-stage3-1200.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:04cc0c1be73d449e780dd67dfedd81f00e0a8e75ca6b32aa8ecf44a6e03f0670
3
- size 246544810
 
 
 
 
dataset-stage3-640.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:58a0ea4ac42e63ff3cfd85951065b763ebf0baf3a13a073f84f42d4836881865
3
- size 188209129
 
 
 
 
dataset-stage3-800.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f8a5dfa7ef1ade020f406423e65f41f34a2637edc2ca683f23eff7e1125bc412
3
- size 210457003
 
 
 
 
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6b4e6e9a279d96f0dee8540c6e86c6f4eabf63f4fe190d25730b209a2bf5265
3
+ size 1417166405
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f8455e6680721b4ae34a794f0bbd21c3296e872d235a18afd422681f079c7d7
3
+ size 921594491
meta.json CHANGED
@@ -1,4 +1,218 @@
1
  {
2
- "name": "diona_genshin",
3
- "version": "v1.4"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
 
1
  {
2
+ "bangumi": null,
3
+ "base_size": 500,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 47,
8
+ "tags": [
9
+ "1girl",
10
+ "bangs_pinned_back",
11
+ "solo",
12
+ "looking_at_viewer",
13
+ "paw_print",
14
+ "hair_ribbon",
15
+ "forehead",
16
+ "sidelocks",
17
+ "white_gloves",
18
+ "long_sleeves",
19
+ "simple_background",
20
+ "puffy_detached_sleeves",
21
+ "navel",
22
+ "smile",
23
+ "white_background",
24
+ "black_shorts",
25
+ "open_mouth",
26
+ "puffy_shorts",
27
+ "belt",
28
+ "midriff",
29
+ "fang",
30
+ "blush",
31
+ "paw_pose",
32
+ "cat_print"
33
+ ]
34
+ },
35
+ {
36
+ "id": 1,
37
+ "size": 6,
38
+ "tags": [
39
+ "1girl",
40
+ "black_shorts",
41
+ "blush",
42
+ "detached_sleeves",
43
+ "looking_at_viewer",
44
+ "navel",
45
+ "solo",
46
+ "white_background",
47
+ "white_shirt",
48
+ "bangs_pinned_back",
49
+ "black_headwear",
50
+ "puffy_long_sleeves",
51
+ "short_eyebrows",
52
+ "simple_background",
53
+ "sleeveless_shirt",
54
+ "white_gloves",
55
+ "bare_shoulders",
56
+ "beret",
57
+ "fang",
58
+ "forehead",
59
+ "paw_print",
60
+ "puffy_shorts"
61
+ ]
62
+ },
63
+ {
64
+ "id": 2,
65
+ "size": 19,
66
+ "tags": [
67
+ "1girl",
68
+ "loli",
69
+ "looking_at_viewer",
70
+ "nipples",
71
+ "blush",
72
+ "solo",
73
+ "barefoot",
74
+ "small_breasts",
75
+ "navel",
76
+ "pussy",
77
+ "completely_nude",
78
+ "feet",
79
+ "bangs_pinned_back",
80
+ "open_mouth",
81
+ "spread_legs",
82
+ "toes",
83
+ "flat_chest",
84
+ "simple_background",
85
+ "smile",
86
+ "sitting"
87
+ ]
88
+ },
89
+ {
90
+ "id": 3,
91
+ "size": 9,
92
+ "tags": [
93
+ "1girl",
94
+ "blush",
95
+ "hetero",
96
+ "loli",
97
+ "navel",
98
+ "nipples",
99
+ "penis",
100
+ "1boy",
101
+ "sex",
102
+ "solo_focus",
103
+ "open_mouth",
104
+ "small_breasts",
105
+ "vaginal",
106
+ "completely_nude",
107
+ "cum_in_pussy",
108
+ "heart",
109
+ "uncensored",
110
+ "bangs_pinned_back",
111
+ "cowgirl_position",
112
+ "flat_chest",
113
+ "girl_on_top",
114
+ "spread_legs",
115
+ "symbol-shaped_pupils"
116
+ ]
117
+ },
118
+ {
119
+ "id": 4,
120
+ "size": 6,
121
+ "tags": [
122
+ "1boy",
123
+ "1girl",
124
+ "hetero",
125
+ "loli",
126
+ "solo_focus",
127
+ "blush",
128
+ "tongue_out",
129
+ "bangs_pinned_back",
130
+ "looking_at_viewer",
131
+ "mosaic_censoring",
132
+ "open_mouth",
133
+ "simple_background",
134
+ "detached_sleeves",
135
+ "erection",
136
+ "licking_penis",
137
+ "nude"
138
+ ]
139
+ },
140
+ {
141
+ "id": 5,
142
+ "size": 6,
143
+ "tags": [
144
+ "1boy",
145
+ "1girl",
146
+ "anus",
147
+ "ass",
148
+ "blush",
149
+ "english_text",
150
+ "folded",
151
+ "hetero",
152
+ "loli",
153
+ "solo_focus",
154
+ "boots",
155
+ "censored",
156
+ "open_mouth",
157
+ "closed_eyes",
158
+ "cum_in_pussy",
159
+ "cumdrip",
160
+ "dark-skinned_male",
161
+ "spread_pussy"
162
+ ]
163
+ }
164
+ ],
165
+ "core_tags": [
166
+ "animal_ears",
167
+ "cat_ears",
168
+ "pink_hair",
169
+ "animal_ear_fluff",
170
+ "cat_girl",
171
+ "short_hair",
172
+ "cat_tail",
173
+ "tail",
174
+ "green_eyes",
175
+ "hat",
176
+ "thick_eyebrows"
177
+ ],
178
+ "display_name": "diona/ディオナ/迪奥娜 (Genshin Impact)",
179
+ "name": "diona (Genshin Impact)",
180
+ "packages": {
181
+ "1200": {
182
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
183
+ "filename": "dataset-1200.zip",
184
+ "package_size": 676066620,
185
+ "size": 500,
186
+ "type": "IMG+TXT"
187
+ },
188
+ "800": {
189
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
190
+ "filename": "dataset-800.zip",
191
+ "package_size": 400220884,
192
+ "size": 500,
193
+ "type": "IMG+TXT"
194
+ },
195
+ "raw": {
196
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
197
+ "filename": "dataset-raw.zip",
198
+ "package_size": 793901525,
199
+ "size": 500,
200
+ "type": "Waifuc-Raw"
201
+ },
202
+ "stage3-p480-1200": {
203
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
204
+ "filename": "dataset-stage3-p480-1200.zip",
205
+ "package_size": 1417166405,
206
+ "size": 1280,
207
+ "type": "IMG+TXT"
208
+ },
209
+ "stage3-p480-800": {
210
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
211
+ "filename": "dataset-stage3-p480-800.zip",
212
+ "package_size": 921594491,
213
+ "size": 1280,
214
+ "type": "IMG+TXT"
215
+ }
216
+ },
217
+ "version": "v1.5"
218
  }
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

  • SHA256: 31393e7441f72ee54d28becfff1e5bffc00fbaf0a5f80d3467f4d7b21d48001b
  • Pointer size: 131 Bytes
  • Size of remote file: 419 kB
samples/1/clu1-sample0.png ADDED

Git LFS Details

  • SHA256: 916be432b633ea900030fc323fe065a902ae8c2f3b10e1747330357e02b28538
  • Pointer size: 131 Bytes
  • Size of remote file: 354 kB
samples/1/clu1-sample1.png ADDED

Git LFS Details

  • SHA256: 7b6ba1134fd13e0a04e638fb8642ca9747b55d4d0a6478f1a437968c31e434d7
  • Pointer size: 131 Bytes
  • Size of remote file: 290 kB
samples/1/clu1-sample2.png ADDED

Git LFS Details

  • SHA256: cd8d6c41d7d6f5fbd947f8171303e11a5f7723778967bba4ea90cd14165d3883
  • Pointer size: 131 Bytes
  • Size of remote file: 334 kB
samples/1/clu1-sample3.png ADDED

Git LFS Details

  • SHA256: 37ed902422b1228910eb8025fc20f172d22471e9f7dc60787a68f7bea2dc4eeb
  • Pointer size: 131 Bytes
  • Size of remote file: 356 kB
samples/1/clu1-sample4.png ADDED

Git LFS Details

  • SHA256: 566b80f047008f86d07a7109e859625185facbfdec065f111eafbf35f6adaf9c
  • Pointer size: 131 Bytes
  • Size of remote file: 177 kB
samples/2/clu2-sample0.png ADDED

Git LFS Details

  • SHA256: b41217eecf81c5921c01b283dac35300c22f7a2ef012737509948ca6a5a00eb2
  • Pointer size: 131 Bytes
  • Size of remote file: 250 kB
samples/2/clu2-sample1.png ADDED

Git LFS Details

  • SHA256: 465eb8990a5e4c11f28afffbd9ffa9cb2b95f969a9ba4ea52a50ecb30dcb49c9
  • Pointer size: 131 Bytes
  • Size of remote file: 448 kB
samples/2/clu2-sample2.png ADDED

Git LFS Details

  • SHA256: 980be602110d4b4cf97e38285655c37a9bbc33fc66d8dbb42f398cb9cae9505e
  • Pointer size: 131 Bytes
  • Size of remote file: 156 kB
samples/2/clu2-sample3.png ADDED

Git LFS Details

  • SHA256: 612205c1f666b985a0a74b20ad76196e195dbc6a435b258e1684b44b913ad78f
  • Pointer size: 131 Bytes
  • Size of remote file: 395 kB
samples/2/clu2-sample4.png ADDED

Git LFS Details

  • SHA256: 2f2371c74760dda4db9de53b42c784407894bab024ab861c5076ad7d05e1df9a
  • Pointer size: 131 Bytes
  • Size of remote file: 437 kB
samples/3/clu3-sample0.png ADDED

Git LFS Details

  • SHA256: 0f23dc496d5bddd4e2bf1cfa87d701fbb9e23cd8a8a2083798203e5dce093dc9
  • Pointer size: 131 Bytes
  • Size of remote file: 156 kB
samples/3/clu3-sample1.png ADDED

Git LFS Details

  • SHA256: 32b60803ca4def11fb6d5de33d3da0413ece2f1c5e4214aae6511af299a9c31c
  • Pointer size: 131 Bytes
  • Size of remote file: 178 kB
samples/3/clu3-sample2.png ADDED

Git LFS Details

  • SHA256: 517c86e3c9541212bd7627a8e9db7bd6a9d5810fe601e93c7cf37e7c037a0bca
  • Pointer size: 131 Bytes
  • Size of remote file: 358 kB
samples/3/clu3-sample3.png ADDED

Git LFS Details

  • SHA256: adc5d3ae706b3d3ebdfa4d496217103620e792c12e3c1b3cd1797c5118da41a0
  • Pointer size: 131 Bytes
  • Size of remote file: 246 kB
samples/3/clu3-sample4.png ADDED

Git LFS Details

  • SHA256: 21b54a0636c97b67a5da643a24a5e426e680ee71302e3ce3be8fd0072a83ebb0
  • Pointer size: 131 Bytes
  • Size of remote file: 184 kB
samples/4/clu4-sample0.png ADDED

Git LFS Details

  • SHA256: cfbcb9b8efb75da1901fb5cdec0f42bfb1463ea7f55c362e978f0cfa20c0e774
  • Pointer size: 131 Bytes
  • Size of remote file: 208 kB
samples/4/clu4-sample1.png ADDED

Git LFS Details

  • SHA256: 39907bef21b1573f97e1896318f8c872d426987c50ecbe156632d32ec6ecbbe5
  • Pointer size: 131 Bytes
  • Size of remote file: 286 kB
samples/4/clu4-sample2.png ADDED

Git LFS Details

  • SHA256: 38d2c830f10ce6bf72a6a5f86b400b290351589858997b47dbaec9ad609254cb
  • Pointer size: 131 Bytes
  • Size of remote file: 234 kB
samples/4/clu4-sample3.png ADDED

Git LFS Details

  • SHA256: 649bf7e3a676c1a71a84b6bdb4f73570faea235a496e7884d8e056e620479e29
  • Pointer size: 131 Bytes
  • Size of remote file: 234 kB
samples/4/clu4-sample4.png ADDED

Git LFS Details

  • SHA256: 47cafab5628c58ab9d8e29fb1c0a4368e258ed8724502d61e6a283fba68b58b3
  • Pointer size: 131 Bytes
  • Size of remote file: 328 kB
samples/5/clu5-sample0.png ADDED

Git LFS Details

  • SHA256: f51a23d0afe01eab1abb9b430ba2864fb328271ae43f669196e757930b978b4a
  • Pointer size: 131 Bytes
  • Size of remote file: 451 kB
samples/5/clu5-sample1.png ADDED

Git LFS Details

  • SHA256: b236d21eb23c053087c0f7773e89e7012953221449099e4d02ede2a0d9884b19
  • Pointer size: 131 Bytes
  • Size of remote file: 459 kB
samples/5/clu5-sample2.png ADDED

Git LFS Details

  • SHA256: b1ad1f05354fe35740b9c7c365a5a7205988a29046eee8c72be238513c1d4e45
  • Pointer size: 131 Bytes
  • Size of remote file: 520 kB
samples/5/clu5-sample3.png ADDED

Git LFS Details

  • SHA256: 464860f1f69a0b38871e2a26c8115768671f79c93f03fb805fd2865d7570a37e
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB
samples/5/clu5-sample4.png ADDED

Git LFS Details

  • SHA256: 7ae3380bcade08f3c2396659da19062b447808bdb9cbb224080552bd7a3164dd
  • Pointer size: 131 Bytes
  • Size of remote file: 440 kB