gchhablani commited on
Commit
b929de0
β€’
1 Parent(s): 175f542

Update article

Browse files
Files changed (1) hide show
  1. apps/article.py +3 -1
apps/article.py CHANGED
@@ -4,7 +4,7 @@ from streamlit_tensorboard import st_tensorboard
4
  from .utils import Toc
5
  def app(state=None):
6
  toc = Toc()
7
- st.info("Welcome to our Multilingual-VQA demo. Please use the navigation sidebar to move to our demo, or scroll below to read all about our project. πŸ€—\nIn case the sidebar isn't properly rendered, please change to a smaller window size and back to full screen.")
8
 
9
  st.header("Table of contents")
10
  toc.placeholder()
@@ -28,6 +28,7 @@ def app(state=None):
28
  toc.subsubheader("MLM Model")
29
  st.write(read_markdown("pretraining/model.md"))
30
  toc.subsubheader("MLM Training Logs")
 
31
  st_tensorboard(logdir='./logs/pretrain_logs', port=8000)
32
 
33
 
@@ -37,6 +38,7 @@ def app(state=None):
37
  toc.subsubheader("VQA Model")
38
  st.write(read_markdown("finetuning/model.md"))
39
  toc.subsubheader("VQA Training Logs")
 
40
  st_tensorboard(logdir='./logs/finetune_logs', port=8010)
41
 
42
  toc.header("Challenges and Technical Difficulties")
 
4
  from .utils import Toc
5
  def app(state=None):
6
  toc = Toc()
7
+ st.info("Welcome to our Multilingual-VQA demo. Please use the navigation sidebar to move to our demo, or scroll below to read all about our project. πŸ€— In case the sidebar isn't properly rendered, please change to a smaller window size and back to full screen.")
8
 
9
  st.header("Table of contents")
10
  toc.placeholder()
 
28
  toc.subsubheader("MLM Model")
29
  st.write(read_markdown("pretraining/model.md"))
30
  toc.subsubheader("MLM Training Logs")
31
+ st.info("In case the TensorBoard logs are not displayed, please visit this link: https://huggingface.co/flax-community/multilingual-vqa-pt-ckpts/tensorboard")
32
  st_tensorboard(logdir='./logs/pretrain_logs', port=8000)
33
 
34
 
 
38
  toc.subsubheader("VQA Model")
39
  st.write(read_markdown("finetuning/model.md"))
40
  toc.subsubheader("VQA Training Logs")
41
+ st.info("In case the TensorBoard logs are not displayed, please visit this link: https://huggingface.co/flax-community/multilingual-vqa-pt-60k-ft/tensorboard")
42
  st_tensorboard(logdir='./logs/finetune_logs', port=8010)
43
 
44
  toc.header("Challenges and Technical Difficulties")