lunadebruyne commited on
Commit
cbb22ed
·
1 Parent(s): 62ef56e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +78 -71
app.py CHANGED
@@ -386,81 +386,88 @@ with gr.Blocks() as demo:
386
  gr.Markdown("""
387
  """)
388
  with gr.Row():
389
- with gr.Tab("Sentence"):
390
- gr.Markdown("""
391
- """)
392
- with gr.Row():
393
- with gr.Column():
394
- input = gr.Textbox(
395
- label="Enter a sentence",
396
- value="Jaaah! Volgende vakantie Barcelona en na het zomerseizoen naar de Algarve",
397
- lines=1)
398
- send_btn = gr.Button("Send")
399
- output = gr.Textbox()
400
- send_btn.click(fn=inference_sentence, inputs=input, outputs=output)
401
-
402
- with gr.Tab("Dataset"):
403
  gr.Markdown("""
404
- _As we are currently updating this demo, submitting your own data is unavailable for the moment._
405
- _Try out the showcase mode._
406
  """)
407
- with gr.Row():
408
- with gr.Column(min_width=100):
409
- input_file = gr.File(
410
- label="Upload a dataset")
411
- input_checks = gr.CheckboxGroup(
412
- ["emotion frequencies", "emotion distribution over time", "peaks", "topics"],
413
- label = "Select options")
414
- send_btn = gr.Button("Submit data")
415
- demo_btn = gr.Button("Showcase with example data", variant="primary")
416
- with gr.Column(min_width=100):
417
- gr.Markdown("""
418
- #### Data format
419
- The data should be in tsv-format with two named columns: the first column (id) should contain the sentence IDs, and the second column (text) should contain the actual texts. Optionally, there is a third column named 'date', which specifies the date associated with the text (e.g., tweet date). This column is necessary when the options 'emotion distribution over time' and 'peaks' are selected. For now, we only accept files with maximum 400 sentences and a limit of 300 tokens per sentence.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
 
421
- #### Options
422
- **Emotion frequencies** outputs a bar plot with the prediction frequencies of each emotion category (anger, fear, joy, love, sadness or neutral).
423
- **Emotion distribution over time** outputs a line plot that visualises the frequency of predicted emotions over time for each emotion category.
424
- **Peaks** outputs a step graph that only shows the significant fluctuations (upwards and downwards) in emotion frequencies over time.
425
- **Topics** uses [BERTopic](https://maartengr.github.io/BERTopic/index.html) to find topics in the datasets, and outputs a bar plot that shows the emotion distribution per topic.
426
 
427
- #### Run in showcase mode or use your own data
428
- Try out the demo in showcase mode, which uses example data (609,206 tweets about the COVID-19 pandemic) with all the options provided by the demo, or upload your own dataset.
429
- """)
430
- with gr.Row():
431
- with gr.Column():
432
- gr.Markdown("""
433
- ___
434
- """)
435
- with gr.Row():
436
- with gr.Column():
437
- output_markdown = gr.Markdown("""
438
- ### Output
439
- """, visible=False)
440
-
441
- message = gr.Textbox(label="Message", visible=False)
442
-
443
- output_file = gr.File(label="Predictions", visible=False)
444
- next_button_freq = gr.Button("Show emotion frequencies", visible=False)
445
-
446
- output_plot = gr.Plot(show_label=False, visible=False).style(container=True)
447
- next_button_dist = gr.Button("Show emotion distribution over time", visible=False)
448
-
449
- output_dist = gr.Plot(show_label=False, visible=False)
450
- next_button_peaks = gr.Button("Show peaks", visible=False)
451
-
452
- output_peaks = gr.Plot(visible=False)
453
- next_button_topics = gr.Button("Show topics", visible=False)
454
-
455
- output_topics = gr.Plot(show_label=False, visible=False)
456
-
457
- #send_btn.click(fn=file, inputs=[input_file,input_checks], outputs=[output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
458
- next_button_freq.click(fn=freq, inputs=[output_file,input_checks], outputs=[output_plot,next_button_dist,next_button_peaks,next_button_topics])
459
- next_button_dist.click(fn=dist, inputs=[output_file,input_checks], outputs=[output_dist,next_button_peaks,next_button_topics])
460
- next_button_peaks.click(fn=peaks, inputs=[output_file,input_checks], outputs=[output_peaks,next_button_topics])
461
- next_button_topics.click(fn=topics, inputs=[output_file,input_checks], outputs=output_topics)
462
- send_btn.click(fn=unavailable, inputs=[input_file,input_checks], outputs=[output_markdown,message])
463
- demo_btn.click(fn=showcase, inputs=[input_file], outputs=[output_markdown,message,output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
464
 
465
 
466
  with gr.Row():
 
386
  gr.Markdown("""
387
  """)
388
  with gr.Row():
389
+ with gr.Column(scale=1, min_width=50):
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  gr.Markdown("""
 
 
391
  """)
392
+ with gr.Column(scale=6):
393
+ with gr.Tab("Sentence"):
394
+ gr.Markdown("""
395
+ """)
396
+ with gr.Row():
397
+ with gr.Column():
398
+ input = gr.Textbox(
399
+ label="Enter a sentence",
400
+ value="Jaaah! Volgende vakantie Barcelona en na het zomerseizoen naar de Algarve",
401
+ lines=1)
402
+ send_btn = gr.Button("Send")
403
+ output = gr.Textbox()
404
+ send_btn.click(fn=inference_sentence, inputs=input, outputs=output)
405
+
406
+ with gr.Tab("Dataset"):
407
+ gr.Markdown("""
408
+ _As we are currently updating this demo, submitting your own data is unavailable for the moment._
409
+ _Try out the showcase mode._
410
+ """)
411
+ with gr.Row():
412
+ with gr.Column(scale=0.75):
413
+ input_file = gr.File(
414
+ label="Upload a dataset")
415
+ input_checks = gr.CheckboxGroup(
416
+ ["emotion frequencies", "emotion distribution over time", "peaks", "topics"],
417
+ label = "Select options")
418
+ send_btn = gr.Button("Submit data")
419
+ demo_btn = gr.Button("Showcase with example data", variant="primary")
420
+ with gr.Column(scale=1):
421
+ gr.Markdown("""
422
+ #### Data format
423
+ The data should be in tsv-format with two named columns: the first column (id) should contain the sentence IDs, and the second column (text) should contain the actual texts. Optionally, there is a third column named 'date', which specifies the date associated with the text (e.g., tweet date). This column is necessary when the options 'emotion distribution over time' and 'peaks' are selected. For now, we only accept files with maximum 400 sentences and a limit of 300 tokens per sentence.
424
+
425
+ #### Options
426
+ **Emotion frequencies** outputs a bar plot with the prediction frequencies of each emotion category (anger, fear, joy, love, sadness or neutral).
427
+ **Emotion distribution over time** outputs a line plot that visualises the frequency of predicted emotions over time for each emotion category.
428
+ **Peaks** outputs a step graph that only shows the significant fluctuations (upwards and downwards) in emotion frequencies over time.
429
+ **Topics** uses [BERTopic](https://maartengr.github.io/BERTopic/index.html) to find topics in the datasets, and outputs a bar plot that shows the emotion distribution per topic.
430
+
431
+ #### Run in showcase mode or use your own data
432
+ Try out the demo in showcase mode, which uses example data (609,206 tweets about the COVID-19 pandemic) with all the options provided by the demo, or upload your own dataset.
433
+ """)
434
+ with gr.Row():
435
+ with gr.Column():
436
+ gr.Markdown("""
437
+ ___
438
+ """)
439
+ with gr.Row():
440
+ with gr.Column():
441
+ output_markdown = gr.Markdown("""
442
+ ### Output
443
+ """, visible=False)
444
+
445
+ message = gr.Textbox(label="Message", visible=False)
446
 
447
+ output_file = gr.File(label="Predictions", visible=False)
448
+ next_button_freq = gr.Button("Show emotion frequencies", visible=False)
 
 
 
449
 
450
+ output_plot = gr.Plot(show_label=False, visible=False).style(container=True)
451
+ next_button_dist = gr.Button("Show emotion distribution over time", visible=False)
452
+
453
+ output_dist = gr.Plot(show_label=False, visible=False)
454
+ next_button_peaks = gr.Button("Show peaks", visible=False)
455
+
456
+ output_peaks = gr.Plot(visible=False)
457
+ next_button_topics = gr.Button("Show topics", visible=False)
458
+
459
+ output_topics = gr.Plot(show_label=False, visible=False)
460
+
461
+ #send_btn.click(fn=file, inputs=[input_file,input_checks], outputs=[output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
462
+ next_button_freq.click(fn=freq, inputs=[output_file,input_checks], outputs=[output_plot,next_button_dist,next_button_peaks,next_button_topics])
463
+ next_button_dist.click(fn=dist, inputs=[output_file,input_checks], outputs=[output_dist,next_button_peaks,next_button_topics])
464
+ next_button_peaks.click(fn=peaks, inputs=[output_file,input_checks], outputs=[output_peaks,next_button_topics])
465
+ next_button_topics.click(fn=topics, inputs=[output_file,input_checks], outputs=output_topics)
466
+ send_btn.click(fn=unavailable, inputs=[input_file,input_checks], outputs=[output_markdown,message])
467
+ demo_btn.click(fn=showcase, inputs=[input_file], outputs=[output_markdown,message,output_file,next_button_freq,next_button_dist,next_button_peaks,next_button_topics])
468
+ with gr.Column(scale=1, min_width=50):
469
+ gr.Markdown("""
470
+ """)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
 
472
 
473
  with gr.Row():