finalProject2 / app.py
amjadfqs's picture
Update app.py
3edf187 verified
raw
history blame
278 Bytes
import gradio as gr
def predict(image):
# Load your Hugging Face model here and make a prediction
model = gr.load("models/amjadfqs/finalProject")
return model(image)
interface = gr.Interface(fn=predict, inputs=gr.inputs.Image(), outputs="text")
interface.launch()