puqi commited on
Commit
508da0c
·
1 Parent(s): 3cd5ebc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -15,8 +15,14 @@ import h5py
15
  from tqdm import tqdm
16
 
17
 
18
- st.title('A Quickstart Notebook for ClimSim')
19
- st.header(os.getcwd())
 
 
 
 
 
 
20
 
21
 
22
 
 
15
  from tqdm import tqdm
16
 
17
 
18
+ st.title('A _Quickstart Notebook_ for :blue[ClimSim] :sunglasses:')
19
+ st.header('**Step 1:** Import data_utils')
20
+ st.code('''from data_utils import *''',language='python')
21
+ st.header('**Step 2:** Instantiate class')
22
+ st.header('**Step 3:** Load training and validation data')
23
+ st.header('**Step 4:** Train models')
24
+ st.subheader('Train constant prediction model')
25
+
26
 
27
 
28