Benjamin Consolvo commited on
Commit
0e961d2
1 Parent(s): 6af5526

correcting example

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ iface = gr.Interface(
45
  fn=predict,
46
  inputs=[context,question],
47
  outputs=[answer,score,start],
48
- examples=[[apple_context],[apple_question]],
49
  title = "Question & Answer with Sparse BERT using the SQuAD dataset",
50
  description = md
51
  )
 
45
  fn=predict,
46
  inputs=[context,question],
47
  outputs=[answer,score,start],
48
+ examples=[[apple_context,apple_question]],
49
  title = "Question & Answer with Sparse BERT using the SQuAD dataset",
50
  description = md
51
  )