Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ def colorify(pixels, slider_value):
|
|
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"
|
25 |
-
examples=[['example1.png'],['example2.jpg']]
|
26 |
article = "<p style='text-align: center'>"
|
27 |
|
28 |
gr.Interface(fn=colorify, inputs=[i1, i2], outputs=o1, title=title, description=description, article=article, examples=examples, enable_queue=True).launch()
|
|
|
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"
|
25 |
+
examples=[['example1.png', 2],['example2.jpg', 2]]
|
26 |
article = "<p style='text-align: center'>"
|
27 |
|
28 |
gr.Interface(fn=colorify, inputs=[i1, i2], outputs=o1, title=title, description=description, article=article, examples=examples, enable_queue=True).launch()
|