stylegan3 / app.py
nateraw's picture
Update app.py
519c85d
raw
history blame
224 Bytes
import gradio as gr
import torch
pipe = torch.hub.load('nateraw/image-generation:main', 'styleganv3', force_reload=True)
def fn(text):
return text
iface = gr.Interface(fn, inputs='text', outputs='text')
iface.launch()