Spaces:
Runtime error
Runtime error
File size: 1,184 Bytes
4dd5454 4b371bb 4dd5454 427b4a2 4dd5454 8db0879 4dd5454 4238956 b6f73ba 4dd5454 e71af68 4dd5454 e71af68 b6f73ba 4238956 84a835d 4dd5454 8db0879 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import os
os.system("hub install deoldify==1.0.1")
import gradio as gr
import paddlehub as hub
from pathlib import Path
from datetime import datetime
from typing import Optional
model = hub.Module(name='deoldify')
# NOTE: Max is 45 with 11GB video cards. 35 is a good default
render_factor=35
def colorize_image(image):
if not os.path.exists("./output"):
os.makedirs("./output")
model.predict(image.name)
return './output/DeOldify/'+Path(image.name).stem+".png", './output/DeOldify/'+Path(image.name).stem+".png"
def create_interface():
with gr.Blocks() as enhancer:
gr.Markdown("Colorize old black & white photos")
with gr.Column(scale=1, label = "Colorize photo", visible=True) as colorize_column:
colorize_input = gr.Image(type="file")
colorize_button = gr.Button("Colorize!")
colorize_output = gr.Image(type="file")
download_button = gr.Button("Download!")
colorize_button.click(colorize_image, inputs=colorize_input, outputs=[colorize_output, gr.File(label="Download photo!")],)
enhancer.launch()
def run_code():
create_interface()
# The main function
run_code() |