Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,21 @@
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# import gradio as gr
|
2 |
+
|
3 |
+
# gr.load("models/DevBM/t5-large-squad").launch()
|
4 |
import gradio as gr
|
5 |
|
6 |
+
# Load your model
|
7 |
+
model = gr.load("models/DevBM/t5-large-squad")
|
8 |
+
|
9 |
+
# Define the input and output interfaces
|
10 |
+
inputs = gr.inputs.Textbox(label="Question")
|
11 |
+
output = gr.outputs.Textbox(label="Answer")
|
12 |
+
|
13 |
+
# Define examples that users can select from
|
14 |
+
examples = [
|
15 |
+
["What is the capital of France?", ""],
|
16 |
+
["Who wrote the Harry Potter series?", ""],
|
17 |
+
["What is the largest planet in our solar system?", ""]
|
18 |
+
]
|
19 |
+
|
20 |
+
# Launch the Gradio interface with examples
|
21 |
+
gr.Interface(fn=model.predict, inputs=inputs, outputs=output, examples=examples).launch()
|