merve HF staff commited on
Commit
9590410
·
1 Parent(s): 345fc55

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ description = "Question Answering Demo 🙌🏼"
3
+ title = "Question Answering with Keras"
4
+ interface = gr.Interface.load("huggingface/keras-io/transformers_qa",
5
+ description=description,
6
+ title = title
7
+ )
8
+ interface.launch()