Spaces:
Sleeping
Sleeping
File size: 302 Bytes
ef998ea |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
import torch
# Load your model (replace with your model loading code)
model = torch.load('your_model.pth')
def predict(input_data):
# Process input and make prediction
return model(input_data)
iface = gr.Interface(fn=predict, inputs="text", outputs="text")
iface.launch() |