Spaces:
Running
Running
kovacsvi
commited on
Commit
·
32f8ddd
1
Parent(s):
11d2424
replaced placeholders
Browse files
app.py
CHANGED
@@ -227,13 +227,13 @@ with gr.Blocks() as demo:
|
|
227 |
with gr.Column(scale=7):
|
228 |
piechart = gr.Plot()
|
229 |
with gr.Column(scale=3):
|
230 |
-
gr.Markdown(
|
231 |
|
232 |
with gr.Row():
|
233 |
with gr.Column(scale=7):
|
234 |
plot = gr.Plot()
|
235 |
with gr.Column(scale=3):
|
236 |
-
gr.Markdown(
|
237 |
|
238 |
with gr.Row():
|
239 |
with gr.Column(scale=7):
|
@@ -243,13 +243,13 @@ with gr.Blocks() as demo:
|
|
243 |
wrap=True # important
|
244 |
)
|
245 |
with gr.Column(scale=3):
|
246 |
-
gr.Markdown(
|
247 |
|
248 |
with gr.Row():
|
249 |
with gr.Column(scale=7):
|
250 |
heatmap = gr.Plot()
|
251 |
with gr.Column(scale=3):
|
252 |
-
gr.Markdown(
|
253 |
|
254 |
with gr.Row():
|
255 |
model_info = gr.Markdown()
|
|
|
227 |
with gr.Column(scale=7):
|
228 |
piechart = gr.Plot()
|
229 |
with gr.Column(scale=3):
|
230 |
+
gr.Markdown("The following pie chart shows the average probabilities of all emotions associated with the entire text.")
|
231 |
|
232 |
with gr.Row():
|
233 |
with gr.Column(scale=7):
|
234 |
plot = gr.Plot()
|
235 |
with gr.Column(scale=3):
|
236 |
+
gr.Markdown("The bar plot represents the relative frequency of emotion predictions at the sentence level.")
|
237 |
|
238 |
with gr.Row():
|
239 |
with gr.Column(scale=7):
|
|
|
243 |
wrap=True # important
|
244 |
)
|
245 |
with gr.Column(scale=3):
|
246 |
+
gr.Markdown("The table displays the predicted emotion and its confidence value for each sentence in the text.")
|
247 |
|
248 |
with gr.Row():
|
249 |
with gr.Column(scale=7):
|
250 |
heatmap = gr.Plot()
|
251 |
with gr.Column(scale=3):
|
252 |
+
gr.Markdown("The table displays the predicted emotion and its confidence value for each sentence in the text")
|
253 |
|
254 |
with gr.Row():
|
255 |
model_info = gr.Markdown()
|