Update app.py
Browse files
app.py
CHANGED
@@ -93,8 +93,11 @@ interface = gr.Interface(
|
|
93 |
outputs=[
|
94 |
gr.Label("Acoustic Prediction", label="Acoustic Prediction"),
|
95 |
gr.Label("Transcribed Text", label="Transcribed Text"),
|
96 |
-
gr.Image(type='pil')
|
97 |
-
]
|
|
|
|
|
|
|
98 |
)
|
99 |
|
100 |
interface.launch()
|
|
|
93 |
outputs=[
|
94 |
gr.Label("Acoustic Prediction", label="Acoustic Prediction"),
|
95 |
gr.Label("Transcribed Text", label="Transcribed Text"),
|
96 |
+
gr.Image(type='pil', label="Generated Image")
|
97 |
+
],
|
98 |
+
title="Affective Virtual Environments",
|
99 |
+
description="Create an AVE using your voice."
|
100 |
+
)
|
101 |
)
|
102 |
|
103 |
interface.launch()
|