Spaces:
Runtime error
Runtime error
Commit
·
9c032d8
1
Parent(s):
9e99ac6
tweak offsets
Browse files
app.py
CHANGED
@@ -27,15 +27,14 @@ So, can individual researchers and small labs still train state-of-the-art? Yes
|
|
27 |
All it takes is for a bunch of us to come together. In fact, we're doing it right now and <b>you're invited to join!</b>
|
28 |
""", vspace_before=12)
|
29 |
|
30 |
-
st.markdown("<br>", unsafe_allow_html=True)
|
31 |
-
|
32 |
draw_current_progress()
|
33 |
|
34 |
content_text(f"""
|
35 |
The model we're training is called DALLE: a transformer "language model" that generates images from text description.
|
36 |
-
We're training this model on <a href=https://laion.ai/laion-400-open-dataset/>LAION</a> - the world's largest openly available
|
37 |
image-text-pair dataset with 400 million samples. Our model is based on
|
38 |
-
<a href=https://github.com/lucidrains/DALLE-pytorch>dalle-pytorch</a>
|
|
|
39 |
|
40 |
content_title("How do I join?")
|
41 |
|
|
|
27 |
All it takes is for a bunch of us to come together. In fact, we're doing it right now and <b>you're invited to join!</b>
|
28 |
""", vspace_before=12)
|
29 |
|
|
|
|
|
30 |
draw_current_progress()
|
31 |
|
32 |
content_text(f"""
|
33 |
The model we're training is called DALLE: a transformer "language model" that generates images from text description.
|
34 |
+
We're training this model on <a target="_blank" rel="noopener noreferrer" href=https://laion.ai/laion-400-open-dataset/>LAION</a> - the world's largest openly available
|
35 |
image-text-pair dataset with 400 million samples. Our model is based on
|
36 |
+
<a target="_blank" rel="noopener noreferrer" href=https://github.com/lucidrains/DALLE-pytorch>dalle-pytorch</a>
|
37 |
+
with several tweaks for memory-efficient training.""")
|
38 |
|
39 |
content_title("How do I join?")
|
40 |
|
charts.py
CHANGED
@@ -10,7 +10,10 @@ def draw_current_progress():
|
|
10 |
st.vega_lite_chart(
|
11 |
source, {
|
12 |
"height": 200,
|
13 |
-
"title":
|
|
|
|
|
|
|
14 |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
15 |
"description": "Current training progress",
|
16 |
"encoding": {"x": {"field": "wall time", "type": "temporal"}},
|
|
|
10 |
st.vega_lite_chart(
|
11 |
source, {
|
12 |
"height": 200,
|
13 |
+
"title": {
|
14 |
+
"text": "Training DALLE with volunteers. Updated every few minutes during NeurIPS.",
|
15 |
+
"dy": 2,
|
16 |
+
},
|
17 |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
18 |
"description": "Current training progress",
|
19 |
"encoding": {"x": {"field": "wall time", "type": "temporal"}},
|