reichenbach commited on
Commit
b40f84b
β€’
1 Parent(s): 21f578d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -120,6 +120,9 @@ text_2 = gr.inputs.Textbox(lines=5)
120
  label = gr.outputs.Label()
121
 
122
  iface = gr.Interface(classify_info,
123
- inputs=[image_1, text_1, image_2, text_2],outputs=label)
 
 
 
124
 
125
  iface.launch()
 
120
  label = gr.outputs.Label()
121
 
122
  iface = gr.Interface(classify_info,
123
+ inputs=[image_1, text_1, image_2, text_2], outputs=label,
124
+ title="Multimodal Entailment Keras",
125
+ description = "Model for classifying whether image and text from one scenario complements the image and text from another scenario. They can be contradictory, implied or no entailment",
126
+ article = "Author: <a href=\"https://huggingface.co/reichenbach\">Rishav Chandra Varma</a>")
127
 
128
  iface.launch()