merve HF staff commited on
Commit
ddcc5b8
1 Parent(s): 5584a85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,6 +41,6 @@ generator = from_pretrained_keras("keras-io/pix2pix-generator")
41
  img = gr.inputs.Image(shape=(256,256))
42
  plot = gr.outputs.Image(type="plot")
43
 
44
- description = "Pix2Pix Facade Reconstructor"
45
  gr.Interface(generate_images, inputs = img, outputs = plot,
46
  title = "Pix2Pix Facade Reconstructor", description = description, examples = [["./img.png"]]).launch()
 
41
  img = gr.inputs.Image(shape=(256,256))
42
  plot = gr.outputs.Image(type="plot")
43
 
44
+ description = "Conditional GAN model that translates image-to-image."
45
  gr.Interface(generate_images, inputs = img, outputs = plot,
46
  title = "Pix2Pix Facade Reconstructor", description = description, examples = [["./img.png"]]).launch()