194b093 91d8e2e e0af2dd 91d8e2e c9b3edc 91d8e2e
1
2
3
4
5
6
7
8
9
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()