Update app.py
Browse files
app.py
CHANGED
@@ -16,9 +16,9 @@ def colorify(pixels):
|
|
16 |
pixels = (pixels - 127.5) / 127.5
|
17 |
pixels = np.expand_dims(pixels, 0)
|
18 |
gen_image = gen_model.predict(pixels)
|
19 |
-
gen_image = (gen_image +
|
20 |
|
21 |
-
return Image.fromarray((gen_image[0] * 255.0).astype(np.
|
22 |
|
23 |
title = "Colorify"
|
24 |
description = "Recolor your images using this lite version of PIX2PIX GAN , model is trained on 700 randomly collected images from the internet with 256*256 pixels. Due to the above constraint please note that the resolution of your images will decrease"
|
|
|
16 |
pixels = (pixels - 127.5) / 127.5
|
17 |
pixels = np.expand_dims(pixels, 0)
|
18 |
gen_image = gen_model.predict(pixels)
|
19 |
+
gen_image = (gen_image + 1) / 2
|
20 |
|
21 |
+
return Image.fromarray((gen_image[0] * 255.0).astype(np.uint16))
|
22 |
|
23 |
title = "Colorify"
|
24 |
description = "Recolor your images using this lite version of PIX2PIX GAN , model is trained on 700 randomly collected images from the internet with 256*256 pixels. Due to the above constraint please note that the resolution of your images will decrease"
|