Zeel commited on
Commit
50d0d49
·
1 Parent(s): 826f2da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -3,10 +3,8 @@ import streamlit as st
3
  import matplotlib.pyplot as plt
4
 
5
  st.subheader("Gaussian Process Regression")
6
- st_cols = st.columns(2)
7
- st_col = st_cols[0]
8
 
9
- st_col_text = st_cols[1]
10
 
11
  st_col_text.latex("""
12
  \\text{{Gamma}}(
@@ -27,6 +25,9 @@ st_col_text.latex("""
27
  """)
28
 
29
 
 
 
 
30
  lengthscale = st.slider('Lengthscale', min_value=0.01, max_value=1.0, value=0.25, step=0.01)
31
  variance = st.slider('Variance', min_value=0.001, max_value=0.1, value=0.025, step=0.001)
32
  noise_variance = st.slider('Noise Variance', min_value=0.001, max_value=0.01, value=0.0, step=0.001)
 
3
  import matplotlib.pyplot as plt
4
 
5
  st.subheader("Gaussian Process Regression")
 
 
6
 
7
+ st_col_text = st.columns(1)[0]
8
 
9
  st_col_text.latex("""
10
  \\text{{Gamma}}(
 
25
  """)
26
 
27
 
28
+ st_col = st.columns(1)[0]
29
+
30
+
31
  lengthscale = st.slider('Lengthscale', min_value=0.01, max_value=1.0, value=0.25, step=0.01)
32
  variance = st.slider('Variance', min_value=0.001, max_value=0.1, value=0.025, step=0.001)
33
  noise_variance = st.slider('Noise Variance', min_value=0.001, max_value=0.01, value=0.0, step=0.001)