Oskar van der Wal commited on
Commit
8e10efe
1 Parent(s): 6b413da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -73,6 +73,9 @@ with open("description.md") as fh:
73
 
74
  with open("notice.md") as fh:
75
  notice = fh.read()
 
 
 
76
 
77
  with gradio.Blocks() as iface:
78
  gradio.Markdown(desc)
@@ -85,5 +88,7 @@ with gradio.Blocks() as iface:
85
  but.click(run, inp, out)
86
  with gradio.Accordion("A note about explainability models"):
87
  gradio.Markdown(notice)
 
 
88
 
89
  iface.launch()
 
73
 
74
  with open("notice.md") as fh:
75
  notice = fh.read()
76
+
77
+ with open("results.md") as fh:
78
+ results = fh.read()
79
 
80
  with gradio.Blocks() as iface:
81
  gradio.Markdown(desc)
 
88
  but.click(run, inp, out)
89
  with gradio.Accordion("A note about explainability models"):
90
  gradio.Markdown(notice)
91
+ with gradio.Accordion("Results for English and French BERT language models"):
92
+ gradio.Markdown(results)
93
 
94
  iface.launch()