vishnun commited on
Commit
bc5e2a5
1 Parent(s): b76d439

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 + 2) / 2
20
 
21
- return Image.fromarray((gen_image[0] * 255.0).astype(np.uint8))
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"