davidpiscasio commited on
Commit
b607fb7
·
1 Parent(s): e1a9a09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -66,12 +66,9 @@ gr.Interface(fn=unpaired_img2img,
66
  gr.inputs.Image(shape=(256,256))],
67
  outputs=gr.outputs.Image(type="numpy"),
68
  title="Unpaired Image to Image Translation",
69
- examples=[['Map to Satellite',"examples/map1.PNG"],
70
- ['Map to Satellite',"examples/map2.jfif"],
71
- ['Image to Van Gogh', "examples/img1.jpg"],
72
  ['Image to Van Gogh', "examples/img2.jpg"],
73
- ['Image to Monet', "examples/img1.jpg"],
74
- ['Image to Monet', "examples/img2.jpg"]],
75
  description="This is an implementation of the unpaired image to image translation using a pretrained CycleGAN model. Kindly select first the type of translation you wish to see using the dropdown menu. Then, upload the image you wish to translate and click on the 'Submit' button.",
76
  article="To know more about Unpaired Image to Image Translation and CycleGAN, you may access their <a href = https://paperswithcode.com/paper/unpaired-image-to-image-translation-using>Papers with Code</a> page.",
77
  allow_flagging="never").launch(inbrowser=True)
 
66
  gr.inputs.Image(shape=(256,256))],
67
  outputs=gr.outputs.Image(type="numpy"),
68
  title="Unpaired Image to Image Translation",
69
+ examples=[['Map to Satellite',"examples/map2.jfif"],
 
 
70
  ['Image to Van Gogh', "examples/img2.jpg"],
71
+ ['Image to Monet', "examples/img1.jpg"]],
 
72
  description="This is an implementation of the unpaired image to image translation using a pretrained CycleGAN model. Kindly select first the type of translation you wish to see using the dropdown menu. Then, upload the image you wish to translate and click on the 'Submit' button.",
73
  article="To know more about Unpaired Image to Image Translation and CycleGAN, you may access their <a href = https://paperswithcode.com/paper/unpaired-image-to-image-translation-using>Papers with Code</a> page.",
74
  allow_flagging="never").launch(inbrowser=True)