vasudevgupta commited on
Commit
3eb8c25
·
1 Parent(s): 60abd67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,6 +31,6 @@ if __name__ == "__main__":
31
  context = gr.inputs.Textbox(lines=10, default=default_context, label="Context")
32
 
33
  title = "BigBird-RoBERTa"
34
- desc = "BigBird is a transformer based model which can process long sequences (upto 4096) very efficiently. It has shown outstanding results on long document question answering."
35
 
36
  gr.Interface(fn=get_answer, inputs=[question, context], outputs="text", title=title, description=desc).launch()
 
31
  context = gr.inputs.Textbox(lines=10, default=default_context, label="Context")
32
 
33
  title = "BigBird-RoBERTa"
34
+ desc = "BigBird is a transformer based model which can process long sequences (upto 4096) very efficiently. RoBERTa variant of BigBird has shown outstanding results on long document question answering."
35
 
36
  gr.Interface(fn=get_answer, inputs=[question, context], outputs="text", title=title, description=desc).launch()