Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,10 +63,13 @@ def predict(image):
|
|
| 63 |
|
| 64 |
return text, audio
|
| 65 |
|
|
|
|
|
|
|
| 66 |
demo = gr.Interface(
|
| 67 |
fn=predict,
|
| 68 |
inputs=gr.Image(type="pil"),
|
| 69 |
-
outputs=['text', gr.Audio(type="numpy")]
|
|
|
|
| 70 |
)
|
| 71 |
|
| 72 |
demo.launch()
|
|
|
|
| 63 |
|
| 64 |
return text, audio
|
| 65 |
|
| 66 |
+
# theme = gr.themes.Default(primary_hue="blue")
|
| 67 |
+
|
| 68 |
demo = gr.Interface(
|
| 69 |
fn=predict,
|
| 70 |
inputs=gr.Image(type="pil"),
|
| 71 |
+
outputs=['text', gr.Audio(type="numpy")],
|
| 72 |
+
css=".gradio-container {background-color: blue}"
|
| 73 |
)
|
| 74 |
|
| 75 |
demo.launch()
|