Zeel commited on
Commit
19b299f
·
1 Parent(s): 061a2b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -16
app.py CHANGED
@@ -6,22 +6,8 @@ st.subheader("Gaussian Process Regression with Squared Exponential Kernel")
6
 
7
  st_col_text = st.columns(1)[0]
8
 
9
- st_col_text.latex("""
10
- K(
11
- x
12
- ,
13
- x'
14
- )
15
- = \\sigma_f^2
16
- \\exp \\left[\\frac{{
17
- (x - x')^2
18
- }} {{
19
- \\ell^2
20
- }}\\right]\\text{{ where, }}
21
- \\ell
22
- \\text{{ is lengthscale and }}
23
- \\sigma_f^2
24
- \\text{{ is variance.}}
25
  """)
26
 
27
 
 
6
 
7
  st_col_text = st.columns(1)[0]
8
 
9
+ st.markdown("""
10
+ Squared Exponential Kernel is formulated as $K(x, x') = \sigma_f^2 \exp \left[\frac{(x - x')^2}{\ell^2}\right]$ where, $\ell$ is lengthscale and $sigma_f^2$ is variance.}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  """)
12
 
13