Spaces:
Runtime error
Runtime error
File size: 819 Bytes
7980082 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
import cv2
os.system("hub install UGATIT_100w==1.0.0")
import gradio as gr
import paddlehub as hub
model = hub.Module(name='UGATIT_100w', use_gpu=False)
def inference(image):
result = model.style_transfer(images=[cv2.imread(image.name)])
return result
title = "UGATIT-selfie2anime"
description = "Gradio demo for DeOldify. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://github.com/jantic/DeOldify' target='_blank'>Github Repo</a></p>"
examples=[['lunch.jpeg']]
iface = gr.Interface(inference, inputs=gr.inputs.Image(type="file"), outputs=gr.outputs.Image(type="numpy"),examples=examples,enable_queue=True,title=title,article=article,description=description)
iface.launch() |