improve_frontmatter

#3
by gpucce - opened
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -26,7 +26,11 @@ iface = gr.Interface(
26
  fn=output_generate,
27
  inputs=gr.Image(label="Input image", type="pil"),
28
  outputs=gr.Text(label="Caption output"),
29
- title="CoCa: Contrastive Captioners are Image-Text Foundation Models",
 
 
 
 
30
  examples=[path.as_posix() for path in paths],
31
  )
32
  iface.launch()
 
26
  fn=output_generate,
27
  inputs=gr.Image(label="Input image", type="pil"),
28
  outputs=gr.Text(label="Caption output"),
29
+ title="CoCa: Contrastive Captioners",
30
+ description=(
31
+ "An open source implementation of **CoCa: Contrastive Captioners are Image-Text Foundation Models** https://arxiv.org/abs/2205.01917. "
32
+ "Built using [open_clip](https://github.com/mlfoundations/open_clip) with an effort from [LAION](https://laion.ai/)."
33
+ ),
34
  examples=[path.as_posix() for path in paths],
35
  )
36
  iface.launch()