Clocksp commited on
Commit
2d3db9c
·
verified ·
1 Parent(s): 8ce7c1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -253,11 +253,11 @@ with gr.Blocks() as demo:
253
 
254
 
255
  gr.Examples(
256
- example = [
257
- ["images/NORMAL.jpeg", "NORMAL"],
258
- ["images/VIRAL.jpeg", "VIRAL"],
259
- ["images/BACT.jpeg", "BACTERIAL"],
260
- ]
261
  inputs=[Image, Label],
262
  label="Try examples",
263
  )
 
253
 
254
 
255
  gr.Examples(
256
+ examples = [
257
+ ["images/NORMAL.jpeg", "NORMAL"],
258
+ ["images/VIRAL.jpeg", "VIRAL"],
259
+ ["images/BACT.jpeg", "BACTERIAL"],
260
+ ],
261
  inputs=[Image, Label],
262
  label="Try examples",
263
  )