Spaces:
Runtime error
Runtime error
Commit
·
4e06bd3
1
Parent(s):
8afcfb2
remove extra br
Browse files
charts.py
CHANGED
@@ -6,7 +6,6 @@ from streamlit_observable import observable
|
|
6 |
|
7 |
|
8 |
def draw_current_progress():
|
9 |
-
st.markdown("<br>", unsafe_allow_html=True)
|
10 |
source = get_main_metrics()
|
11 |
|
12 |
st.vega_lite_chart(
|
@@ -15,7 +14,7 @@ def draw_current_progress():
|
|
15 |
"title": {
|
16 |
"text": "Training DALL-E with volunteers",
|
17 |
# ^-- WARNING: do not use long titles, otherwise vega collapses on small screens
|
18 |
-
"dy":
|
19 |
},
|
20 |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
21 |
"description": "Current training progress",
|
|
|
6 |
|
7 |
|
8 |
def draw_current_progress():
|
|
|
9 |
source = get_main_metrics()
|
10 |
|
11 |
st.vega_lite_chart(
|
|
|
14 |
"title": {
|
15 |
"text": "Training DALL-E with volunteers",
|
16 |
# ^-- WARNING: do not use long titles, otherwise vega collapses on small screens
|
17 |
+
"dy": 6,
|
18 |
},
|
19 |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
20 |
"description": "Current training progress",
|