Annas Dev
add requriements
d0dae0b
raw
history blame
270 Bytes
import gradio as gr
def get_model():
return ''
def run(img):
print('running...')
return img
gr.Markdown('Upload Foto Wajah Kamu (Pastikan hanya terdapat SATU wajah pada)')
iface = gr.Interface(fn=run, inputs=["image"], outputs="image")
iface.launch()