File size: 866 Bytes
b060e0a ba39732 b060e0a 5894220 b060e0a ec8edfb b060e0a |
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 |
import gradio as gr
import numpy as np
from tensorflow.keras.preprocessing.image import load_img, img_to_array
from tensorflow.keras.models import load_model
from PIL import Image
inputs = gr.inputs.Image(shape=(512, 512))
o1 = gr.outputs.Image()
o2 = gr.outputs.Image()
gen_model = load_model('generator_model.h5')
def colorify(pixels):
pixels = (pixels - 127.5) / 127.5
pixels = np.expand_dims(pixels, 0)
gen_image = gen_model.predict(pixels)
gen_image = (gen_image + 1) / 1.5
return gen_image[0]
title = "Colorify"
description = "Recolor your images using this lite version of PIX2PIX GAN"
examples=[['example1.png'],['example2.jpg']]
article = "<p style='text-align: center'>"
gr.Interface(fn=colorify, inputs=inputs, outputs=[o1, o2], title=title, description=description, article=article, examples=examples, enable_queue=True).launch()
|