Spaces:
Runtime error
Runtime error
import os | |
os.system("hub install deoldify==1.0.1") | |
import gradio as gr | |
import paddlehub as hub | |
from pathlib import Path | |
model = hub.Module(name='deoldify') | |
def inference(image): | |
model.predict(image.name) | |
return './output/DeOldify/'+Path(image.name).stem+".png" | |
iface = gr.Interface(inference, inputs=gradio.inputs.Image(type="file"), outputs=gr.outputs.Image(type="file")) | |
iface.launch() |