shripadbhat commited on
Commit
7310c03
·
1 Parent(s): 03c65d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,12 +3,12 @@ from transformers import pipeline
3
 
4
  qa_model = pipeline("question-answering",'a-ware/bart-squadv2')
5
 
6
- def fetch_answer(name):
7
  return qa_model(question = question, context = context)['answer']
8
 
9
  demo = gr.Interface(
10
  fn=fetch_answer,
11
- inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
12
  outputs="text",
13
  )
14
  demo.launch()
 
3
 
4
  qa_model = pipeline("question-answering",'a-ware/bart-squadv2')
5
 
6
+ def fetch_answer(question, context ):
7
  return qa_model(question = question, context = context)['answer']
8
 
9
  demo = gr.Interface(
10
  fn=fetch_answer,
11
+ inputs=[gr.Textbox(lines=2, placeholder="What is age of patient..."),gr.Textbox(lines=2, placeholder="The patient is a 71 year old male...")],
12
  outputs="text",
13
  )
14
  demo.launch()