DevBM commited on
Commit
8594ebc
·
verified ·
1 Parent(s): 440345a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -1,3 +1,21 @@
 
 
 
1
  import gradio as gr
2
 
3
- gr.load("models/DevBM/t5-large-squad").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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()