diff --git a/README.md b/README.md index 141f3fce66b51f8deb7de4930255fda5462b8918..ab8832c094f8a3e8f3a18d2b9d6c6f9a5ba0f972 100644 --- a/README.md +++ b/README.md @@ -11,65 +11,73 @@ size_categories: # Dataset of liskarm/リスカム/雷蛇 (Arknights) -This is the dataset of liskarm/リスカム/雷蛇 (Arknights), containing 266 images and their tags. +This is the dataset of liskarm/リスカム/雷蛇 (Arknights), containing 207 images and their tags. -The core tags of this character are `horns, grey_hair, dragon_horns, ponytail, long_hair, bangs, tail, dragon_tail, dragon_girl, breasts, brown_eyes`, which are pruned in this dataset. +The core tags of this character are `horns, grey_hair, dragon_horns, ponytail, long_hair, bangs, tail, dragon_tail, dragon_girl, breasts, brown_eyes, orange_eyes`, which are pruned in this dataset. 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)). ## List of Packages -| Name | Images | Download | Description | -|:-----------------|---------:|:-----------------------------------------|:----------------------------------------------------------------------------| -| raw | 266 | [Download](dataset-raw.zip) | Raw data with meta information (min edge aligned to 1400 if larger). | -| pruned | 266 | [Download](dataset-pruned.zip) | Raw data with meta information, core character tags pruned. | -| pruned-stage3 | 690 | [Download](dataset-pruned-stage3.zip) | 3-stage cropped raw data with meta information, core character tags pruned. | -| stage3-800 | 690 | [Download](dataset-stage3-800.zip) | 3-stage cropped dataset with the shorter side not exceeding 800 pixels. | -| stage3-p480-800 | 643 | [Download](dataset-stage3-p480-800.zip) | 3-stage cropped dataset with the area not less than 480x480 pixels. | -| stage3-1200 | 690 | [Download](dataset-stage3-1200.zip) | 3-stage cropped dataset with the shorter side not exceeding 800 pixels. | -| stage3-p480-1200 | 643 | [Download](dataset-stage3-p480-1200.zip) | 3-stage cropped dataset with the area not less than 480x480 pixels. | +| Name | Images | Size | Download | Type | Description | +|:-----------------|---------:|:-----------|:-------------------------------------------------------------------------------------------------------------------|:-----------|:---------------------------------------------------------------------| +| raw | 207 | 333.83 MiB | [Download](https://huggingface.co/datasets/CyberHarem/liskarm_arknights/resolve/main/dataset-raw.zip) | Waifuc-Raw | Raw data with meta information (min edge aligned to 1400 if larger). | +| 800 | 207 | 155.66 MiB | [Download](https://huggingface.co/datasets/CyberHarem/liskarm_arknights/resolve/main/dataset-800.zip) | IMG+TXT | dataset with the shorter side not exceeding 800 pixels. | +| stage3-p480-800 | 531 | 355.52 MiB | [Download](https://huggingface.co/datasets/CyberHarem/liskarm_arknights/resolve/main/dataset-stage3-p480-800.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | +| 1200 | 207 | 278.17 MiB | [Download](https://huggingface.co/datasets/CyberHarem/liskarm_arknights/resolve/main/dataset-1200.zip) | IMG+TXT | dataset with the shorter side not exceeding 1200 pixels. | +| stage3-p480-1200 | 531 | 545.23 MiB | [Download](https://huggingface.co/datasets/CyberHarem/liskarm_arknights/resolve/main/dataset-stage3-p480-1200.zip) | IMG+TXT | 3-stage cropped dataset with the area not less than 480x480 pixels. | + +### Load Raw Dataset with Waifuc + +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 + +```python +import os +import zipfile + +from huggingface_hub import hf_hub_download +from waifuc.source import LocalSource + +# download raw archive file +zip_file = hf_hub_download( + repo_id='CyberHarem/liskarm_arknights', + repo_type='dataset', + filename='dataset-raw.zip', +) + +# extract files to your directory +dataset_dir = 'dataset_dir' +os.makedirs(dataset_dir, exist_ok=True) +with zipfile.ZipFile(zip_file, 'r') as zf: + zf.extractall(dataset_dir) + +# load the dataset with waifuc +source = LocalSource(dataset_dir) +for item in source: + print(item.image, item.meta['filename'], item.meta['tags']) +``` ## List of Clusters ### Raw Text Version -| # | Samples | Img-1 | Img-2 | Img-3 | Tags | -|----:|----------:|:----------------------------------|:----------------------------------|:----------------------------------|:----------------------------------------| -| 0 | 5 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | medium_breasts, orange_eyes | -| 1 | 4 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | large_breasts, medium_breasts, red_eyes | -| 2 | 3 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | red_eyes, white_hair | -| 3 | 3 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | red_eyes, short_hair | -| 4 | 27 | ![](samples/4/clu4-sample0.png) | ![](samples/4/clu4-sample1.png) | ![](samples/4/clu4-sample2.png) | red_eyes | -| 5 | 4 | ![](samples/5/clu5-sample0.png) | ![](samples/5/clu5-sample1.png) | ![](samples/5/clu5-sample2.png) | v-shaped_eyebrows | -| 6 | 5 | ![](samples/6/clu6-sample0.png) | ![](samples/6/clu6-sample1.png) | ![](samples/6/clu6-sample2.png) | medium_breasts | -| 7 | 6 | ![](samples/7/clu7-sample0.png) | ![](samples/7/clu7-sample1.png) | ![](samples/7/clu7-sample2.png) | orange_eyes, red_eyes | -| 8 | 35 | ![](samples/8/clu8-sample0.png) | ![](samples/8/clu8-sample1.png) | ![](samples/8/clu8-sample2.png) | orange_eyes | -| 9 | 8 | ![](samples/9/clu9-sample0.png) | ![](samples/9/clu9-sample1.png) | ![](samples/9/clu9-sample2.png) | large_breasts | -| 10 | 3 | ![](samples/10/clu10-sample0.png) | ![](samples/10/clu10-sample1.png) | ![](samples/10/clu10-sample2.png) | hair_between_eyes, v-shaped_eyebrows | -| 11 | 5 | ![](samples/11/clu11-sample0.png) | ![](samples/11/clu11-sample1.png) | ![](samples/11/clu11-sample2.png) | orange_eyes, v-shaped_eyebrows | -| 12 | 3 | ![](samples/12/clu12-sample0.png) | ![](samples/12/clu12-sample1.png) | ![](samples/12/clu12-sample2.png) | yellow_eyes | -| 13 | 3 | ![](samples/13/clu13-sample0.png) | ![](samples/13/clu13-sample1.png) | ![](samples/13/clu13-sample2.png) | brown_hair | -| 14 | 5 | ![](samples/14/clu14-sample0.png) | ![](samples/14/clu14-sample1.png) | ![](samples/14/clu14-sample2.png) | orange_eyes, sidelocks, white_hair | -| 15 | 3 | ![](samples/15/clu15-sample0.png) | ![](samples/15/clu15-sample1.png) | ![](samples/15/clu15-sample2.png) | hair_bow, black_bow, bow | +| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | Tags | +|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:----------------------------------------| +| 0 | 14 | ![](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) | large_breasts, medium_breasts, red_eyes | +| 1 | 5 | ![](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) | red_eyes, blue_hair, blunt_bangs | +| 2 | 6 | ![](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) | red_eyes, short_hair | +| 3 | 27 | ![](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) | red_eyes | +| 4 | 7 | ![](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) | medium_breasts | +| 5 | 9 | ![](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) | white_hair, red_eyes | ### Table Version -| # | Samples | Img-1 | Img-2 | Img-3 | medium_breasts | orange_eyes | large_breasts | red_eyes | white_hair | short_hair | v-shaped_eyebrows | hair_between_eyes | yellow_eyes | brown_hair | sidelocks | hair_bow | black_bow | bow | -|----:|----------:|:----------------------------------|:----------------------------------|:----------------------------------|:-----------------|:--------------|:----------------|:-----------|:-------------|:-------------|:--------------------|:--------------------|:--------------|:-------------|:------------|:-----------|:------------|:------| -| 0 | 5 | ![](samples/0/clu0-sample0.png) | ![](samples/0/clu0-sample1.png) | ![](samples/0/clu0-sample2.png) | X | X | | | | | | | | | | | | | -| 1 | 4 | ![](samples/1/clu1-sample0.png) | ![](samples/1/clu1-sample1.png) | ![](samples/1/clu1-sample2.png) | X | | X | X | | | | | | | | | | | -| 2 | 3 | ![](samples/2/clu2-sample0.png) | ![](samples/2/clu2-sample1.png) | ![](samples/2/clu2-sample2.png) | | | | X | X | | | | | | | | | | -| 3 | 3 | ![](samples/3/clu3-sample0.png) | ![](samples/3/clu3-sample1.png) | ![](samples/3/clu3-sample2.png) | | | | X | | X | | | | | | | | | -| 4 | 27 | ![](samples/4/clu4-sample0.png) | ![](samples/4/clu4-sample1.png) | ![](samples/4/clu4-sample2.png) | | | | X | | | | | | | | | | | -| 5 | 4 | ![](samples/5/clu5-sample0.png) | ![](samples/5/clu5-sample1.png) | ![](samples/5/clu5-sample2.png) | | | | | | | X | | | | | | | | -| 6 | 5 | ![](samples/6/clu6-sample0.png) | ![](samples/6/clu6-sample1.png) | ![](samples/6/clu6-sample2.png) | X | | | | | | | | | | | | | | -| 7 | 6 | ![](samples/7/clu7-sample0.png) | ![](samples/7/clu7-sample1.png) | ![](samples/7/clu7-sample2.png) | | X | | X | | | | | | | | | | | -| 8 | 35 | ![](samples/8/clu8-sample0.png) | ![](samples/8/clu8-sample1.png) | ![](samples/8/clu8-sample2.png) | | X | | | | | | | | | | | | | -| 9 | 8 | ![](samples/9/clu9-sample0.png) | ![](samples/9/clu9-sample1.png) | ![](samples/9/clu9-sample2.png) | | | X | | | | | | | | | | | | -| 10 | 3 | ![](samples/10/clu10-sample0.png) | ![](samples/10/clu10-sample1.png) | ![](samples/10/clu10-sample2.png) | | | | | | | X | X | | | | | | | -| 11 | 5 | ![](samples/11/clu11-sample0.png) | ![](samples/11/clu11-sample1.png) | ![](samples/11/clu11-sample2.png) | | X | | | | | X | | | | | | | | -| 12 | 3 | ![](samples/12/clu12-sample0.png) | ![](samples/12/clu12-sample1.png) | ![](samples/12/clu12-sample2.png) | | | | | | | | | X | | | | | | -| 13 | 3 | ![](samples/13/clu13-sample0.png) | ![](samples/13/clu13-sample1.png) | ![](samples/13/clu13-sample2.png) | | | | | | | | | | X | | | | | -| 14 | 5 | ![](samples/14/clu14-sample0.png) | ![](samples/14/clu14-sample1.png) | ![](samples/14/clu14-sample2.png) | | X | | | X | | | | | | X | | | | -| 15 | 3 | ![](samples/15/clu15-sample0.png) | ![](samples/15/clu15-sample1.png) | ![](samples/15/clu15-sample2.png) | | | | | | | | | | | | X | X | X | +| # | Samples | Img-1 | Img-2 | Img-3 | Img-4 | Img-5 | large_breasts | medium_breasts | red_eyes | blue_hair | blunt_bangs | short_hair | white_hair | +|----:|----------:|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:--------------------------------|:----------------|:-----------------|:-----------|:------------|:--------------|:-------------|:-------------| +| 0 | 14 | ![](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 | | | | | +| 1 | 5 | ![](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 | | | +| 2 | 6 | ![](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 | | +| 3 | 27 | ![](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 | | | | | +| 4 | 7 | ![](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 | | | | | | +| 5 | 9 | ![](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 | diff --git a/dataset-1200.zip b/dataset-1200.zip new file mode 100644 index 0000000000000000000000000000000000000000..f44e405c57ae2776eb382d6c56df68b4d9920903 --- /dev/null +++ b/dataset-1200.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b4dbae25b9c3161a0ae1316ba718a4d8c07e52b8137458f563ff5e5654902 +size 291678663 diff --git a/dataset-800.zip b/dataset-800.zip new file mode 100644 index 0000000000000000000000000000000000000000..17c2956dada7a15e0a793c85398620d773af34cd --- /dev/null +++ b/dataset-800.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb340a5fe62379506458a16c1efa22905b421c5f999f2cf72e341a4f082b7a3 +size 163223597 diff --git a/dataset-pruned-stage3.zip b/dataset-pruned-stage3.zip deleted file mode 100644 index 3202fcae929d68fcea016cd15744a336fb744fdf..0000000000000000000000000000000000000000 --- a/dataset-pruned-stage3.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d71bb8a407a8ecd7a24ef925d3a1bb17d529a27c996d5b04d6b517f69a5361e1 -size 756555908 diff --git a/dataset-pruned.zip b/dataset-pruned.zip deleted file mode 100644 index 84b2e13ead9e3ceea9556747fca87bd60c7d6b57..0000000000000000000000000000000000000000 --- a/dataset-pruned.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a73f5468d7347ee0203179c743e913272b0a50a6220225ee7db13ea834c3662e -size 411315348 diff --git a/dataset-raw.zip b/dataset-raw.zip index a69c21d979041bd288811a17751adcf38a23078f..76caacaa618d042fb6cad4713adf33d10e03124a 100644 --- a/dataset-raw.zip +++ b/dataset-raw.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06cc8e39540fb3393ed2ecceade19eedafb38ce7d6d2b31032eaa883699375c9 -size 411367771 +oid sha256:d973d993a849282a7006fda45d1833916a79051d7d121516a3ad5b6ce34b1996 +size 350042381 diff --git a/dataset-stage3-1200.zip b/dataset-stage3-1200.zip deleted file mode 100644 index ce0d96e1f48cad279be2482fd4ac853856ea5c86..0000000000000000000000000000000000000000 --- a/dataset-stage3-1200.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09534b438dfbf63b8974b3ab911d6196e1e3febfd4211c5f6b675de9c5d1f737 -size 688954152 diff --git a/dataset-stage3-800.zip b/dataset-stage3-800.zip deleted file mode 100644 index 0f8484898dfc1fbf4a917f77f64cdcd8e7165b6b..0000000000000000000000000000000000000000 --- a/dataset-stage3-800.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed9d6839d8ba8bd46f519659e9d757ee54c44978212c5e6e04e217e9831e8d71 -size 468478361 diff --git a/dataset-stage3-p480-1200.zip b/dataset-stage3-p480-1200.zip index fbf9bad39d9b34b5e7639b332466ed9b89a60687..0d97f4bd41c7f86b30fe3a628a31ad1db42df38f 100644 --- a/dataset-stage3-p480-1200.zip +++ b/dataset-stage3-p480-1200.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:423abcae4b5b76029dc64ce64b14bca2e2b8e13dcc2aa6843ad9a660775c4bec -size 677828955 +oid sha256:954170afbd5fa3de9a1baacb35fa97f074787fbebf909a47b18d59a2a6317d4e +size 571717998 diff --git a/dataset-stage3-p480-800.zip b/dataset-stage3-p480-800.zip index 79a170de242b122f644415ef095ace0faada058f..7b2a9f9881e4ae89ecbf3e489a0e56e9960b9e46 100644 --- a/dataset-stage3-p480-800.zip +++ b/dataset-stage3-p480-800.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a690073408faa003077d3c9d6b2ba6835c9c8cc01571f6b4a9709d6c034e39b7 -size 457353164 +oid sha256:738b3df45feb7512573e4a79513724aac6992216733b7161cf6103eeb13f98cb +size 372786982 diff --git a/meta.json b/meta.json index 397b9034877d43df8ef54e414fe3e142d25a8757..362c10d931abe807c5d0d25b90f68873abd94dc0 100644 --- a/meta.json +++ b/meta.json @@ -1,18 +1,10 @@ { "bangumi": null, - "base_size": 266, + "base_size": 207, "clusters": [ { "id": 0, - "size": 5, - "tags": [ - "medium_breasts", - "orange_eyes" - ] - }, - { - "id": 1, - "size": 4, + "size": 14, "tags": [ "large_breasts", "medium_breasts", @@ -20,111 +12,43 @@ ] }, { - "id": 2, - "size": 3, + "id": 1, + "size": 5, "tags": [ "red_eyes", - "white_hair" + "blue_hair", + "blunt_bangs" ] }, { - "id": 3, - "size": 3, + "id": 2, + "size": 6, "tags": [ "red_eyes", "short_hair" ] }, { - "id": 4, + "id": 3, "size": 27, "tags": [ "red_eyes" ] }, { - "id": 5, - "size": 4, - "tags": [ - "v-shaped_eyebrows" - ] - }, - { - "id": 6, - "size": 5, + "id": 4, + "size": 7, "tags": [ "medium_breasts" ] }, { - "id": 7, - "size": 6, + "id": 5, + "size": 9, "tags": [ - "orange_eyes", + "white_hair", "red_eyes" ] - }, - { - "id": 8, - "size": 35, - "tags": [ - "orange_eyes" - ] - }, - { - "id": 9, - "size": 8, - "tags": [ - "large_breasts" - ] - }, - { - "id": 10, - "size": 3, - "tags": [ - "hair_between_eyes", - "v-shaped_eyebrows" - ] - }, - { - "id": 11, - "size": 5, - "tags": [ - "orange_eyes", - "v-shaped_eyebrows" - ] - }, - { - "id": 12, - "size": 3, - "tags": [ - "yellow_eyes" - ] - }, - { - "id": 13, - "size": 3, - "tags": [ - "brown_hair" - ] - }, - { - "id": 14, - "size": 5, - "tags": [ - "orange_eyes", - "sidelocks", - "white_hair" - ] - }, - { - "id": 15, - "size": 3, - "tags": [ - "hair_bow", - "black_bow", - "bow" - ] } ], "core_tags": [ @@ -138,45 +62,46 @@ "dragon_tail", "dragon_girl", "breasts", - "brown_eyes" + "brown_eyes", + "orange_eyes" ], "display_name": "liskarm/リスカム/雷蛇 (Arknights)", "name": "liskarm (Arknights)", "packages": { - "pruned": { - "description": "Raw data with meta information, core character tags pruned.", - "filename": "dataset-pruned.zip", - "size": 266 - }, - "pruned-stage3": { - "description": "3-stage cropped raw data with meta information, core character tags pruned.", - "filename": "dataset-pruned-stage3.zip", - "size": 690 + "1200": { + "description": "dataset with the shorter side not exceeding 1200 pixels.", + "filename": "dataset-1200.zip", + "package_size": 291678663, + "size": 207, + "type": "IMG+TXT" + }, + "800": { + "description": "dataset with the shorter side not exceeding 800 pixels.", + "filename": "dataset-800.zip", + "package_size": 163223597, + "size": 207, + "type": "IMG+TXT" }, "raw": { "description": "Raw data with meta information (min edge aligned to 1400 if larger).", "filename": "dataset-raw.zip", - "size": 266 - }, - "stage3-1200": { - "description": "3-stage cropped dataset with the shorter side not exceeding 800 pixels.", - "filename": "dataset-stage3-1200.zip", - "size": 690 - }, - "stage3-800": { - "description": "3-stage cropped dataset with the shorter side not exceeding 800 pixels.", - "filename": "dataset-stage3-800.zip", - "size": 690 + "package_size": 350042381, + "size": 207, + "type": "Waifuc-Raw" }, "stage3-p480-1200": { "description": "3-stage cropped dataset with the area not less than 480x480 pixels.", "filename": "dataset-stage3-p480-1200.zip", - "size": 643 + "package_size": 571717998, + "size": 531, + "type": "IMG+TXT" }, "stage3-p480-800": { "description": "3-stage cropped dataset with the area not less than 480x480 pixels.", "filename": "dataset-stage3-p480-800.zip", - "size": 643 + "package_size": 372786982, + "size": 531, + "type": "IMG+TXT" } }, "version": "v1.5" diff --git a/samples/0/clu0-sample0.png b/samples/0/clu0-sample0.png index eba23f513d6a3512c578e83455833ef9ffc891d6..535f23f5ba5b5d499e8fd1ace9ab5792259686ab 100644 --- a/samples/0/clu0-sample0.png +++ b/samples/0/clu0-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59e59168fccdef65e2c85fcbc220b7b5bcd0b6cf611115042d2f0f238a646174 -size 133482 +oid sha256:8340cbbc566c950bf3b87517508fc116ca605376d4e8d66ed9c241af6f579028 +size 218763 diff --git a/samples/0/clu0-sample1.png b/samples/0/clu0-sample1.png index 801bf9ac7d76680b9b0a27cd7e7fdad8b22b797b..42058b9f67dd203ff31f27510eeefe61dc464f4c 100644 --- a/samples/0/clu0-sample1.png +++ b/samples/0/clu0-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20287dc4e05c6b58b929b5a36723c956f342d3f78ab3eb9da714c863a06ca727 -size 273127 +oid sha256:881d389389400e6bbf71b256e3b7e2502b410573ab2dc8c4880b7880310ff139 +size 256149 diff --git a/samples/0/clu0-sample2.png b/samples/0/clu0-sample2.png index cb42f5702d70d34ba1abade577b8bd674b8a4191..06d4d9a610009be3728b3fe93a24ae26f2ef66fb 100644 --- a/samples/0/clu0-sample2.png +++ b/samples/0/clu0-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45e4cd26565d136a78ce33f37f954e3592523f36f4e774c7083643f65c92d212 -size 209997 +oid sha256:c3f034858efc40a177132e0b0667a96aa5743cb484a128674441687d21d69012 +size 283744 diff --git a/samples/0/clu0-sample3.png b/samples/0/clu0-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..e858b6e887bc58013acaa6b6d5868878a357e8f0 --- /dev/null +++ b/samples/0/clu0-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad3f6d2ddca8b212eb09d84018e2574015fd48805d6986ef162646d0d6f927d +size 418468 diff --git a/samples/0/clu0-sample4.png b/samples/0/clu0-sample4.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee1d6816fa5a1d80b65a00a9a7ec295585871a4 --- /dev/null +++ b/samples/0/clu0-sample4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cdc8acd128257587ba3d274ceee6f90bd9577fcc5629b06f11ecdf04ab9dee +size 284006 diff --git a/samples/1/clu1-sample0.png b/samples/1/clu1-sample0.png index 120a84f7ffb6251e5cf219323e5771c41307eb18..e7a58ab82418e44ba826409e8e171fce25f9e4c4 100644 --- a/samples/1/clu1-sample0.png +++ b/samples/1/clu1-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28e6e7fab577f099407c3f65ef6ed9c1a4af8eb34808446b0a2082a62554fba7 -size 281385 +oid sha256:d953ce44a3f00543a7527f94a6b78da831897ee47058e04a6bcf5c268f3bb521 +size 329820 diff --git a/samples/1/clu1-sample1.png b/samples/1/clu1-sample1.png index a26fbc5cf983045af48dfffc97fe84fa131178ba..c1ae25615077793fb7425e5195c7a1cc6295e602 100644 --- a/samples/1/clu1-sample1.png +++ b/samples/1/clu1-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74eb72086329bb1a750047c805253f7e27cd1afaaf5ade8dbdcc9bdf4ff92e11 -size 208952 +oid sha256:ab6d8fe7ac984503c5a11b9cb06963fd4a899e70e17f20dae46a02af589216be +size 282756 diff --git a/samples/1/clu1-sample2.png b/samples/1/clu1-sample2.png index b7465ce21edea6c6251c043881271ce59e41a781..f96f3d599e77b12cdb7ae0c9f72d6f3c93bba8e1 100644 --- a/samples/1/clu1-sample2.png +++ b/samples/1/clu1-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8e84ae6f8c7ddd6afed057f6cbbd1d7e9f345a8e45b521ba996ff2cdbe9afef -size 203159 +oid sha256:98d02c0edbe349dee315f6affb9f2349ff2a5a6a3a294d45aa3ab6be8f41994d +size 486018 diff --git a/samples/1/clu1-sample3.png b/samples/1/clu1-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..4ee866bbda06c3325eed915f84d0674585e475f0 --- /dev/null +++ b/samples/1/clu1-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e287da29a7b80c918d4ff0988ab16e618277530f7a2b65f4addbdade50d95ae +size 390832 diff --git a/samples/1/clu1-sample4.png b/samples/1/clu1-sample4.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0124af8791bedd0ed71494ca7b26eda42fad09 --- /dev/null +++ b/samples/1/clu1-sample4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1923fcd9ea8cfdaf2945d0a5166841958dc8738bda3ed96cefa9c17412b923c +size 289193 diff --git a/samples/10/clu10-sample0.png b/samples/10/clu10-sample0.png deleted file mode 100644 index e942c6281752982773b068bcb5bdcaec1ce91ccb..0000000000000000000000000000000000000000 --- a/samples/10/clu10-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:93d7ed64ab01f60ea1cdabe85a4941bfdccab21e54c2aca0eb91c0888a6886b1 -size 376535 diff --git a/samples/10/clu10-sample1.png b/samples/10/clu10-sample1.png deleted file mode 100644 index 86644eaee3b8d4d07f55ab7c7ea0e2c4d679d251..0000000000000000000000000000000000000000 --- a/samples/10/clu10-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59e311a3dc4936ff45770a61bb34ca280b2003ae636bca1c9b3475b064e470fc -size 265318 diff --git a/samples/10/clu10-sample2.png b/samples/10/clu10-sample2.png deleted file mode 100644 index 5758bea02408a59ae936345f82a49d055b48e833..0000000000000000000000000000000000000000 --- a/samples/10/clu10-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:61ac88f765f0749acc3321c501fd16fb81578d0a2367904be69a69bf06743227 -size 172893 diff --git a/samples/11/clu11-sample0.png b/samples/11/clu11-sample0.png deleted file mode 100644 index 8e3d2948c54657235fb674b728b990a9fca5a2d2..0000000000000000000000000000000000000000 --- a/samples/11/clu11-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:384d2cbe614bf41159360e30feb8ed395fc34ef62295c7d158115954c6e9e2a3 -size 494310 diff --git a/samples/11/clu11-sample1.png b/samples/11/clu11-sample1.png deleted file mode 100644 index ee25b716ce548349e570de98d95baed187dc1b20..0000000000000000000000000000000000000000 --- a/samples/11/clu11-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36d79ce7fb68786d26f87f389376e2e00d2987df24682939df7e4f9236450017 -size 418379 diff --git a/samples/11/clu11-sample2.png b/samples/11/clu11-sample2.png deleted file mode 100644 index 41b757854e27e7da642007454e47104b78c7df13..0000000000000000000000000000000000000000 --- a/samples/11/clu11-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f248bfe82cdc85299362e58c330df7ab8a0ab041a4afeb3ee2ec358c50bf2a92 -size 197357 diff --git a/samples/12/clu12-sample0.png b/samples/12/clu12-sample0.png deleted file mode 100644 index 115b671ad3349665e41eb9e04d07320039351092..0000000000000000000000000000000000000000 --- a/samples/12/clu12-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed2f75972b512394822165f249a622643752ae62b3dcaedafcbb45411072fc3e -size 318820 diff --git a/samples/12/clu12-sample1.png b/samples/12/clu12-sample1.png deleted file mode 100644 index 8d8bd92ed28afb4eec0a6c343e1d3d2afa786678..0000000000000000000000000000000000000000 --- a/samples/12/clu12-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e475fb08c51f553998ebfb541c31a2435e84d4de68981fb0715d15d19006f287 -size 230394 diff --git a/samples/12/clu12-sample2.png b/samples/12/clu12-sample2.png deleted file mode 100644 index bf1bdfa78ae19fabf9d6e86c8beef0daa24ef40a..0000000000000000000000000000000000000000 --- a/samples/12/clu12-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b024e4e0533a13e73fea838e70d75bf464135631849f82e6ccc57c4eda0c0553 -size 268307 diff --git a/samples/13/clu13-sample0.png b/samples/13/clu13-sample0.png deleted file mode 100644 index 99e07e0313ae28a061759c4b9719699933526e24..0000000000000000000000000000000000000000 --- a/samples/13/clu13-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0818199fdfecf37da0128c0b702ebb063c41bef538d0db0ade450924b8ed23a1 -size 111464 diff --git a/samples/13/clu13-sample1.png b/samples/13/clu13-sample1.png deleted file mode 100644 index 3c0a9ed09f03a7d9cbe411a5396a1711361a24b1..0000000000000000000000000000000000000000 --- a/samples/13/clu13-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d91696019669bb87598fb493a5f36a6293b100cb65fae68f5339c40a690b8111 -size 277902 diff --git a/samples/13/clu13-sample2.png b/samples/13/clu13-sample2.png deleted file mode 100644 index 97e5128ac05b420045b6f7668468d385cc0f21f5..0000000000000000000000000000000000000000 --- a/samples/13/clu13-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2fc6b98798a71e414ac84f208802587c8fd2c1264688f82c38cbaf367423566 -size 324118 diff --git a/samples/14/clu14-sample0.png b/samples/14/clu14-sample0.png deleted file mode 100644 index e0e78f54543b0afaa823126f10a0a5bc7d7ee06b..0000000000000000000000000000000000000000 --- a/samples/14/clu14-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3e796a9b087503a87b56e21a0e978e0b3362636f18af8a4e22058b710b918c6 -size 353308 diff --git a/samples/14/clu14-sample1.png b/samples/14/clu14-sample1.png deleted file mode 100644 index 3d821353c7d5327d4402171785b2960612a18f57..0000000000000000000000000000000000000000 --- a/samples/14/clu14-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cfc161971cfcff17bc55f2979946ff32feef8913f97de1087a4ddd9ad49e4cd1 -size 330931 diff --git a/samples/14/clu14-sample2.png b/samples/14/clu14-sample2.png deleted file mode 100644 index d6fe52bc7492c4d524b15b78693f86ca6e39849c..0000000000000000000000000000000000000000 --- a/samples/14/clu14-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b33e8d1faabf9943be58bfaac84c9db139698b45fd5b0f1c4aa5f2ebcbeae654 -size 180533 diff --git a/samples/15/clu15-sample0.png b/samples/15/clu15-sample0.png deleted file mode 100644 index cbf3997dbf8d24f921847a2a98a4fa8af9080028..0000000000000000000000000000000000000000 --- a/samples/15/clu15-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1303b5dd3122badc59d8abf2eb7b32f31975e7b3906a5f033f11e54490d61434 -size 407937 diff --git a/samples/15/clu15-sample1.png b/samples/15/clu15-sample1.png deleted file mode 100644 index cc3eb5990f1dbe49c8c338ad98db281394fc0110..0000000000000000000000000000000000000000 --- a/samples/15/clu15-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a00641f4f343e2c1a5af8323d5f6b83becc19d77bacb8ec23ca137a0884ec70d -size 211792 diff --git a/samples/15/clu15-sample2.png b/samples/15/clu15-sample2.png deleted file mode 100644 index 60f20a735199743500f84b7a2a72bb324cf90cba..0000000000000000000000000000000000000000 --- a/samples/15/clu15-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e61d4f8dfbb53cc8515623c0672d8958b2567238265007f3282379c482d6ad2 -size 264119 diff --git a/samples/2/clu2-sample0.png b/samples/2/clu2-sample0.png index d5092b15047733d1b97032733eacfcc1e5b653ec..6f4d8cafaa3b63418dc6ddd9b256d899c4e3962a 100644 --- a/samples/2/clu2-sample0.png +++ b/samples/2/clu2-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f3a2ffeeb9f71ebbb6493b9b91fe33f239cafa7fa7c0696dc88aa04e04e3546 -size 224415 +oid sha256:b149fee6e1a887274e1ba7edc4a5095e40c80bc46aa75623599f9e95ede8e4e0 +size 143198 diff --git a/samples/2/clu2-sample1.png b/samples/2/clu2-sample1.png index 09ddca129f93f669eaff551438e2e6c2db77cd81..3b19c689f15f6dd73a4395bc816878b7b5177c48 100644 --- a/samples/2/clu2-sample1.png +++ b/samples/2/clu2-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c59f4dd8ba75192601ed1cf3725f1e94e381573220d91a68d01b796f1ec32b80 -size 240078 +oid sha256:8a48e7de15e1b743be5a6dbf352938628c7e7c4638220b396ff4401f3566e3b0 +size 328886 diff --git a/samples/2/clu2-sample2.png b/samples/2/clu2-sample2.png index d428fbd73c733bab48032ba18f85821e7dacaed7..a7ad4fc2506cd78a2986e4fab1849aebd027c959 100644 --- a/samples/2/clu2-sample2.png +++ b/samples/2/clu2-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc8d4997b84efadfcafe666bf125524a15c2d4b5813f9526c22af0a03ee3f951 -size 331209 +oid sha256:627aa5be6e34375cc2e8f2e3c290eebd76200bc461d31c2457a823e4e946ef2f +size 394150 diff --git a/samples/2/clu2-sample3.png b/samples/2/clu2-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..482e26c6e4adf53eb88c9e8158519d9264fbe3e2 --- /dev/null +++ b/samples/2/clu2-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8335c4c57e7e8390d1d8c9741017c164e09c4da24df86fa6ba9733ff898eea89 +size 94423 diff --git a/samples/2/clu2-sample4.png b/samples/2/clu2-sample4.png new file mode 100644 index 0000000000000000000000000000000000000000..59c6121f9b409b34688aa0b81aa886345f39e653 --- /dev/null +++ b/samples/2/clu2-sample4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18b781039c1e9fc48523138585c9056267161cc200b8002baa054989e0587b8 +size 233879 diff --git a/samples/3/clu3-sample0.png b/samples/3/clu3-sample0.png index 3b19c689f15f6dd73a4395bc816878b7b5177c48..338105a3b2e8f94de08d8d2316be478e62acae2b 100644 --- a/samples/3/clu3-sample0.png +++ b/samples/3/clu3-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a48e7de15e1b743be5a6dbf352938628c7e7c4638220b396ff4401f3566e3b0 -size 328886 +oid sha256:b6848ca1219b8f3f227869d8e26e72c0a960874c3f2540ed206fa0d8697269c1 +size 250020 diff --git a/samples/3/clu3-sample1.png b/samples/3/clu3-sample1.png index 59c6121f9b409b34688aa0b81aa886345f39e653..efa6be9bd23e528608cc3f2087e2962ba272ce44 100644 --- a/samples/3/clu3-sample1.png +++ b/samples/3/clu3-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c18b781039c1e9fc48523138585c9056267161cc200b8002baa054989e0587b8 -size 233879 +oid sha256:7601bfd8419289894d8296e560f7fd75b8067c0957470d4a7eab8b859aa8432e +size 178394 diff --git a/samples/3/clu3-sample2.png b/samples/3/clu3-sample2.png index dc0f2fa5fde494760433ee55dd89bcead434b9b7..9085b4ed457a89cbd655d593167f6b3ebb68090d 100644 --- a/samples/3/clu3-sample2.png +++ b/samples/3/clu3-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4dd3aad630da6c7c7443f0ee2b2c9398218998b5abaaf3df65ae5aa2bd9ac61 -size 441381 +oid sha256:a4be333c3809b389c7b29a4fab800d25bb922cb599a74fc184ed28a59225aecd +size 496974 diff --git a/samples/3/clu3-sample3.png b/samples/3/clu3-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce0b742622b180ad618835f7cc1d23b9eb76e33 --- /dev/null +++ b/samples/3/clu3-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49841a510cf1b10b228564d57060f2dec518bf048b0f3ee597a601e504f98acc +size 250511 diff --git a/samples/3/clu3-sample4.png b/samples/3/clu3-sample4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f224d92697ff05be9092a0421bd42786f0e9ef9 --- /dev/null +++ b/samples/3/clu3-sample4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c823aa98600f0279647a43e4ea78cc605753a7aefad17dacf50367b6a40ed2e +size 424236 diff --git a/samples/4/clu4-sample0.png b/samples/4/clu4-sample0.png index 3855c33e89ff772eff26a3fabfa90cc9c7d9acc1..47593f642d8818e234bb658c8091e9d9d6359544 100644 --- a/samples/4/clu4-sample0.png +++ b/samples/4/clu4-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:574c762c755e59fb0c7ff8bdcd12d03a1737fe13c3b1551471b2d8c5b041093f -size 185229 +oid sha256:d0117215caf6ac1c34aad7e6fdf6957573e13a6910e738a00045f16abde342f6 +size 580612 diff --git a/samples/4/clu4-sample1.png b/samples/4/clu4-sample1.png index abd5cd39cc7c775815a06f9078517d9a2db204ab..57e2383a3f98080f62aed956552237814ba6d2fc 100644 --- a/samples/4/clu4-sample1.png +++ b/samples/4/clu4-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba76dcf2d40b1a797d91020ea562943646c25d1eb93468bfcd0fb74399188de1 -size 240524 +oid sha256:4694d3c3d927ff1b63908e23f6d15dd96745246e8cefd80bf2782e92d03a0e7e +size 182057 diff --git a/samples/4/clu4-sample2.png b/samples/4/clu4-sample2.png index a2889fd9b4e843cebe03deb158918d07beaccb0a..fabd4b8ec42e3f9017d9576b8eb4ef5e2699eee6 100644 --- a/samples/4/clu4-sample2.png +++ b/samples/4/clu4-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd038008e4e7a2b29700d1887cb924a8588ee2b4ba57af94dabb76107ff39918 -size 278722 +oid sha256:4e0a2b6f109bfc616e5a03c1ef7496383e4c1ed82d8c8cf6b84acee6b34eec47 +size 300689 diff --git a/samples/4/clu4-sample3.png b/samples/4/clu4-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ddc734d2b0ad18b98062b408dd1628126d80b4 --- /dev/null +++ b/samples/4/clu4-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecb3e0338ca94fb4b852ae4a5ef79fb9881691a82c40ea45774c386faac7e2b +size 369198 diff --git a/samples/6/clu6-sample1.png b/samples/4/clu4-sample4.png similarity index 100% rename from samples/6/clu6-sample1.png rename to samples/4/clu4-sample4.png diff --git a/samples/5/clu5-sample0.png b/samples/5/clu5-sample0.png index b8da63d11b7fb16d169ab65b7f82b94599e96972..9ba4497498ff39f3d57cf2821a30450a74cea32f 100644 --- a/samples/5/clu5-sample0.png +++ b/samples/5/clu5-sample0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd7100eb8124f8abadb87774d26676f19db798154b0acac0c4ddb52eeac6ff72 -size 205323 +oid sha256:280ba88a3688308766092f7b381716044473c1a54026279b3829cf870865707b +size 455490 diff --git a/samples/5/clu5-sample1.png b/samples/5/clu5-sample1.png index e29ab942011225230683b74bdd8cef206d5ece47..29ba9e40aecd9b74588501a2dad150547b22a360 100644 --- a/samples/5/clu5-sample1.png +++ b/samples/5/clu5-sample1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83f98f0691d3d3d7a0034f5b4eaa3e6408cab6e062fe72517766f68922dfdcd9 -size 227404 +oid sha256:aa957b4d04223fa9ef12a230f0dc818e5372ba9d3b628cafeb6a1bf84d5af282 +size 324154 diff --git a/samples/5/clu5-sample2.png b/samples/5/clu5-sample2.png index 5ab5d7ee53518de2d2e81e631abf7dfdcc17429e..910362aae9787e72adf83ce0b179d020804973af 100644 --- a/samples/5/clu5-sample2.png +++ b/samples/5/clu5-sample2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:155ed2814b18aac036d13faf82e2144e997f5a8599e1abc48479bade21ce72ac -size 417331 +oid sha256:718b0cd4cf9fee83bef136b101ca51d3603b9c80f339829504b95e20ba3783c4 +size 425197 diff --git a/samples/5/clu5-sample3.png b/samples/5/clu5-sample3.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c1719dc4736f4f2f81a6dcdd83335a008898f9 --- /dev/null +++ b/samples/5/clu5-sample3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffbed1d290239b6f6f75027eacbb00c107b95c8dafaf0b7e57792da1c43cf01 +size 370159 diff --git a/samples/5/clu5-sample4.png b/samples/5/clu5-sample4.png new file mode 100644 index 0000000000000000000000000000000000000000..3d9d057edc23f56dd6915855927d1e621e0c804b --- /dev/null +++ b/samples/5/clu5-sample4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5922d92dc177ef1b690b390252838e94ed05efd7ccaee32ec8f11880aa7171a4 +size 348537 diff --git a/samples/6/clu6-sample0.png b/samples/6/clu6-sample0.png deleted file mode 100644 index cdc723ef4725065a29c24a05723c50a2a219c13e..0000000000000000000000000000000000000000 --- a/samples/6/clu6-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed2d44ff0d980fcdf1dcb9c3a9a682b57d2f11eeb562073641c80bc8f38703eb -size 199061 diff --git a/samples/6/clu6-sample2.png b/samples/6/clu6-sample2.png deleted file mode 100644 index e3c64340c8c08ff76300d9046bb45da811a66073..0000000000000000000000000000000000000000 --- a/samples/6/clu6-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f3bb3249b7d81d5c7cb4e022d86fd2b6c09725f47d9139944060508572be01c4 -size 398399 diff --git a/samples/7/clu7-sample0.png b/samples/7/clu7-sample0.png deleted file mode 100644 index f78750d85b341ef6e66951711c9b7cc1b4100233..0000000000000000000000000000000000000000 --- a/samples/7/clu7-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:965120e335bb8cb80a11c3db130a5050ec7de772f39b668706f06e6958c299d9 -size 297809 diff --git a/samples/7/clu7-sample1.png b/samples/7/clu7-sample1.png deleted file mode 100644 index d8b238279162e72956c80f18884c6b2e2d430fb6..0000000000000000000000000000000000000000 --- a/samples/7/clu7-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25059e5e47b441e9cf44b4cc2e9891a3deded777b544dfb3c2a23e639e19227f -size 446250 diff --git a/samples/7/clu7-sample2.png b/samples/7/clu7-sample2.png deleted file mode 100644 index 9c366a9043fb528dfa84230d39ecf8badd3cb969..0000000000000000000000000000000000000000 --- a/samples/7/clu7-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f0afb3c380bd7610390e764bf6fced69446317e17808037fe39384077c23030 -size 425391 diff --git a/samples/8/clu8-sample0.png b/samples/8/clu8-sample0.png deleted file mode 100644 index add6fab228eda34a15f65d52c5d120982c377d63..0000000000000000000000000000000000000000 --- a/samples/8/clu8-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b06ea6aa56d453626891641e467b21511e80285a7c5d4d55e3868ee545230bde -size 301276 diff --git a/samples/8/clu8-sample1.png b/samples/8/clu8-sample1.png deleted file mode 100644 index 0ebfc5e894d526d371a5015e8d53652f46a5693f..0000000000000000000000000000000000000000 --- a/samples/8/clu8-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e17a42307e3a77c3f5b6225b4c38c4a6fd58d3f840d9fce3ad94792a91907c43 -size 287569 diff --git a/samples/8/clu8-sample2.png b/samples/8/clu8-sample2.png deleted file mode 100644 index 8415d91a06f7f46a04325164959ade4d415d75e7..0000000000000000000000000000000000000000 --- a/samples/8/clu8-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:937f0e7544f990dbe67e351c8d3f3f46e849ffd983834c05e7aa4aa40c106859 -size 458671 diff --git a/samples/9/clu9-sample0.png b/samples/9/clu9-sample0.png deleted file mode 100644 index 9cde74657c50189bc3a8bdf2a863f2bdb73c0ae4..0000000000000000000000000000000000000000 --- a/samples/9/clu9-sample0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4805f4d9ded6c97cbc4454ff3f845a84271d11c9ed96f3fef7cdb34aa583707e -size 137544 diff --git a/samples/9/clu9-sample1.png b/samples/9/clu9-sample1.png deleted file mode 100644 index 74e259b4857e871e08cf22b8f309ad1686ed6c84..0000000000000000000000000000000000000000 --- a/samples/9/clu9-sample1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa6617ecbc6a0526ec25153941bb4c42ef8d3eae07564cd214d8e5614a5cdbe2 -size 313871 diff --git a/samples/9/clu9-sample2.png b/samples/9/clu9-sample2.png deleted file mode 100644 index 6f84976ef50d18187ecad8860e87b497eff7df7c..0000000000000000000000000000000000000000 --- a/samples/9/clu9-sample2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca16cd7ee9db1d9e994ab2fceaa76bfc8c9b2ff912d1b8e3189365a8c0ffacd5 -size 145191