Kimhi commited on
Commit
0343a48
·
verified ·
1 Parent(s): 6122911

Add files using upload-large-folder tool

Browse files
Files changed (49) hide show
  1. README.md +99 -0
  2. images/.DS_Store +0 -0
  3. images/train/Terms_of_use.txt +7 -0
  4. images/val/.DS_Store +0 -0
  5. images/val/Terms_of_use.txt +7 -0
  6. images/val/val/.DS_Store +0 -0
  7. images/val/val/img/.DS_Store +0 -0
  8. reports/gallery/.DS_Store +0 -0
  9. reports/gallery/clean_val/index.html +90 -0
  10. reports/gallery/easy_val/index.html +90 -0
  11. reports/gallery/hard_val/01_img11.png +3 -0
  12. reports/gallery/hard_val/02_img21.png +3 -0
  13. reports/gallery/hard_val/03_img25.png +3 -0
  14. reports/gallery/hard_val/04_img22.png +3 -0
  15. reports/gallery/hard_val/06_img6.png +3 -0
  16. reports/gallery/hard_val/07_img23.png +3 -0
  17. reports/gallery/hard_val/08_img14.png +3 -0
  18. reports/gallery/hard_val/09_img17.png +3 -0
  19. reports/gallery/hard_val/10_img10.png +3 -0
  20. reports/gallery/hard_val/11_img12.png +3 -0
  21. reports/gallery/hard_val/12_img18.png +3 -0
  22. reports/gallery/hard_val/13_img1.png +3 -0
  23. reports/gallery/hard_val/14_img8.png +3 -0
  24. reports/gallery/hard_val/16_img7.png +3 -0
  25. reports/gallery/hard_val/17_img13.png +3 -0
  26. reports/gallery/hard_val/18_img20.png +3 -0
  27. reports/gallery/hard_val/20_img16.png +3 -0
  28. reports/gallery/hard_val/index.html +90 -0
  29. reports/gallery/medium_val/01_img11.png +3 -0
  30. reports/gallery/medium_val/02_img21.png +3 -0
  31. reports/gallery/medium_val/03_img25.png +3 -0
  32. reports/gallery/medium_val/04_img22.png +3 -0
  33. reports/gallery/medium_val/05_img24.png +3 -0
  34. reports/gallery/medium_val/06_img6.png +3 -0
  35. reports/gallery/medium_val/07_img23.png +3 -0
  36. reports/gallery/medium_val/08_img14.png +3 -0
  37. reports/gallery/medium_val/09_img17.png +3 -0
  38. reports/gallery/medium_val/10_img10.png +3 -0
  39. reports/gallery/medium_val/11_img12.png +3 -0
  40. reports/gallery/medium_val/12_img18.png +3 -0
  41. reports/gallery/medium_val/13_img1.png +3 -0
  42. reports/gallery/medium_val/14_img8.png +3 -0
  43. reports/gallery/medium_val/15_img2.png +3 -0
  44. reports/gallery/medium_val/16_img7.png +3 -0
  45. reports/gallery/medium_val/17_img13.png +3 -0
  46. reports/gallery/medium_val/18_img20.png +3 -0
  47. reports/gallery/medium_val/19_img15.png +3 -0
  48. reports/gallery/medium_val/20_img16.png +3 -0
  49. reports/gallery/medium_val/index.html +90 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language: en
4
+ tags:
5
+ - computer-vision
6
+ - instance-segmentation
7
+ - dataset
8
+ - sim2real
9
+ - viper
10
+ - noisy-labels
11
+ ---
12
+
13
+ # VIPER (clean) — images + **clean** COCO-format instance segmentation annotations
14
+
15
+ This dataset repo packages the VIPER images together with **clean** COCO *instance segmentation* annotations, as used in:
16
+
17
+ - Paper: **Noisy Annotations in Semantic Segmentation** (Kimhi et al., 2025)
18
+ - arXiv: https://arxiv.org/abs/2406.10891
19
+ - Code/tools for noisy-label benchmarks: https://github.com/mkimhi/noisy_labels
20
+
21
+ If you are looking for the **noisy** benchmark labels (annotations-only), see:
22
+ - **VIPER-N**: https://huggingface.co/datasets/kimhi/viper-n
23
+
24
+ ## What’s inside
25
+
26
+ ### Images
27
+ - `images/train/...` (VIPER train images)
28
+ - `images/val/...` (VIPER val images)
29
+
30
+ ### Clean annotations (COCO instances)
31
+ - `coco/annotations/instances_train2017.json`
32
+ - `coco/annotations/instances_val2017.json`
33
+
34
+ ### Qualitative gallery (optional)
35
+ - `reports/gallery/*/index.html`
36
+
37
+ ## Loading code snippets
38
+
39
+ ### 1) Download VIPER from the Hub
40
+ ```python
41
+ from huggingface_hub import snapshot_download
42
+
43
+ viper_root = snapshot_download("kimhi/viper", repo_type="dataset")
44
+
45
+ images_root = f"{viper_root}/images"
46
+ ann_train = f"{viper_root}/coco/annotations/instances_train2017.json"
47
+ ann_val = f"{viper_root}/coco/annotations/instances_val2017.json"
48
+
49
+ print(images_root)
50
+ print(ann_val)
51
+ ```
52
+
53
+ ### 2) Read COCO annotations with `pycocotools`
54
+ ```python
55
+ from pycocotools.coco import COCO
56
+
57
+ coco = COCO(ann_val)
58
+ img_id = coco.getImgIds()[0]
59
+ img = coco.loadImgs([img_id])[0]
60
+ print(img)
61
+
62
+ ann_ids = coco.getAnnIds(imgIds=[img_id])
63
+ anns = coco.loadAnns(ann_ids)
64
+ print("#instances in image:", len(anns))
65
+ ```
66
+
67
+ ## Using VIPER with VIPER-N (noisy labels)
68
+ Download both repos and swap the annotation JSONs:
69
+
70
+ ```python
71
+ from huggingface_hub import snapshot_download
72
+
73
+ viper_root = snapshot_download("kimhi/viper", repo_type="dataset")
74
+ viper_n_root = snapshot_download("kimhi/viper-n", repo_type="dataset")
75
+
76
+ images_root = f"{viper_root}/images"
77
+ ann_val_noisy = f"{viper_n_root}/benchmark/annotations/instances_val2017.json"
78
+ ```
79
+
80
+ ## Applying the noise recipe to other datasets
81
+ See the paper repo for scripts/recipes to generate/apply noisy labels to other COCO-format instance segmentation datasets:
82
+ - https://github.com/mkimhi/noisy_labels
83
+
84
+ ## Dataset viewer
85
+ Hugging Face’s built-in dataset viewer does not currently render COCO instance-segmentation JSONs directly.
86
+ You can still browse images in the **Files** tab, and use `pycocotools`/Detectron2/MMDetection to visualize masks.
87
+
88
+ ## Citation
89
+ ```bibtex
90
+ @misc{kimhi2025noisyannotationssemanticsegmentation,
91
+ title={Noisy Annotations in Semantic Segmentation},
92
+ author={Moshe Kimhi and Omer Kerem and Eden Grad and Ehud Rivlin and Chaim Baskin},
93
+ year={2025},
94
+ eprint={2406.10891},
95
+ }
96
+ ```
97
+
98
+ ## License
99
+ **CC BY-NC 4.0** — Attribution–NonCommercial 4.0 International.
images/.DS_Store ADDED
Binary file (6.15 kB). View file
 
images/train/Terms_of_use.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ The data we provide is for research and educational purposes only.
2
+ Commercial use is prohibited. As a courtesy towards Take-Two
3
+ Interactive and Rockstar Games, we request that you buy Grand Theft
4
+ Auto V if you use data from the provided benchmark suite.
5
+
6
+ We also request that you cite the Playing for Benchmarks paper (ICCV
7
+ 2017) if you use the data.
images/val/.DS_Store ADDED
Binary file (6.15 kB). View file
 
images/val/Terms_of_use.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ The data we provide is for research and educational purposes only.
2
+ Commercial use is prohibited. As a courtesy towards Take-Two
3
+ Interactive and Rockstar Games, we request that you buy Grand Theft
4
+ Auto V if you use data from the provided benchmark suite.
5
+
6
+ We also request that you cite the Playing for Benchmarks paper (ICCV
7
+ 2017) if you use the data.
images/val/val/.DS_Store ADDED
Binary file (6.15 kB). View file
 
images/val/val/img/.DS_Store ADDED
Binary file (10.2 kB). View file
 
reports/gallery/.DS_Store ADDED
Binary file (10.2 kB). View file
 
reports/gallery/clean_val/index.html ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html><head><meta charset='utf-8'>
3
+ <title>viper | clean_val</title>
4
+ <style>body{font-family:system-ui,Arial;margin:16px} .grid{display:flex;flex-wrap:wrap;gap:12px} .item{width:360px} img{width:100%;height:auto;border:1px solid #ddd}</style>
5
+ </head><body>
6
+ <h2>viper | clean_val</h2>
7
+ <p>Files: 20 (click to open full image)</p>
8
+ <div class='grid'>
9
+ <div class='item'>
10
+ <a href='01_img11.png' target='_blank'><img src='01_img11.png' loading='lazy'></a>
11
+ <div style='font-size:12px;color:#555'>01_img11.png</div>
12
+ </div>
13
+ <div class='item'>
14
+ <a href='02_img21.png' target='_blank'><img src='02_img21.png' loading='lazy'></a>
15
+ <div style='font-size:12px;color:#555'>02_img21.png</div>
16
+ </div>
17
+ <div class='item'>
18
+ <a href='03_img25.png' target='_blank'><img src='03_img25.png' loading='lazy'></a>
19
+ <div style='font-size:12px;color:#555'>03_img25.png</div>
20
+ </div>
21
+ <div class='item'>
22
+ <a href='04_img22.png' target='_blank'><img src='04_img22.png' loading='lazy'></a>
23
+ <div style='font-size:12px;color:#555'>04_img22.png</div>
24
+ </div>
25
+ <div class='item'>
26
+ <a href='05_img24.png' target='_blank'><img src='05_img24.png' loading='lazy'></a>
27
+ <div style='font-size:12px;color:#555'>05_img24.png</div>
28
+ </div>
29
+ <div class='item'>
30
+ <a href='06_img6.png' target='_blank'><img src='06_img6.png' loading='lazy'></a>
31
+ <div style='font-size:12px;color:#555'>06_img6.png</div>
32
+ </div>
33
+ <div class='item'>
34
+ <a href='07_img23.png' target='_blank'><img src='07_img23.png' loading='lazy'></a>
35
+ <div style='font-size:12px;color:#555'>07_img23.png</div>
36
+ </div>
37
+ <div class='item'>
38
+ <a href='08_img14.png' target='_blank'><img src='08_img14.png' loading='lazy'></a>
39
+ <div style='font-size:12px;color:#555'>08_img14.png</div>
40
+ </div>
41
+ <div class='item'>
42
+ <a href='09_img17.png' target='_blank'><img src='09_img17.png' loading='lazy'></a>
43
+ <div style='font-size:12px;color:#555'>09_img17.png</div>
44
+ </div>
45
+ <div class='item'>
46
+ <a href='10_img10.png' target='_blank'><img src='10_img10.png' loading='lazy'></a>
47
+ <div style='font-size:12px;color:#555'>10_img10.png</div>
48
+ </div>
49
+ <div class='item'>
50
+ <a href='11_img12.png' target='_blank'><img src='11_img12.png' loading='lazy'></a>
51
+ <div style='font-size:12px;color:#555'>11_img12.png</div>
52
+ </div>
53
+ <div class='item'>
54
+ <a href='12_img18.png' target='_blank'><img src='12_img18.png' loading='lazy'></a>
55
+ <div style='font-size:12px;color:#555'>12_img18.png</div>
56
+ </div>
57
+ <div class='item'>
58
+ <a href='13_img1.png' target='_blank'><img src='13_img1.png' loading='lazy'></a>
59
+ <div style='font-size:12px;color:#555'>13_img1.png</div>
60
+ </div>
61
+ <div class='item'>
62
+ <a href='14_img8.png' target='_blank'><img src='14_img8.png' loading='lazy'></a>
63
+ <div style='font-size:12px;color:#555'>14_img8.png</div>
64
+ </div>
65
+ <div class='item'>
66
+ <a href='15_img2.png' target='_blank'><img src='15_img2.png' loading='lazy'></a>
67
+ <div style='font-size:12px;color:#555'>15_img2.png</div>
68
+ </div>
69
+ <div class='item'>
70
+ <a href='16_img7.png' target='_blank'><img src='16_img7.png' loading='lazy'></a>
71
+ <div style='font-size:12px;color:#555'>16_img7.png</div>
72
+ </div>
73
+ <div class='item'>
74
+ <a href='17_img13.png' target='_blank'><img src='17_img13.png' loading='lazy'></a>
75
+ <div style='font-size:12px;color:#555'>17_img13.png</div>
76
+ </div>
77
+ <div class='item'>
78
+ <a href='18_img20.png' target='_blank'><img src='18_img20.png' loading='lazy'></a>
79
+ <div style='font-size:12px;color:#555'>18_img20.png</div>
80
+ </div>
81
+ <div class='item'>
82
+ <a href='19_img15.png' target='_blank'><img src='19_img15.png' loading='lazy'></a>
83
+ <div style='font-size:12px;color:#555'>19_img15.png</div>
84
+ </div>
85
+ <div class='item'>
86
+ <a href='20_img16.png' target='_blank'><img src='20_img16.png' loading='lazy'></a>
87
+ <div style='font-size:12px;color:#555'>20_img16.png</div>
88
+ </div>
89
+ </div>
90
+ </body></html>
reports/gallery/easy_val/index.html ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html><head><meta charset='utf-8'>
3
+ <title>viper | easy_val</title>
4
+ <style>body{font-family:system-ui,Arial;margin:16px} .grid{display:flex;flex-wrap:wrap;gap:12px} .item{width:360px} img{width:100%;height:auto;border:1px solid #ddd}</style>
5
+ </head><body>
6
+ <h2>viper | easy_val</h2>
7
+ <p>Files: 20 (click to open full image)</p>
8
+ <div class='grid'>
9
+ <div class='item'>
10
+ <a href='01_img11.png' target='_blank'><img src='01_img11.png' loading='lazy'></a>
11
+ <div style='font-size:12px;color:#555'>01_img11.png</div>
12
+ </div>
13
+ <div class='item'>
14
+ <a href='02_img21.png' target='_blank'><img src='02_img21.png' loading='lazy'></a>
15
+ <div style='font-size:12px;color:#555'>02_img21.png</div>
16
+ </div>
17
+ <div class='item'>
18
+ <a href='03_img25.png' target='_blank'><img src='03_img25.png' loading='lazy'></a>
19
+ <div style='font-size:12px;color:#555'>03_img25.png</div>
20
+ </div>
21
+ <div class='item'>
22
+ <a href='04_img22.png' target='_blank'><img src='04_img22.png' loading='lazy'></a>
23
+ <div style='font-size:12px;color:#555'>04_img22.png</div>
24
+ </div>
25
+ <div class='item'>
26
+ <a href='05_img24.png' target='_blank'><img src='05_img24.png' loading='lazy'></a>
27
+ <div style='font-size:12px;color:#555'>05_img24.png</div>
28
+ </div>
29
+ <div class='item'>
30
+ <a href='06_img6.png' target='_blank'><img src='06_img6.png' loading='lazy'></a>
31
+ <div style='font-size:12px;color:#555'>06_img6.png</div>
32
+ </div>
33
+ <div class='item'>
34
+ <a href='07_img23.png' target='_blank'><img src='07_img23.png' loading='lazy'></a>
35
+ <div style='font-size:12px;color:#555'>07_img23.png</div>
36
+ </div>
37
+ <div class='item'>
38
+ <a href='08_img14.png' target='_blank'><img src='08_img14.png' loading='lazy'></a>
39
+ <div style='font-size:12px;color:#555'>08_img14.png</div>
40
+ </div>
41
+ <div class='item'>
42
+ <a href='09_img17.png' target='_blank'><img src='09_img17.png' loading='lazy'></a>
43
+ <div style='font-size:12px;color:#555'>09_img17.png</div>
44
+ </div>
45
+ <div class='item'>
46
+ <a href='10_img10.png' target='_blank'><img src='10_img10.png' loading='lazy'></a>
47
+ <div style='font-size:12px;color:#555'>10_img10.png</div>
48
+ </div>
49
+ <div class='item'>
50
+ <a href='11_img12.png' target='_blank'><img src='11_img12.png' loading='lazy'></a>
51
+ <div style='font-size:12px;color:#555'>11_img12.png</div>
52
+ </div>
53
+ <div class='item'>
54
+ <a href='12_img18.png' target='_blank'><img src='12_img18.png' loading='lazy'></a>
55
+ <div style='font-size:12px;color:#555'>12_img18.png</div>
56
+ </div>
57
+ <div class='item'>
58
+ <a href='13_img1.png' target='_blank'><img src='13_img1.png' loading='lazy'></a>
59
+ <div style='font-size:12px;color:#555'>13_img1.png</div>
60
+ </div>
61
+ <div class='item'>
62
+ <a href='14_img8.png' target='_blank'><img src='14_img8.png' loading='lazy'></a>
63
+ <div style='font-size:12px;color:#555'>14_img8.png</div>
64
+ </div>
65
+ <div class='item'>
66
+ <a href='15_img2.png' target='_blank'><img src='15_img2.png' loading='lazy'></a>
67
+ <div style='font-size:12px;color:#555'>15_img2.png</div>
68
+ </div>
69
+ <div class='item'>
70
+ <a href='16_img7.png' target='_blank'><img src='16_img7.png' loading='lazy'></a>
71
+ <div style='font-size:12px;color:#555'>16_img7.png</div>
72
+ </div>
73
+ <div class='item'>
74
+ <a href='17_img13.png' target='_blank'><img src='17_img13.png' loading='lazy'></a>
75
+ <div style='font-size:12px;color:#555'>17_img13.png</div>
76
+ </div>
77
+ <div class='item'>
78
+ <a href='18_img20.png' target='_blank'><img src='18_img20.png' loading='lazy'></a>
79
+ <div style='font-size:12px;color:#555'>18_img20.png</div>
80
+ </div>
81
+ <div class='item'>
82
+ <a href='19_img15.png' target='_blank'><img src='19_img15.png' loading='lazy'></a>
83
+ <div style='font-size:12px;color:#555'>19_img15.png</div>
84
+ </div>
85
+ <div class='item'>
86
+ <a href='20_img16.png' target='_blank'><img src='20_img16.png' loading='lazy'></a>
87
+ <div style='font-size:12px;color:#555'>20_img16.png</div>
88
+ </div>
89
+ </div>
90
+ </body></html>
reports/gallery/hard_val/01_img11.png ADDED

Git LFS Details

  • SHA256: 6dd28933e9b842cb59236273f8281726b11971785a8e532cab178db0073e6e7f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
reports/gallery/hard_val/02_img21.png ADDED

Git LFS Details

  • SHA256: a89e9fb8e257c81448d11bfed06674290087eb95ebda620720c6a60b352d7f48
  • Pointer size: 132 Bytes
  • Size of remote file: 2.07 MB
reports/gallery/hard_val/03_img25.png ADDED

Git LFS Details

  • SHA256: 0a42bb5d14d1c68657bfc6d2a3cf8efd79aba2d4e5195f88550de71084db171f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
reports/gallery/hard_val/04_img22.png ADDED

Git LFS Details

  • SHA256: cc215f82a7d0b7dcdde935c88c7207dbd0cc5f8d6102cb720b98cbfa78d6c1ed
  • Pointer size: 132 Bytes
  • Size of remote file: 2.12 MB
reports/gallery/hard_val/06_img6.png ADDED

Git LFS Details

  • SHA256: 4219beb007c842512e07ece2a271009da6877c441df4e9ce6cfc2c7702beab14
  • Pointer size: 132 Bytes
  • Size of remote file: 2.32 MB
reports/gallery/hard_val/07_img23.png ADDED

Git LFS Details

  • SHA256: e7e3b9a1397b9ee895105502f465ab722f64cb2a5b52d5641ea51aea9f4db126
  • Pointer size: 132 Bytes
  • Size of remote file: 1.15 MB
reports/gallery/hard_val/08_img14.png ADDED

Git LFS Details

  • SHA256: 4a4bc143cae55713a74061b69df39134a86d2c16189e0d5b33c839785767f43c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
reports/gallery/hard_val/09_img17.png ADDED

Git LFS Details

  • SHA256: b39032c658d24739004b6f027ecd38ba7df892870e92e33829de69890f5a2e2f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.73 MB
reports/gallery/hard_val/10_img10.png ADDED

Git LFS Details

  • SHA256: 40815fe624fe036b8aaf3e3ab6b375b5c425883886b5257b78be456529847886
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
reports/gallery/hard_val/11_img12.png ADDED

Git LFS Details

  • SHA256: 94fb5fecf01e762b7f2b32b58acbc162cd9d757797a1a657c8fdb2408ce0fa86
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
reports/gallery/hard_val/12_img18.png ADDED

Git LFS Details

  • SHA256: 89a4335f285735e8591761b4d477dfa182c88fcbfc9387a0945ff88754d07845
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
reports/gallery/hard_val/13_img1.png ADDED

Git LFS Details

  • SHA256: 61df34237176f8c7612e757cce5c3f5b37902de712e2ad791286edf4ce7ba104
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
reports/gallery/hard_val/14_img8.png ADDED

Git LFS Details

  • SHA256: d3df989a6af4af820979d784bb23995adb141827e064ae6a89696dbfce649f9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
reports/gallery/hard_val/16_img7.png ADDED

Git LFS Details

  • SHA256: 3764e2e409dda33e76976d2c432424b62131464db6459cc519fd9b47a11be4a8
  • Pointer size: 132 Bytes
  • Size of remote file: 2.08 MB
reports/gallery/hard_val/17_img13.png ADDED

Git LFS Details

  • SHA256: 99e9c72dcd5b10e030b4a27587d68f83bd199b4b87a3b2eddbb82a07f2fd0ea3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
reports/gallery/hard_val/18_img20.png ADDED

Git LFS Details

  • SHA256: 8285b00efb7a946d6e790709e957770a82372e6ded826a470d36b8eada886964
  • Pointer size: 132 Bytes
  • Size of remote file: 1.93 MB
reports/gallery/hard_val/20_img16.png ADDED

Git LFS Details

  • SHA256: f70d4f23a49f266d66a54b503cae65e8aae50ada072a696ba7585e5c79057b39
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
reports/gallery/hard_val/index.html ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html><head><meta charset='utf-8'>
3
+ <title>viper | hard_val</title>
4
+ <style>body{font-family:system-ui,Arial;margin:16px} .grid{display:flex;flex-wrap:wrap;gap:12px} .item{width:360px} img{width:100%;height:auto;border:1px solid #ddd}</style>
5
+ </head><body>
6
+ <h2>viper | hard_val</h2>
7
+ <p>Files: 20 (click to open full image)</p>
8
+ <div class='grid'>
9
+ <div class='item'>
10
+ <a href='01_img11.png' target='_blank'><img src='01_img11.png' loading='lazy'></a>
11
+ <div style='font-size:12px;color:#555'>01_img11.png</div>
12
+ </div>
13
+ <div class='item'>
14
+ <a href='02_img21.png' target='_blank'><img src='02_img21.png' loading='lazy'></a>
15
+ <div style='font-size:12px;color:#555'>02_img21.png</div>
16
+ </div>
17
+ <div class='item'>
18
+ <a href='03_img25.png' target='_blank'><img src='03_img25.png' loading='lazy'></a>
19
+ <div style='font-size:12px;color:#555'>03_img25.png</div>
20
+ </div>
21
+ <div class='item'>
22
+ <a href='04_img22.png' target='_blank'><img src='04_img22.png' loading='lazy'></a>
23
+ <div style='font-size:12px;color:#555'>04_img22.png</div>
24
+ </div>
25
+ <div class='item'>
26
+ <a href='05_img24.png' target='_blank'><img src='05_img24.png' loading='lazy'></a>
27
+ <div style='font-size:12px;color:#555'>05_img24.png</div>
28
+ </div>
29
+ <div class='item'>
30
+ <a href='06_img6.png' target='_blank'><img src='06_img6.png' loading='lazy'></a>
31
+ <div style='font-size:12px;color:#555'>06_img6.png</div>
32
+ </div>
33
+ <div class='item'>
34
+ <a href='07_img23.png' target='_blank'><img src='07_img23.png' loading='lazy'></a>
35
+ <div style='font-size:12px;color:#555'>07_img23.png</div>
36
+ </div>
37
+ <div class='item'>
38
+ <a href='08_img14.png' target='_blank'><img src='08_img14.png' loading='lazy'></a>
39
+ <div style='font-size:12px;color:#555'>08_img14.png</div>
40
+ </div>
41
+ <div class='item'>
42
+ <a href='09_img17.png' target='_blank'><img src='09_img17.png' loading='lazy'></a>
43
+ <div style='font-size:12px;color:#555'>09_img17.png</div>
44
+ </div>
45
+ <div class='item'>
46
+ <a href='10_img10.png' target='_blank'><img src='10_img10.png' loading='lazy'></a>
47
+ <div style='font-size:12px;color:#555'>10_img10.png</div>
48
+ </div>
49
+ <div class='item'>
50
+ <a href='11_img12.png' target='_blank'><img src='11_img12.png' loading='lazy'></a>
51
+ <div style='font-size:12px;color:#555'>11_img12.png</div>
52
+ </div>
53
+ <div class='item'>
54
+ <a href='12_img18.png' target='_blank'><img src='12_img18.png' loading='lazy'></a>
55
+ <div style='font-size:12px;color:#555'>12_img18.png</div>
56
+ </div>
57
+ <div class='item'>
58
+ <a href='13_img1.png' target='_blank'><img src='13_img1.png' loading='lazy'></a>
59
+ <div style='font-size:12px;color:#555'>13_img1.png</div>
60
+ </div>
61
+ <div class='item'>
62
+ <a href='14_img8.png' target='_blank'><img src='14_img8.png' loading='lazy'></a>
63
+ <div style='font-size:12px;color:#555'>14_img8.png</div>
64
+ </div>
65
+ <div class='item'>
66
+ <a href='15_img2.png' target='_blank'><img src='15_img2.png' loading='lazy'></a>
67
+ <div style='font-size:12px;color:#555'>15_img2.png</div>
68
+ </div>
69
+ <div class='item'>
70
+ <a href='16_img7.png' target='_blank'><img src='16_img7.png' loading='lazy'></a>
71
+ <div style='font-size:12px;color:#555'>16_img7.png</div>
72
+ </div>
73
+ <div class='item'>
74
+ <a href='17_img13.png' target='_blank'><img src='17_img13.png' loading='lazy'></a>
75
+ <div style='font-size:12px;color:#555'>17_img13.png</div>
76
+ </div>
77
+ <div class='item'>
78
+ <a href='18_img20.png' target='_blank'><img src='18_img20.png' loading='lazy'></a>
79
+ <div style='font-size:12px;color:#555'>18_img20.png</div>
80
+ </div>
81
+ <div class='item'>
82
+ <a href='19_img15.png' target='_blank'><img src='19_img15.png' loading='lazy'></a>
83
+ <div style='font-size:12px;color:#555'>19_img15.png</div>
84
+ </div>
85
+ <div class='item'>
86
+ <a href='20_img16.png' target='_blank'><img src='20_img16.png' loading='lazy'></a>
87
+ <div style='font-size:12px;color:#555'>20_img16.png</div>
88
+ </div>
89
+ </div>
90
+ </body></html>
reports/gallery/medium_val/01_img11.png ADDED

Git LFS Details

  • SHA256: 5eaa1ec0c1c0b0ac4be82765ac0386659f18b615cfa935867e961f3e9327ced1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
reports/gallery/medium_val/02_img21.png ADDED

Git LFS Details

  • SHA256: c97d72e00ed4e5e09ff2269206e765fe1cde338864f612d6fbdc0864bfe16e4b
  • Pointer size: 132 Bytes
  • Size of remote file: 2.07 MB
reports/gallery/medium_val/03_img25.png ADDED

Git LFS Details

  • SHA256: cb3df8dfceadd2e246d54c5f1f60b7a608cb97eaac182e9dae0e159b238a97ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
reports/gallery/medium_val/04_img22.png ADDED

Git LFS Details

  • SHA256: 56a01a8f2993c08cc88822bb14de272db53bd989c8b3340507b52846364554a2
  • Pointer size: 132 Bytes
  • Size of remote file: 2.12 MB
reports/gallery/medium_val/05_img24.png ADDED

Git LFS Details

  • SHA256: 82477e50534f660e01f8fd7f5b8c2c9d2e74cc65c5d333b87bd384e3ae18636b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
reports/gallery/medium_val/06_img6.png ADDED

Git LFS Details

  • SHA256: cb4343f748a1f3e3c6d6a5ca15adda13ca9419f5c58306ceaaa79bdbc32fb4a8
  • Pointer size: 132 Bytes
  • Size of remote file: 2.32 MB
reports/gallery/medium_val/07_img23.png ADDED

Git LFS Details

  • SHA256: 66cf215fad64018476884a25bee52ff3f36297d47a86b8580c20e58fb9387e00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
reports/gallery/medium_val/08_img14.png ADDED

Git LFS Details

  • SHA256: 91cf55952be400288459b0e34b8d5dd22092c62fd7656bd59d2666369f29097b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
reports/gallery/medium_val/09_img17.png ADDED

Git LFS Details

  • SHA256: ef873263d877a715e9cf1172da6b402e286a11cda36865ce1074a7dee99f9177
  • Pointer size: 132 Bytes
  • Size of remote file: 1.73 MB
reports/gallery/medium_val/10_img10.png ADDED

Git LFS Details

  • SHA256: 6b354196c2661c169c890c02d6ff064e2b6af8a5acc28a88e535403b767c28f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
reports/gallery/medium_val/11_img12.png ADDED

Git LFS Details

  • SHA256: 7449ae4ee71bc2041191f3e392416ab0b5a0d3847332dc16e91393ae588826a2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
reports/gallery/medium_val/12_img18.png ADDED

Git LFS Details

  • SHA256: c456ca15d2b404a2003168db8fbd0e6e3ae8e187dfd004256b050d95dffba485
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
reports/gallery/medium_val/13_img1.png ADDED

Git LFS Details

  • SHA256: 1a6e655ef94bf2749f27ab30a0375c3fe8bb25948ec7c2f04c86d1832db4bb83
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
reports/gallery/medium_val/14_img8.png ADDED

Git LFS Details

  • SHA256: 431d34bfbfb661e343c2f95c56b12f2ba9fd3d7f9396af47bbd5967b258f92e0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
reports/gallery/medium_val/15_img2.png ADDED

Git LFS Details

  • SHA256: 13d59b4f1409263ec5e4d491d4367872c7ced01d0ae5075f89cc9f4400a9d03c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
reports/gallery/medium_val/16_img7.png ADDED

Git LFS Details

  • SHA256: ce194e4927ce58e4f5c73fc7da0c3b1ebe9cf3621c2076d67d947c69189a40ac
  • Pointer size: 132 Bytes
  • Size of remote file: 2.07 MB
reports/gallery/medium_val/17_img13.png ADDED

Git LFS Details

  • SHA256: 493dd8a04a90ba845d0906d2a62d014825b86e1fc90ef56b541f19b6f775e8f3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
reports/gallery/medium_val/18_img20.png ADDED

Git LFS Details

  • SHA256: 6bcf07e4c6ab78fff62f67c2f214500a506c6dda3b6b8ea0f447a056de9425db
  • Pointer size: 132 Bytes
  • Size of remote file: 1.92 MB
reports/gallery/medium_val/19_img15.png ADDED

Git LFS Details

  • SHA256: a3bd4eb3910462959008dc3d84b264113e10e7a70171798952db27afba126c95
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
reports/gallery/medium_val/20_img16.png ADDED

Git LFS Details

  • SHA256: 96ea2a630904fa409f723a19eca097d50789ad0fe9d1c6b6811ccb1012e15fbf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
reports/gallery/medium_val/index.html ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html><head><meta charset='utf-8'>
3
+ <title>viper | medium_val</title>
4
+ <style>body{font-family:system-ui,Arial;margin:16px} .grid{display:flex;flex-wrap:wrap;gap:12px} .item{width:360px} img{width:100%;height:auto;border:1px solid #ddd}</style>
5
+ </head><body>
6
+ <h2>viper | medium_val</h2>
7
+ <p>Files: 20 (click to open full image)</p>
8
+ <div class='grid'>
9
+ <div class='item'>
10
+ <a href='01_img11.png' target='_blank'><img src='01_img11.png' loading='lazy'></a>
11
+ <div style='font-size:12px;color:#555'>01_img11.png</div>
12
+ </div>
13
+ <div class='item'>
14
+ <a href='02_img21.png' target='_blank'><img src='02_img21.png' loading='lazy'></a>
15
+ <div style='font-size:12px;color:#555'>02_img21.png</div>
16
+ </div>
17
+ <div class='item'>
18
+ <a href='03_img25.png' target='_blank'><img src='03_img25.png' loading='lazy'></a>
19
+ <div style='font-size:12px;color:#555'>03_img25.png</div>
20
+ </div>
21
+ <div class='item'>
22
+ <a href='04_img22.png' target='_blank'><img src='04_img22.png' loading='lazy'></a>
23
+ <div style='font-size:12px;color:#555'>04_img22.png</div>
24
+ </div>
25
+ <div class='item'>
26
+ <a href='05_img24.png' target='_blank'><img src='05_img24.png' loading='lazy'></a>
27
+ <div style='font-size:12px;color:#555'>05_img24.png</div>
28
+ </div>
29
+ <div class='item'>
30
+ <a href='06_img6.png' target='_blank'><img src='06_img6.png' loading='lazy'></a>
31
+ <div style='font-size:12px;color:#555'>06_img6.png</div>
32
+ </div>
33
+ <div class='item'>
34
+ <a href='07_img23.png' target='_blank'><img src='07_img23.png' loading='lazy'></a>
35
+ <div style='font-size:12px;color:#555'>07_img23.png</div>
36
+ </div>
37
+ <div class='item'>
38
+ <a href='08_img14.png' target='_blank'><img src='08_img14.png' loading='lazy'></a>
39
+ <div style='font-size:12px;color:#555'>08_img14.png</div>
40
+ </div>
41
+ <div class='item'>
42
+ <a href='09_img17.png' target='_blank'><img src='09_img17.png' loading='lazy'></a>
43
+ <div style='font-size:12px;color:#555'>09_img17.png</div>
44
+ </div>
45
+ <div class='item'>
46
+ <a href='10_img10.png' target='_blank'><img src='10_img10.png' loading='lazy'></a>
47
+ <div style='font-size:12px;color:#555'>10_img10.png</div>
48
+ </div>
49
+ <div class='item'>
50
+ <a href='11_img12.png' target='_blank'><img src='11_img12.png' loading='lazy'></a>
51
+ <div style='font-size:12px;color:#555'>11_img12.png</div>
52
+ </div>
53
+ <div class='item'>
54
+ <a href='12_img18.png' target='_blank'><img src='12_img18.png' loading='lazy'></a>
55
+ <div style='font-size:12px;color:#555'>12_img18.png</div>
56
+ </div>
57
+ <div class='item'>
58
+ <a href='13_img1.png' target='_blank'><img src='13_img1.png' loading='lazy'></a>
59
+ <div style='font-size:12px;color:#555'>13_img1.png</div>
60
+ </div>
61
+ <div class='item'>
62
+ <a href='14_img8.png' target='_blank'><img src='14_img8.png' loading='lazy'></a>
63
+ <div style='font-size:12px;color:#555'>14_img8.png</div>
64
+ </div>
65
+ <div class='item'>
66
+ <a href='15_img2.png' target='_blank'><img src='15_img2.png' loading='lazy'></a>
67
+ <div style='font-size:12px;color:#555'>15_img2.png</div>
68
+ </div>
69
+ <div class='item'>
70
+ <a href='16_img7.png' target='_blank'><img src='16_img7.png' loading='lazy'></a>
71
+ <div style='font-size:12px;color:#555'>16_img7.png</div>
72
+ </div>
73
+ <div class='item'>
74
+ <a href='17_img13.png' target='_blank'><img src='17_img13.png' loading='lazy'></a>
75
+ <div style='font-size:12px;color:#555'>17_img13.png</div>
76
+ </div>
77
+ <div class='item'>
78
+ <a href='18_img20.png' target='_blank'><img src='18_img20.png' loading='lazy'></a>
79
+ <div style='font-size:12px;color:#555'>18_img20.png</div>
80
+ </div>
81
+ <div class='item'>
82
+ <a href='19_img15.png' target='_blank'><img src='19_img15.png' loading='lazy'></a>
83
+ <div style='font-size:12px;color:#555'>19_img15.png</div>
84
+ </div>
85
+ <div class='item'>
86
+ <a href='20_img16.png' target='_blank'><img src='20_img16.png' loading='lazy'></a>
87
+ <div style='font-size:12px;color:#555'>20_img16.png</div>
88
+ </div>
89
+ </div>
90
+ </body></html>