Ilija Eftimov commited on
Commit
87591bd
·
1 Parent(s): 0121fa9

remove nonexistent variable

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -12,11 +12,10 @@ image = gr.inputs.Image(shape=(192,192))
12
  label = gr.outputs.Label()
13
 
14
  examples = []
15
- for t in templates:
16
- for n in range(1,4):
17
- examples.append(f"campanelle/{n}.jpg")
18
- examples.append(f"macaroni/{n}.jpg")
19
- examples.append(f"fusilli/{n}.jpg")
20
 
21
  title = "Pasta Recognition"
22
 
 
12
  label = gr.outputs.Label()
13
 
14
  examples = []
15
+ for n in range(1,4):
16
+ examples.append(f"campanelle/{n}.jpg")
17
+ examples.append(f"macaroni/{n}.jpg")
18
+ examples.append(f"fusilli/{n}.jpg")
 
19
 
20
  title = "Pasta Recognition"
21