deoldify / app.py
Ahsen Khaliq
Create app.py
6efc86b
raw history blame
No virus
399 Bytes
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()