gpucce commited on
Commit
d8b84bd
·
1 Parent(s): 950cca2

improve_frontmatter (#3)

Browse files

- frontmatter (6da8c8e948f1154ab8ccc484f47fe44c4473b795)
- change (52c2c6444c0640d687b0ecb728e28019173435b6)
- remove stability (cd5e87ba7fc7080485ea6bf73258b19753b61463)

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()