justheuristic commited on
Commit
20b2a40
1 Parent(s): 93aa845

disclaimer

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -1,15 +1,17 @@
 
 
 
 
1
  import os
2
 
3
  import streamlit as st
 
4
  import wandb
5
 
6
  from dashboard_utils.bubbles import get_new_bubble_data
7
  from dashboard_utils.main_metrics import get_main_metrics
8
  from streamlit_observable import observable
9
 
10
- import streamlit as st
11
- import streamlit.components.v1 as components
12
-
13
 
14
  st.set_page_config(page_title="Training Transformers Together", layout="centered")
15
  with open("static/header.html", 'r', encoding='utf-8') as f:
 
1
+ """
2
+ This part of the website was bodged together by ham-handed hedgehogs. If something looks wrong, it's because it is.
3
+ If you're not a hedgehog, you shouldn't reuse this code. Use this instead: https://docs.streamlit.io/library/get-started
4
+ """
5
  import os
6
 
7
  import streamlit as st
8
+ import streamlit.components.v1 as components
9
  import wandb
10
 
11
  from dashboard_utils.bubbles import get_new_bubble_data
12
  from dashboard_utils.main_metrics import get_main_metrics
13
  from streamlit_observable import observable
14
 
 
 
 
15
 
16
  st.set_page_config(page_title="Training Transformers Together", layout="centered")
17
  with open("static/header.html", 'r', encoding='utf-8') as f: