try / app.py
mtalamon's picture
Upload 5 files
1bc2204 verified
raw
history blame
281 Bytes
from src.prototype import activate
import gradio
iface = gradio.Interface(
fn= activate,
inputs=gradio.components.Image(type="numpy"),
outputs=gradio.components.Image(type="numpy"),
title="Hatting Face",
description="Upload the picture of your choice :)"
)
iface.launch()