Spaces:
Runtime error
Runtime error
santarabantoosoo commited on
Commit ·
f861c07
1
Parent(s): 75396f9
debug
Browse files
app.py
CHANGED
|
@@ -263,11 +263,11 @@ with gr.Blocks() as demo:
|
|
| 263 |
|
| 264 |
with gr.TabItem("Sentiment analysis"):
|
| 265 |
text_input = gr.Radio(choices = ['Sentiment distribution', 'Word clouds', 'Time series'], label = 'Choose ur plot')
|
| 266 |
-
sent_plot = gr.Plot(
|
| 267 |
sent_button = gr.Button("Submit")
|
| 268 |
|
| 269 |
sent_button.click(display_plot, inputs=text_input, outputs= sent_plot)
|
| 270 |
|
| 271 |
|
| 272 |
-
demo.launch();
|
| 273 |
|
|
|
|
| 263 |
|
| 264 |
with gr.TabItem("Sentiment analysis"):
|
| 265 |
text_input = gr.Radio(choices = ['Sentiment distribution', 'Word clouds', 'Time series'], label = 'Choose ur plot')
|
| 266 |
+
sent_plot = gr.Plot()
|
| 267 |
sent_button = gr.Button("Submit")
|
| 268 |
|
| 269 |
sent_button.click(display_plot, inputs=text_input, outputs= sent_plot)
|
| 270 |
|
| 271 |
|
| 272 |
+
demo.launch(debug=True);
|
| 273 |
|