DevBM's picture
Update app.py
7e52e17 verified
raw
history blame
639 Bytes
# import gradio as gr
# gr.load("models/DevBM/t5-large-squad").launch()
import gradio as gr
# Define the input and output interfaces
inputs = gr.inputs.Textbox(label="Question")
output = gr.outputs.Textbox(label="Answer")
# Define examples that users can select from
examples = [
["What is the capital of France?", ""],
["Who wrote the Harry Potter series?", ""],
["What is the largest planet in our solar system?", ""]
]
# Load your model
model = gr.load("models/DevBM/t5-large-squad")
# Launch the Gradio interface with examples
gr.Interface(fn=model.predict, inputs=inputs, outputs=output, examples=examples).launch()