Spaces:
Runtime error
Runtime error
Commit
·
8e7fd4d
1
Parent(s):
89ea6a7
Fix ports
Browse files- apps/article.py +2 -2
apps/article.py
CHANGED
|
@@ -29,7 +29,7 @@ def app(state=None):
|
|
| 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=
|
| 33 |
|
| 34 |
|
| 35 |
toc.subheader("Finetuning")
|
|
@@ -39,7 +39,7 @@ def app(state=None):
|
|
| 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=
|
| 43 |
|
| 44 |
toc.header("Challenges and Technical Difficulties")
|
| 45 |
st.write(read_markdown("challenges.md"))
|
|
|
|
| 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=6006)
|
| 33 |
|
| 34 |
|
| 35 |
toc.subheader("Finetuning")
|
|
|
|
| 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=6007)
|
| 43 |
|
| 44 |
toc.header("Challenges and Technical Difficulties")
|
| 45 |
st.write(read_markdown("challenges.md"))
|