Datasets:

Tags:
art
Not-For-All-Audiences
Libraries:
Datasets
License:
narugo commited on
Commit
ac756cd
1 Parent(s): 10878a3

Publish character 'pozemka (Arknights)' to repository, on 2024-01-10 14:43:11 UTC

Browse files
README.md CHANGED
@@ -9,22 +9,75 @@ size_categories:
9
  - n<1K
10
  ---
11
 
12
- # Dataset of pozemka_arknights
13
 
14
- This is the dataset of pozemka_arknights, 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 | 517 | [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 | 517 | [Download](dataset-stage3-640.zip) | 3-stage cropped dataset with the shorter side not exceeding 640 pixels. |
28
- | stage3-800 | 517 | [Download](dataset-stage3-800.zip) | 3-stage cropped dataset with the shorter side not exceeding 800 pixels. |
29
- | stage3-1200 | 517 | [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 pozemka/パゼオンカ/鸿雪 (Arknights)
13
 
14
+ This is the dataset of pozemka/パゼオンカ/鸿雪 (Arknights), containing 352 images and their tags.
15
+
16
+ The core tags of this character are `animal_ears, long_hair, pink_hair, breasts, wolf_ears, pink_eyes, wolf_girl, very_long_hair, hair_ornament, braid, animal_ear_fluff, extra_ears, hair_between_eyes, hair_intakes, medium_breasts, 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 | 352 | 764.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pozemka_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). |
25
+ | 800 | 352 | 330.49 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pozemka_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. |
26
+ | stage3-p480-800 | 897 | 736.29 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pozemka_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. |
27
+ | 1200 | 352 | 611.70 MiB | [Download](https://huggingface.co/datasets/CyberHarem/pozemka_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. |
28
+ | stage3-p480-1200 | 897 | 1.16 GiB | [Download](https://huggingface.co/datasets/CyberHarem/pozemka_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/pozemka_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 | 5 | ![](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, bare_shoulders, black_bra, black_gloves, cleavage, hand_up, high-waist_skirt, looking_at_viewer, red_skirt, simple_background, solo, cowboy_shot, holding_envelope, small_breasts, black_background, clothing_cutout, parted_lips, upper_body, ascot, smile |
69
+ | 1 | 11 | ![](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_bra, black_gloves, cowboy_shot, looking_at_viewer, red_skirt, simple_background, solo, small_breasts, cleavage, high-waist_skirt, elbow_gloves, hand_up, fingerless_gloves, white_background, holding_envelope, thigh_strap |
70
+ | 2 | 5 | ![](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, black_bra, looking_at_viewer, simple_background, solo, upper_body, white_background, cleavage, white_ascot, portrait, bare_shoulders, earrings, large_breasts, sketch |
71
+ | 3 | 8 | ![](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, black_dress, simple_background, solo, white_background, cleavage, long_sleeves, looking_at_viewer, large_breasts, parted_lips, blush, smile, white_cape, white_pantyhose |
72
+ | 4 | 12 | ![](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) | 1girl, long_sleeves, solo, cleavage, looking_at_viewer, holding_cup, black_dress, mug, large_breasts, red_eyes, closed_mouth, hairband, smile, thigh_strap, upper_body |
73
+
74
+ ### Table Version
75
+
76
+ | # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | 1girl | bare_shoulders | black_bra | black_gloves | cleavage | hand_up | high-waist_skirt | looking_at_viewer | red_skirt | simple_background | solo | cowboy_shot | holding_envelope | small_breasts | black_background | clothing_cutout | parted_lips | upper_body | ascot | smile | elbow_gloves | fingerless_gloves | white_background | thigh_strap | white_ascot | portrait | earrings | large_breasts | sketch | black_dress | long_sleeves | blush | white_cape | white_pantyhose | holding_cup | mug | red_eyes | closed_mouth | hairband |
77
+ |----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------|:-----------------|:------------|:---------------|:-----------|:----------|:-------------------|:--------------------|:------------|:--------------------|:-------|:--------------|:-------------------|:----------------|:-------------------|:------------------|:--------------|:-------------|:--------|:--------|:---------------|:--------------------|:-------------------|:--------------|:--------------|:-----------|:-----------|:----------------|:---------|:--------------|:---------------|:--------|:-------------|:------------------|:--------------|:------|:-----------|:---------------|:-----------|
78
+ | 0 | 5 | ![](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 | | | | | | | | | | | | | | | | | | | |
79
+ | 1 | 11 | ![](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 | | | | | | | | | | | | | | | |
80
+ | 2 | 5 | ![](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 | | | | | | | | | | |
81
+ | 3 | 8 | ![](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 | | | | | |
82
+ | 4 | 12 | ![](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 |
83
 
dataset-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7603038355ac747e16839870fe4448489c46974f91bbb97242aaa05b732853c5
3
+ size 641411927
dataset-640x880.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e6351640f007818859b2426d4c477354bb334163f27bae3494c8e577861ddc93
3
- size 117657604
 
 
 
 
dataset-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a19b202f4807babf2e39ba3275ff8bd806dba4a9506c55b45fc9351d4b2a366
3
+ size 346542413
dataset-raw-stage3.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:406a6fb45eb8fa69cd269d1a56149edfa3ea86390b2574c9984be3be3249609a
3
- size 799108886
 
 
 
 
dataset-raw.zip CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:34f4635b6a2675047f9d6698e2ef525fff52c1a6adca057b30e9cd2107e21686
3
- size 442062775
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:403a7e57dbbd4d6896c27b94540112f7619ecdf73a8c5d8365ddd8e27ba9a36d
3
+ size 801849109
dataset-stage3-1200.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:988d5693573ebf91617e004c09c301d4d53539ce903fcc35636a0da83a2a6b46
3
- size 460919115
 
 
 
 
dataset-stage3-640.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:29bce0ef82f20718ed0ef3b0b8bc2b82c3b9e4bece2dfb1744e9ad57d0a28fda
3
- size 284270903
 
 
 
 
dataset-stage3-800.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c4a40d4fc75ee8686ad07f4e8f7dd8f06efe64d43a4f34a2301d03596308e726
3
- size 361248363
 
 
 
 
dataset-stage3-p480-1200.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6c15a65f14dbd72cfd30ab0dfd05e9c54c8348a6cf450676919f4ee7c24cff8
3
+ size 1249688290
dataset-stage3-p480-800.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6164c17ce7b57f567455f7ab932c6ae6d8ac862e240e341eadc36cebff76e8a0
3
+ size 772054315
meta.json CHANGED
@@ -1,4 +1,174 @@
1
  {
2
- "name": "pozemka_arknights",
3
- "version": "v1.4"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
 
1
  {
2
+ "bangumi": null,
3
+ "base_size": 352,
4
+ "clusters": [
5
+ {
6
+ "id": 0,
7
+ "size": 5,
8
+ "tags": [
9
+ "1girl",
10
+ "bare_shoulders",
11
+ "black_bra",
12
+ "black_gloves",
13
+ "cleavage",
14
+ "hand_up",
15
+ "high-waist_skirt",
16
+ "looking_at_viewer",
17
+ "red_skirt",
18
+ "simple_background",
19
+ "solo",
20
+ "cowboy_shot",
21
+ "holding_envelope",
22
+ "small_breasts",
23
+ "black_background",
24
+ "clothing_cutout",
25
+ "parted_lips",
26
+ "upper_body",
27
+ "ascot",
28
+ "smile"
29
+ ]
30
+ },
31
+ {
32
+ "id": 1,
33
+ "size": 11,
34
+ "tags": [
35
+ "1girl",
36
+ "black_bra",
37
+ "black_gloves",
38
+ "cowboy_shot",
39
+ "looking_at_viewer",
40
+ "red_skirt",
41
+ "simple_background",
42
+ "solo",
43
+ "small_breasts",
44
+ "cleavage",
45
+ "high-waist_skirt",
46
+ "elbow_gloves",
47
+ "hand_up",
48
+ "fingerless_gloves",
49
+ "white_background",
50
+ "holding_envelope",
51
+ "thigh_strap"
52
+ ]
53
+ },
54
+ {
55
+ "id": 2,
56
+ "size": 5,
57
+ "tags": [
58
+ "1girl",
59
+ "black_bra",
60
+ "looking_at_viewer",
61
+ "simple_background",
62
+ "solo",
63
+ "upper_body",
64
+ "white_background",
65
+ "cleavage",
66
+ "white_ascot",
67
+ "portrait",
68
+ "bare_shoulders",
69
+ "earrings",
70
+ "large_breasts",
71
+ "sketch"
72
+ ]
73
+ },
74
+ {
75
+ "id": 3,
76
+ "size": 8,
77
+ "tags": [
78
+ "1girl",
79
+ "black_dress",
80
+ "simple_background",
81
+ "solo",
82
+ "white_background",
83
+ "cleavage",
84
+ "long_sleeves",
85
+ "looking_at_viewer",
86
+ "large_breasts",
87
+ "parted_lips",
88
+ "blush",
89
+ "smile",
90
+ "white_cape",
91
+ "white_pantyhose"
92
+ ]
93
+ },
94
+ {
95
+ "id": 4,
96
+ "size": 12,
97
+ "tags": [
98
+ "1girl",
99
+ "long_sleeves",
100
+ "solo",
101
+ "cleavage",
102
+ "looking_at_viewer",
103
+ "holding_cup",
104
+ "black_dress",
105
+ "mug",
106
+ "large_breasts",
107
+ "red_eyes",
108
+ "closed_mouth",
109
+ "hairband",
110
+ "smile",
111
+ "thigh_strap",
112
+ "upper_body"
113
+ ]
114
+ }
115
+ ],
116
+ "core_tags": [
117
+ "animal_ears",
118
+ "long_hair",
119
+ "pink_hair",
120
+ "breasts",
121
+ "wolf_ears",
122
+ "pink_eyes",
123
+ "wolf_girl",
124
+ "very_long_hair",
125
+ "hair_ornament",
126
+ "braid",
127
+ "animal_ear_fluff",
128
+ "extra_ears",
129
+ "hair_between_eyes",
130
+ "hair_intakes",
131
+ "medium_breasts",
132
+ "bangs"
133
+ ],
134
+ "display_name": "pozemka/パゼオンカ/鸿雪 (Arknights)",
135
+ "name": "pozemka (Arknights)",
136
+ "packages": {
137
+ "1200": {
138
+ "description": "dataset with the shorter side not exceeding 1200 pixels.",
139
+ "filename": "dataset-1200.zip",
140
+ "package_size": 641411927,
141
+ "size": 352,
142
+ "type": "IMG+TXT"
143
+ },
144
+ "800": {
145
+ "description": "dataset with the shorter side not exceeding 800 pixels.",
146
+ "filename": "dataset-800.zip",
147
+ "package_size": 346542413,
148
+ "size": 352,
149
+ "type": "IMG+TXT"
150
+ },
151
+ "raw": {
152
+ "description": "Raw data with meta information (min edge aligned to 1400 if larger).",
153
+ "filename": "dataset-raw.zip",
154
+ "package_size": 801849109,
155
+ "size": 352,
156
+ "type": "Waifuc-Raw"
157
+ },
158
+ "stage3-p480-1200": {
159
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
160
+ "filename": "dataset-stage3-p480-1200.zip",
161
+ "package_size": 1249688290,
162
+ "size": 897,
163
+ "type": "IMG+TXT"
164
+ },
165
+ "stage3-p480-800": {
166
+ "description": "3-stage cropped dataset with the area not less than 480x480 pixels.",
167
+ "filename": "dataset-stage3-p480-800.zip",
168
+ "package_size": 772054315,
169
+ "size": 897,
170
+ "type": "IMG+TXT"
171
+ }
172
+ },
173
+ "version": "v1.5"
174
  }
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: eb2b04008bbd246a061637977568a253324bfb298d2899fecbd91915ba12517d
  • Pointer size: 131 Bytes
  • Size of remote file: 449 kB
samples/1/clu1-sample0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 94ff8301c9d8fed11d9e443a0b35174bd5cee6fab7af605e6306d25695d51262
  • Pointer size: 131 Bytes
  • Size of remote file: 534 kB
samples/1/clu1-sample4.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 6e4b48200c021f441ca6c53b24232f997d9f058e132387b98072015697a04312
  • Pointer size: 131 Bytes
  • Size of remote file: 262 kB
samples/2/clu2-sample3.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 424f1c44b7df0af2d6cf817570742dedaaf35b9da3541743b1bf7168695bd82d
  • Pointer size: 131 Bytes
  • Size of remote file: 340 kB
samples/3/clu3-sample0.png ADDED

Git LFS Details

  • SHA256: 7355b125d458b2624589592adf87345ee9e2a0f9291c17ecd26b846f0cc88c71
  • Pointer size: 131 Bytes
  • Size of remote file: 278 kB
samples/3/clu3-sample1.png ADDED

Git LFS Details

  • SHA256: 4356e9a41be1e481143d5088c82cf14ef728f56b2674b9e6a06a9e23c92b8e58
  • Pointer size: 131 Bytes
  • Size of remote file: 306 kB
samples/3/clu3-sample2.png ADDED

Git LFS Details

  • SHA256: 6ad8f0b35937af0e0e76264a26b86b5ded268b6ef4214b4ff70065c92a3df1a2
  • Pointer size: 131 Bytes
  • Size of remote file: 180 kB
samples/3/clu3-sample3.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 42c930707c2cf7f5eafa726f3336c31d3e09ee8f5ea1b59aeb0347d36068df22
  • Pointer size: 131 Bytes
  • Size of remote file: 383 kB
samples/4/clu4-sample0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 24e17574e6369810c8a0feac7382482348c55febf339e0c533978afaab61e5b4
  • Pointer size: 131 Bytes
  • Size of remote file: 262 kB
samples/4/clu4-sample3.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: ab66d0599b741ebe3387547d0cb2a4e50173212f461c2bf229f1a1d7debcc2b3
  • Pointer size: 131 Bytes
  • Size of remote file: 384 kB