dawood HF staff commited on
Commit
6603660
·
1 Parent(s): 208688b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,3 +1,4 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("huggingface/huggingface-course/bert-finetuned-squad").launch()
 
 
1
  import gradio as gr
2
 
3
+ example = ["Which deep learning libraries back 🤗 Transformers?", "🤗 Transformers is backed by the three most popular deep learning libraries — Jax, PyTorch and TensorFlow — with a seamless integration between them. It's straightforward to train your models with one before loading them for inference with the other."]
4
+ gr.Interface.load("huggingface/huggingface-course/bert-finetuned-squad", examples=[example]).launch()