Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# Define the examples
|
4 |
+
examples = [
|
5 |
+
"I earned $20 today, what do I do with it?",
|
6 |
+
]
|
7 |
+
|
8 |
+
# Load the Gradio interface
|
9 |
+
gr.Interface.load("dmis-lab/biobert-large-cased-v1.1-squad",
|
10 |
+
examples=examples).launch()
|