Spaces:
Runtime error
Runtime error
Commit
·
7cce2d4
1
Parent(s):
e4b27b8
acknowledgements, references
Browse files- app.py +1 -0
- sections/acknowledgements.md +1 -1
- sections/references.md +12 -0
app.py
CHANGED
@@ -111,6 +111,7 @@ if state.image_file is None:
|
|
111 |
state.image = image
|
112 |
|
113 |
# col1, col2 = st.beta_columns([6, 4])
|
|
|
114 |
|
115 |
if st.button("Get a random example", help="Get a random example from one of the seeded examples."):
|
116 |
sample = dummy_data.sample(1).reset_index()
|
|
|
111 |
state.image = image
|
112 |
|
113 |
# col1, col2 = st.beta_columns([6, 4])
|
114 |
+
st.write("# Demo")
|
115 |
|
116 |
if st.button("Get a random example", help="Get a random example from one of the seeded examples."):
|
117 |
sample = dummy_data.sample(1).reset_index()
|
sections/acknowledgements.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
We'd like to thank [Abheesht Sharma](https://huggingface.co/abheesht) for helping in the discussions in the initial phases. [Luke Melas](https://github.com/lukemelas) helped us get the cleaned CC-12M data on our TPU-VMs and we are very grateful to him.
|
3 |
|
4 |
This project would not be possible without the help of [Patrick](https://huggingface.co/patrickvonplaten) and [Suraj](https://huggingface.co/valhalla) who met with us and helped us review our approach and guided us throughout the project.
|
|
|
1 |
+
# Acknowledgements
|
2 |
We'd like to thank [Abheesht Sharma](https://huggingface.co/abheesht) for helping in the discussions in the initial phases. [Luke Melas](https://github.com/lukemelas) helped us get the cleaned CC-12M data on our TPU-VMs and we are very grateful to him.
|
3 |
|
4 |
This project would not be possible without the help of [Patrick](https://huggingface.co/patrickvonplaten) and [Suraj](https://huggingface.co/valhalla) who met with us and helped us review our approach and guided us throughout the project.
|
sections/references.md
CHANGED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# References
|
2 |
+
- [Conceptual 12M Dataset](https://github.com/google-research-datasets/conceptual-12m)
|
3 |
+
|
4 |
+
- [Hybrid CLIP Example](https://github.com/huggingface/transformers/blob/master/src/transformers/models/clip/modeling_flax_clip.py)
|
5 |
+
|
6 |
+
- [mBART50 Modeling File](https://github.com/huggingface/transformers/blob/master/src/transformers/models/mbart/modeling_flax_mbart.py)
|
7 |
+
|
8 |
+
- [CLIP Modeling File](https://github.com/huggingface/transformers/blob/master/src/transformers/models/clip/modeling_flax_clip.py)
|
9 |
+
|
10 |
+
- [Hybrid CLIP Training Script](https://github.com/huggingface/transformers/blob/master/examples/research_projects/jax-projects/hybrid_clip/run_hybrid_clip.py)
|
11 |
+
|
12 |
+
- [Summarization Training Script](https://github.com/huggingface/transformers/blob/master/examples/flax/summarization/run_summarization_flax.py)
|