Spaces:
Build error
Build error
Commit
·
66f15df
1
Parent(s):
1840e00
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,12 @@ stt_demo = gr.Interface.load(
|
|
19 |
image_classification = pipeline("image-classification")
|
20 |
|
21 |
# Create the tabbed interface
|
22 |
-
demo = gr.TabbedInterface([tts_demo, stt_demo, gr.Interface.from_pipeline(image_classification)], ["Paint", "Text", "Image"]
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
# Launch the interface
|
25 |
demo.launch()
|
|
|
19 |
image_classification = pipeline("image-classification")
|
20 |
|
21 |
# Create the tabbed interface
|
22 |
+
demo = gr.TabbedInterface([tts_demo, stt_demo, gr.Interface.from_pipeline(image_classification)], ["Paint", "Text", "Image"])
|
23 |
+
css = """
|
24 |
+
body{
|
25 |
+
background-color: grey
|
26 |
+
}
|
27 |
+
"""
|
28 |
|
29 |
# Launch the interface
|
30 |
demo.launch()
|