dalexanderch commited on
Commit
eebb69d
·
1 Parent(s): ed1ab29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -184,7 +184,7 @@ demo = gr.Interface(
184
  title="Adversarial attack demonstration",
185
  description="A random image from the chosen dataset will be perturbated with the chosen attack type and both the original image and the perturbated image will be displayed. The Epsilon parameter controls the aggressiveness of the attack.",
186
  inputs=[
187
- gr.Radio(choices=["MNIST", "CIFAR10"], label="Dataset"),
188
  gr.Radio(choices=["FGSM", "I-FGSM", "I-LL-FGSM"], label="Attack", value="FGSM"),
189
  gr.Slider(value=15, minimum=0, maximum=255, step=1, label="Epsilon"),
190
  ],
 
184
  title="Adversarial attack demonstration",
185
  description="A random image from the chosen dataset will be perturbated with the chosen attack type and both the original image and the perturbated image will be displayed. The Epsilon parameter controls the aggressiveness of the attack.",
186
  inputs=[
187
+ gr.Radio(choices=["MNIST", "CIFAR10"], label="Dataset", value="MNIST"),
188
  gr.Radio(choices=["FGSM", "I-FGSM", "I-LL-FGSM"], label="Attack", value="FGSM"),
189
  gr.Slider(value=15, minimum=0, maximum=255, step=1, label="Epsilon"),
190
  ],