Spaces:
Runtime error
Runtime error
Commit
·
63672a5
1
Parent(s):
119dd62
Remove state tensorboard
Browse files- apps/article.py +2 -4
apps/article.py
CHANGED
|
@@ -30,8 +30,7 @@ def app(state=None):
|
|
| 30 |
st.write(read_markdown("pretraining/model.md"))
|
| 31 |
toc.subsubheader("MLM Training Logs")
|
| 32 |
st.info("In case the TensorBoard logs are not displayed, please visit this link: https://huggingface.co/flax-community/multilingual-vqa-pt-ckpts/tensorboard")
|
| 33 |
-
|
| 34 |
-
state.tb1 = st_tensorboard(logdir='./logs/pretrain_logs', port=6006)
|
| 35 |
|
| 36 |
|
| 37 |
toc.subheader("Finetuning")
|
|
@@ -41,8 +40,7 @@ def app(state=None):
|
|
| 41 |
st.write(read_markdown("finetuning/model.md"))
|
| 42 |
toc.subsubheader("VQA Training Logs")
|
| 43 |
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")
|
| 44 |
-
|
| 45 |
-
state.tb2 = st_tensorboard(logdir='./logs/finetune_logs', port=6007)
|
| 46 |
|
| 47 |
toc.header("Challenges and Technical Difficulties")
|
| 48 |
st.write(read_markdown("challenges.md"))
|
|
|
|
| 30 |
st.write(read_markdown("pretraining/model.md"))
|
| 31 |
toc.subsubheader("MLM Training Logs")
|
| 32 |
st.info("In case the TensorBoard logs are not displayed, please visit this link: https://huggingface.co/flax-community/multilingual-vqa-pt-ckpts/tensorboard")
|
| 33 |
+
st_tensorboard(logdir='./logs/pretrain_logs', port=6006)
|
|
|
|
| 34 |
|
| 35 |
|
| 36 |
toc.subheader("Finetuning")
|
|
|
|
| 40 |
st.write(read_markdown("finetuning/model.md"))
|
| 41 |
toc.subsubheader("VQA Training Logs")
|
| 42 |
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")
|
| 43 |
+
st_tensorboard(logdir='./logs/finetune_logs', port=6007)
|
|
|
|
| 44 |
|
| 45 |
toc.header("Challenges and Technical Difficulties")
|
| 46 |
st.write(read_markdown("challenges.md"))
|