gchhablani commited on
Commit
7f529a4
1 Parent(s): 4d8488a

Add missing parenthesis and logo back

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ def main():
19
  )
20
 
21
  st.sidebar.title("Multilingual VQA")
22
- st.sidebar.write("Multilingual VQA addresses the challenge of visual question answering in a multilingual setting. Here, we fuse CLIP Vision transformer into BERT and perform pre-training and fine-tuning on translated versions of Conceptual-12M and VQAv2 datasets. Please use the radio buttons below to navigate."
23
- #logo = st.sidebar.image("./misc/mvqa-logo-3-white.png")
24
  app = MultiApp(state)
25
  app.add_app("Article", article.app)
26
  app.add_app("Visual Question Answering", vqa.app)
 
19
  )
20
 
21
  st.sidebar.title("Multilingual VQA")
22
+ logo = st.sidebar.image("./misc/mvqa-logo-3-white.png")
23
+ st.sidebar.write("Multilingual VQA addresses the challenge of visual question answering in a multilingual setting. Here, we fuse CLIP Vision transformer into BERT and perform pre-training and fine-tuning on translated versions of Conceptual-12M and VQAv2 datasets. Please use the radio buttons below to navigate.")
24
  app = MultiApp(state)
25
  app.add_app("Article", article.app)
26
  app.add_app("Visual Question Answering", vqa.app)