├── .gitignore ├── LICENSE ├── README.md ├── attacks ├── __init__.py ├── curls_targeted.py └── curls_untargeted.py ├── bmodel.py ├── bmodels ├── ensemble.py └── inceptionv3 │ └── inceptionv3.py ├── figures ├── curls_whey.png ├── example_figure_targeted.png └── example_figure_untargeted.png ├── fmodel.py ├── fmodels ├── ensemble.py └── resnet │ └── resnet101.py ├── requirements.txt ├── targeted_attack.py ├── test_images ├── 000.npy ├── 001.npy ├── 002.npy ├── 003.npy ├── 004.npy ├── 005.npy ├── 006.npy ├── 007.npy ├── 008.npy ├── 009.npy ├── 010.npy ├── 011.npy ├── 012.npy ├── 013.npy ├── 014.npy ├── 015.npy ├── 016.npy ├── 017.npy ├── 018.npy ├── 019.npy ├── 020.npy ├── 021.npy ├── 022.npy ├── 023.npy ├── 024.npy ├── 025.npy ├── 026.npy ├── 027.npy ├── 028.npy ├── 029.npy ├── 030.npy ├── 031.npy ├── 032.npy ├── 033.npy ├── 034.npy ├── 035.npy ├── 036.npy ├── 037.npy ├── 038.npy ├── 039.npy ├── 040.npy ├── 041.npy ├── 042.npy ├── 043.npy ├── 044.npy ├── 045.npy ├── 046.npy ├── 047.npy ├── 048.npy ├── 049.npy ├── 050.npy ├── 051.npy ├── 052.npy ├── 053.npy ├── 054.npy ├── 055.npy ├── 056.npy ├── 057.npy ├── 058.npy ├── 059.npy ├── 060.npy ├── 061.npy ├── 062.npy ├── 063.npy ├── 064.npy ├── 065.npy ├── 066.npy ├── 067.npy ├── 068.npy ├── 069.npy ├── 070.npy ├── 071.npy ├── 072.npy ├── 073.npy ├── 074.npy ├── 075.npy ├── 076.npy ├── 077.npy ├── 078.npy ├── 079.npy ├── 080.npy ├── 081.npy ├── 082.npy ├── 083.npy ├── 084.npy ├── 085.npy ├── 086.npy ├── 087.npy ├── 088.npy ├── 089.npy ├── 090.npy ├── 091.npy ├── 092.npy ├── 093.npy ├── 094.npy ├── 095.npy ├── 096.npy ├── 097.npy ├── 098.npy ├── 099.npy ├── 100.npy ├── 101.npy ├── 102.npy ├── 103.npy ├── 104.npy ├── 105.npy ├── 106.npy ├── 107.npy ├── 108.npy ├── 109.npy ├── 110.npy ├── 111.npy ├── 112.npy ├── 113.npy ├── 114.npy ├── 115.npy ├── 116.npy ├── 117.npy ├── 118.npy ├── 119.npy ├── 120.npy ├── 121.npy ├── 122.npy ├── 123.npy ├── 124.npy ├── 125.npy ├── 126.npy ├── 127.npy ├── 128.npy ├── 129.npy ├── 130.npy ├── 131.npy ├── 132.npy ├── 133.npy ├── 134.npy ├── 135.npy ├── 136.npy ├── 137.npy ├── 138.npy ├── 139.npy ├── 140.npy ├── 141.npy ├── 142.npy ├── 143.npy ├── 144.npy ├── 145.npy ├── 146.npy ├── 147.npy ├── 148.npy ├── 149.npy ├── 150.npy ├── 151.npy ├── 152.npy ├── 153.npy ├── 154.npy ├── 155.npy ├── 156.npy ├── 157.npy ├── 158.npy ├── 159.npy ├── 160.npy ├── 161.npy ├── 162.npy ├── 163.npy ├── 164.npy ├── 165.npy ├── 166.npy ├── 167.npy ├── 168.npy ├── 169.npy ├── 170.npy ├── 171.npy ├── 172.npy ├── 173.npy ├── 174.npy ├── 175.npy ├── 176.npy ├── 177.npy ├── 178.npy ├── 179.npy ├── 180.npy ├── 181.npy ├── 182.npy ├── 183.npy ├── 184.npy ├── 185.npy ├── 186.npy ├── 187.npy ├── 188.npy ├── 189.npy ├── 190.npy ├── 191.npy ├── 192.npy ├── 193.npy ├── 194.npy ├── 195.npy ├── 196.npy ├── 197.npy ├── 198.npy ├── 199.npy └── labels.yml ├── untargeted_attack.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/README.md -------------------------------------------------------------------------------- /attacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/attacks/__init__.py -------------------------------------------------------------------------------- /attacks/curls_targeted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/attacks/curls_targeted.py -------------------------------------------------------------------------------- /attacks/curls_untargeted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/attacks/curls_untargeted.py -------------------------------------------------------------------------------- /bmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/bmodel.py -------------------------------------------------------------------------------- /bmodels/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/bmodels/ensemble.py -------------------------------------------------------------------------------- /bmodels/inceptionv3/inceptionv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/bmodels/inceptionv3/inceptionv3.py -------------------------------------------------------------------------------- /figures/curls_whey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/figures/curls_whey.png -------------------------------------------------------------------------------- /figures/example_figure_targeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/figures/example_figure_targeted.png -------------------------------------------------------------------------------- /figures/example_figure_untargeted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/figures/example_figure_untargeted.png -------------------------------------------------------------------------------- /fmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/fmodel.py -------------------------------------------------------------------------------- /fmodels/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/fmodels/ensemble.py -------------------------------------------------------------------------------- /fmodels/resnet/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/fmodels/resnet/resnet101.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | foolbox==1.3.2 2 | pyyaml==3.12 3 | -------------------------------------------------------------------------------- /targeted_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/targeted_attack.py -------------------------------------------------------------------------------- /test_images/000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/000.npy -------------------------------------------------------------------------------- /test_images/001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/001.npy -------------------------------------------------------------------------------- /test_images/002.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/002.npy -------------------------------------------------------------------------------- /test_images/003.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/003.npy -------------------------------------------------------------------------------- /test_images/004.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/004.npy -------------------------------------------------------------------------------- /test_images/005.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/005.npy -------------------------------------------------------------------------------- /test_images/006.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/006.npy -------------------------------------------------------------------------------- /test_images/007.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/007.npy -------------------------------------------------------------------------------- /test_images/008.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/008.npy -------------------------------------------------------------------------------- /test_images/009.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/009.npy -------------------------------------------------------------------------------- /test_images/010.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/010.npy -------------------------------------------------------------------------------- /test_images/011.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/011.npy -------------------------------------------------------------------------------- /test_images/012.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/012.npy -------------------------------------------------------------------------------- /test_images/013.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/013.npy -------------------------------------------------------------------------------- /test_images/014.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/014.npy -------------------------------------------------------------------------------- /test_images/015.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/015.npy -------------------------------------------------------------------------------- /test_images/016.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/016.npy -------------------------------------------------------------------------------- /test_images/017.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/017.npy -------------------------------------------------------------------------------- /test_images/018.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/018.npy -------------------------------------------------------------------------------- /test_images/019.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/019.npy -------------------------------------------------------------------------------- /test_images/020.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/020.npy -------------------------------------------------------------------------------- /test_images/021.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/021.npy -------------------------------------------------------------------------------- /test_images/022.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/022.npy -------------------------------------------------------------------------------- /test_images/023.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/023.npy -------------------------------------------------------------------------------- /test_images/024.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/024.npy -------------------------------------------------------------------------------- /test_images/025.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/025.npy -------------------------------------------------------------------------------- /test_images/026.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/026.npy -------------------------------------------------------------------------------- /test_images/027.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/027.npy -------------------------------------------------------------------------------- /test_images/028.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/028.npy -------------------------------------------------------------------------------- /test_images/029.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/029.npy -------------------------------------------------------------------------------- /test_images/030.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/030.npy -------------------------------------------------------------------------------- /test_images/031.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/031.npy -------------------------------------------------------------------------------- /test_images/032.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/032.npy -------------------------------------------------------------------------------- /test_images/033.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/033.npy -------------------------------------------------------------------------------- /test_images/034.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/034.npy -------------------------------------------------------------------------------- /test_images/035.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/035.npy -------------------------------------------------------------------------------- /test_images/036.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/036.npy -------------------------------------------------------------------------------- /test_images/037.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/037.npy -------------------------------------------------------------------------------- /test_images/038.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/038.npy -------------------------------------------------------------------------------- /test_images/039.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/039.npy -------------------------------------------------------------------------------- /test_images/040.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/040.npy -------------------------------------------------------------------------------- /test_images/041.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/041.npy -------------------------------------------------------------------------------- /test_images/042.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/042.npy -------------------------------------------------------------------------------- /test_images/043.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/043.npy -------------------------------------------------------------------------------- /test_images/044.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/044.npy -------------------------------------------------------------------------------- /test_images/045.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/045.npy -------------------------------------------------------------------------------- /test_images/046.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/046.npy -------------------------------------------------------------------------------- /test_images/047.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/047.npy -------------------------------------------------------------------------------- /test_images/048.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/048.npy -------------------------------------------------------------------------------- /test_images/049.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/049.npy -------------------------------------------------------------------------------- /test_images/050.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/050.npy -------------------------------------------------------------------------------- /test_images/051.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/051.npy -------------------------------------------------------------------------------- /test_images/052.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/052.npy -------------------------------------------------------------------------------- /test_images/053.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/053.npy -------------------------------------------------------------------------------- /test_images/054.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/054.npy -------------------------------------------------------------------------------- /test_images/055.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/055.npy -------------------------------------------------------------------------------- /test_images/056.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/056.npy -------------------------------------------------------------------------------- /test_images/057.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/057.npy -------------------------------------------------------------------------------- /test_images/058.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/058.npy -------------------------------------------------------------------------------- /test_images/059.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/059.npy -------------------------------------------------------------------------------- /test_images/060.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/060.npy -------------------------------------------------------------------------------- /test_images/061.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/061.npy -------------------------------------------------------------------------------- /test_images/062.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/062.npy -------------------------------------------------------------------------------- /test_images/063.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/063.npy -------------------------------------------------------------------------------- /test_images/064.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/064.npy -------------------------------------------------------------------------------- /test_images/065.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/065.npy -------------------------------------------------------------------------------- /test_images/066.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/066.npy -------------------------------------------------------------------------------- /test_images/067.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/067.npy -------------------------------------------------------------------------------- /test_images/068.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/068.npy -------------------------------------------------------------------------------- /test_images/069.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/069.npy -------------------------------------------------------------------------------- /test_images/070.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/070.npy -------------------------------------------------------------------------------- /test_images/071.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/071.npy -------------------------------------------------------------------------------- /test_images/072.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/072.npy -------------------------------------------------------------------------------- /test_images/073.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/073.npy -------------------------------------------------------------------------------- /test_images/074.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/074.npy -------------------------------------------------------------------------------- /test_images/075.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/075.npy -------------------------------------------------------------------------------- /test_images/076.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/076.npy -------------------------------------------------------------------------------- /test_images/077.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/077.npy -------------------------------------------------------------------------------- /test_images/078.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/078.npy -------------------------------------------------------------------------------- /test_images/079.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/079.npy -------------------------------------------------------------------------------- /test_images/080.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/080.npy -------------------------------------------------------------------------------- /test_images/081.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/081.npy -------------------------------------------------------------------------------- /test_images/082.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/082.npy -------------------------------------------------------------------------------- /test_images/083.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/083.npy -------------------------------------------------------------------------------- /test_images/084.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/084.npy -------------------------------------------------------------------------------- /test_images/085.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/085.npy -------------------------------------------------------------------------------- /test_images/086.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/086.npy -------------------------------------------------------------------------------- /test_images/087.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/087.npy -------------------------------------------------------------------------------- /test_images/088.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/088.npy -------------------------------------------------------------------------------- /test_images/089.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/089.npy -------------------------------------------------------------------------------- /test_images/090.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/090.npy -------------------------------------------------------------------------------- /test_images/091.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/091.npy -------------------------------------------------------------------------------- /test_images/092.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/092.npy -------------------------------------------------------------------------------- /test_images/093.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/093.npy -------------------------------------------------------------------------------- /test_images/094.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/094.npy -------------------------------------------------------------------------------- /test_images/095.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/095.npy -------------------------------------------------------------------------------- /test_images/096.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/096.npy -------------------------------------------------------------------------------- /test_images/097.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/097.npy -------------------------------------------------------------------------------- /test_images/098.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/098.npy -------------------------------------------------------------------------------- /test_images/099.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/099.npy -------------------------------------------------------------------------------- /test_images/100.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/100.npy -------------------------------------------------------------------------------- /test_images/101.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/101.npy -------------------------------------------------------------------------------- /test_images/102.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/102.npy -------------------------------------------------------------------------------- /test_images/103.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/103.npy -------------------------------------------------------------------------------- /test_images/104.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/104.npy -------------------------------------------------------------------------------- /test_images/105.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/105.npy -------------------------------------------------------------------------------- /test_images/106.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/106.npy -------------------------------------------------------------------------------- /test_images/107.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/107.npy -------------------------------------------------------------------------------- /test_images/108.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/108.npy -------------------------------------------------------------------------------- /test_images/109.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/109.npy -------------------------------------------------------------------------------- /test_images/110.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/110.npy -------------------------------------------------------------------------------- /test_images/111.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/111.npy -------------------------------------------------------------------------------- /test_images/112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/112.npy -------------------------------------------------------------------------------- /test_images/113.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/113.npy -------------------------------------------------------------------------------- /test_images/114.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/114.npy -------------------------------------------------------------------------------- /test_images/115.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/115.npy -------------------------------------------------------------------------------- /test_images/116.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/116.npy -------------------------------------------------------------------------------- /test_images/117.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/117.npy -------------------------------------------------------------------------------- /test_images/118.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/118.npy -------------------------------------------------------------------------------- /test_images/119.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/119.npy -------------------------------------------------------------------------------- /test_images/120.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/120.npy -------------------------------------------------------------------------------- /test_images/121.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/121.npy -------------------------------------------------------------------------------- /test_images/122.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/122.npy -------------------------------------------------------------------------------- /test_images/123.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/123.npy -------------------------------------------------------------------------------- /test_images/124.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/124.npy -------------------------------------------------------------------------------- /test_images/125.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/125.npy -------------------------------------------------------------------------------- /test_images/126.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/126.npy -------------------------------------------------------------------------------- /test_images/127.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/127.npy -------------------------------------------------------------------------------- /test_images/128.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/128.npy -------------------------------------------------------------------------------- /test_images/129.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/129.npy -------------------------------------------------------------------------------- /test_images/130.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/130.npy -------------------------------------------------------------------------------- /test_images/131.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/131.npy -------------------------------------------------------------------------------- /test_images/132.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/132.npy -------------------------------------------------------------------------------- /test_images/133.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/133.npy -------------------------------------------------------------------------------- /test_images/134.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/134.npy -------------------------------------------------------------------------------- /test_images/135.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/135.npy -------------------------------------------------------------------------------- /test_images/136.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/136.npy -------------------------------------------------------------------------------- /test_images/137.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/137.npy -------------------------------------------------------------------------------- /test_images/138.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/138.npy -------------------------------------------------------------------------------- /test_images/139.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/139.npy -------------------------------------------------------------------------------- /test_images/140.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/140.npy -------------------------------------------------------------------------------- /test_images/141.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/141.npy -------------------------------------------------------------------------------- /test_images/142.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/142.npy -------------------------------------------------------------------------------- /test_images/143.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/143.npy -------------------------------------------------------------------------------- /test_images/144.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/144.npy -------------------------------------------------------------------------------- /test_images/145.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/145.npy -------------------------------------------------------------------------------- /test_images/146.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/146.npy -------------------------------------------------------------------------------- /test_images/147.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/147.npy -------------------------------------------------------------------------------- /test_images/148.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/148.npy -------------------------------------------------------------------------------- /test_images/149.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/149.npy -------------------------------------------------------------------------------- /test_images/150.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/150.npy -------------------------------------------------------------------------------- /test_images/151.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/151.npy -------------------------------------------------------------------------------- /test_images/152.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/152.npy -------------------------------------------------------------------------------- /test_images/153.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/153.npy -------------------------------------------------------------------------------- /test_images/154.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/154.npy -------------------------------------------------------------------------------- /test_images/155.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/155.npy -------------------------------------------------------------------------------- /test_images/156.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/156.npy -------------------------------------------------------------------------------- /test_images/157.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/157.npy -------------------------------------------------------------------------------- /test_images/158.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/158.npy -------------------------------------------------------------------------------- /test_images/159.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/159.npy -------------------------------------------------------------------------------- /test_images/160.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/160.npy -------------------------------------------------------------------------------- /test_images/161.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/161.npy -------------------------------------------------------------------------------- /test_images/162.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/162.npy -------------------------------------------------------------------------------- /test_images/163.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/163.npy -------------------------------------------------------------------------------- /test_images/164.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/164.npy -------------------------------------------------------------------------------- /test_images/165.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/165.npy -------------------------------------------------------------------------------- /test_images/166.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/166.npy -------------------------------------------------------------------------------- /test_images/167.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/167.npy -------------------------------------------------------------------------------- /test_images/168.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/168.npy -------------------------------------------------------------------------------- /test_images/169.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/169.npy -------------------------------------------------------------------------------- /test_images/170.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/170.npy -------------------------------------------------------------------------------- /test_images/171.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/171.npy -------------------------------------------------------------------------------- /test_images/172.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/172.npy -------------------------------------------------------------------------------- /test_images/173.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/173.npy -------------------------------------------------------------------------------- /test_images/174.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/174.npy -------------------------------------------------------------------------------- /test_images/175.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/175.npy -------------------------------------------------------------------------------- /test_images/176.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/176.npy -------------------------------------------------------------------------------- /test_images/177.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/177.npy -------------------------------------------------------------------------------- /test_images/178.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/178.npy -------------------------------------------------------------------------------- /test_images/179.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/179.npy -------------------------------------------------------------------------------- /test_images/180.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/180.npy -------------------------------------------------------------------------------- /test_images/181.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/181.npy -------------------------------------------------------------------------------- /test_images/182.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/182.npy -------------------------------------------------------------------------------- /test_images/183.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/183.npy -------------------------------------------------------------------------------- /test_images/184.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/184.npy -------------------------------------------------------------------------------- /test_images/185.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/185.npy -------------------------------------------------------------------------------- /test_images/186.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/186.npy -------------------------------------------------------------------------------- /test_images/187.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/187.npy -------------------------------------------------------------------------------- /test_images/188.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/188.npy -------------------------------------------------------------------------------- /test_images/189.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/189.npy -------------------------------------------------------------------------------- /test_images/190.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/190.npy -------------------------------------------------------------------------------- /test_images/191.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/191.npy -------------------------------------------------------------------------------- /test_images/192.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/192.npy -------------------------------------------------------------------------------- /test_images/193.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/193.npy -------------------------------------------------------------------------------- /test_images/194.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/194.npy -------------------------------------------------------------------------------- /test_images/195.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/195.npy -------------------------------------------------------------------------------- /test_images/196.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/196.npy -------------------------------------------------------------------------------- /test_images/197.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/197.npy -------------------------------------------------------------------------------- /test_images/198.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/198.npy -------------------------------------------------------------------------------- /test_images/199.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/199.npy -------------------------------------------------------------------------------- /test_images/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/test_images/labels.yml -------------------------------------------------------------------------------- /untargeted_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/untargeted_attack.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walegahaha/Curls-Whey/HEAD/utils.py --------------------------------------------------------------------------------