Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -136,7 +136,7 @@ def choose(choice, embs, ys):
|
|
| 136 |
choice = 0
|
| 137 |
ys.append(choice)
|
| 138 |
img, embs, ys = next_image(embs, ys)
|
| 139 |
-
return {'img':
|
| 140 |
|
| 141 |
css = "div#output-image {height: 768px !important; width: 768px !important; margin:auto;}"
|
| 142 |
with gr.Blocks(css=css) as demo:
|
|
|
|
| 136 |
choice = 0
|
| 137 |
ys.append(choice)
|
| 138 |
img, embs, ys = next_image(embs, ys)
|
| 139 |
+
return {'img': img, 'embs': embs, 'ys': ys}
|
| 140 |
|
| 141 |
css = "div#output-image {height: 768px !important; width: 768px !important; margin:auto;}"
|
| 142 |
with gr.Blocks(css=css) as demo:
|