Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -50,6 +50,6 @@ with gr.Blocks() as demo:
|
|
50 |
display = gr.outputs.Image(type = "filepath", label = "Outfit")
|
51 |
output = gr.outputs.Textbox(label = "Suggestion")
|
52 |
btn = gr.Button(label = "Run")
|
53 |
-
btn.click(
|
54 |
if __name__ == "__main__":
|
55 |
demo.launch()
|
|
|
50 |
display = gr.outputs.Image(type = "filepath", label = "Outfit")
|
51 |
output = gr.outputs.Textbox(label = "Suggestion")
|
52 |
btn = gr.Button(label = "Run")
|
53 |
+
btn.click(fashion, inputs = [inp], outputs = [inp, output, display])
|
54 |
if __name__ == "__main__":
|
55 |
demo.launch()
|