Spaces:
Build error
Build error
Create app.py
Browse files
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()
|