Spaces:
Runtime error
Runtime error
Commit
·
b4ca4a1
1
Parent(s):
a535507
Update article and links
Browse files
apps/article.py
CHANGED
|
@@ -64,9 +64,10 @@ def app(state=None):
|
|
| 64 |
st.write(read_markdown("conclusion_future_work/social_impact.md"))
|
| 65 |
|
| 66 |
toc.header("References")
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
|
|
|
| 70 |
toc.header("Acknowledgements")
|
| 71 |
st.write(read_markdown("acknowledgements.md"))
|
| 72 |
toc.generate()
|
|
|
|
| 64 |
st.write(read_markdown("conclusion_future_work/social_impact.md"))
|
| 65 |
|
| 66 |
toc.header("References")
|
| 67 |
+
toc.subheader("Papers")
|
| 68 |
+
st.write(read_markdown("references/papers.md"))
|
| 69 |
+
toc.subheader("Useful Links")
|
| 70 |
+
st.write(read_markdown("references/useful_links.md"))
|
| 71 |
toc.header("Acknowledgements")
|
| 72 |
st.write(read_markdown("acknowledgements.md"))
|
| 73 |
toc.generate()
|
sections/{references.md → references/papers.md}
RENAMED
|
File without changes
|
sections/references/useful_links.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- [Our GitHub](https://github.com/gchhablani/multilingual-image-captioning/blob/main/README.md)
|
| 2 |
+
|
| 3 |
+
- [Conceptual 12M Dataset](https://github.com/google-research-datasets/conceptual-12m)
|
| 4 |
+
|
| 5 |
+
- [Hybrid CLIP Example](https://github.com/huggingface/transformers/blob/master/src/transformers/models/clip/modeling_flax_clip.py)
|
| 6 |
+
|
| 7 |
+
- [BERT Modeling File](https://github.com/huggingface/transformers/blob/master/src/transformers/models/bert/modeling_flax_bert.py)
|
| 8 |
+
|
| 9 |
+
- [CLIP Modeling File](https://github.com/huggingface/transformers/blob/master/src/transformers/models/clip/modeling_flax_clip.py)
|
| 10 |
+
|
| 11 |
+
- [Summarization Training Script](https://github.com/huggingface/transformers/blob/master/examples/flax/summarization/run_summarization_flax.py)
|