nateraw's picture
Update app.py
a3e0416
raw
history blame
No virus
284 Bytes
import gradio as gr
from huggan.pytorch.pix2pix.modeling_pix2pix import GeneratorUNet
model = GeneratorUNet.from_pretrained('huggan/pix2pix-edge2shoes')
def dummy_fn(text):
return "Looks like the model is loaded!"
gr.Interface(dummy_fn, inputs='text', outputs='text').launch()