Spaces:
Runtime error
Runtime error
Ilija Eftimov
commited on
Commit
·
87591bd
1
Parent(s):
0121fa9
remove nonexistent variable
Browse files
app.py
CHANGED
@@ -12,11 +12,10 @@ image = gr.inputs.Image(shape=(192,192))
|
|
12 |
label = gr.outputs.Label()
|
13 |
|
14 |
examples = []
|
15 |
-
for
|
16 |
-
|
17 |
-
|
18 |
-
|
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 |
|