basebody / app.py
hwajjala's picture
Add requirements and model files
194b093
raw
history blame
No virus
193 Bytes
import clip
import torch
import gradio as gr
def greet(name):
return "Hello " + "!!"
iface = gr.Interface(fn=greet, inputs="image", outputs="text", allow_flagging="manual")
iface.launch()