Nguyen Hoang Bien
Create app.py
cf3ce1b
raw history blame
No virus
290 Bytes
import gradio as gr
def predict(inp):
return "Yaw: 30 \n Pitch: 19\n Direction: Left"
gr.Interface(fn=predict,
inputs=gr.Image(type="pil"),
outputs=gr.Textbox(),
examples=["face_left.jpg","face_right.jpg","face_up.jpg","face_down.jpg"]).launch()