File size: 366 Bytes
8231943
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
from simplet5 import SimpleT5

model = SimpleT5()
# let's load the trained model for inferencing:
model.load_model("byt5","hantech/byt5_correct2", use_gpu=False)

def predict(img, text):
    result = model.predict(text)
    return result[0]

gr.Interface(predict, [gr.Image(type="filepath"), gr.Textbox(label="Question")], gr.Textbox()).launch()