Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,10 +7,12 @@ st.subheader("Gaussian Process Regression with Squared Exponential Kernel")
|
|
| 7 |
st_col_text = st.columns(1)[0]
|
| 8 |
|
| 9 |
st.markdown(r"""
|
| 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 |
-
\text{Prior:} \mathbf{f} \sim \mathcal{N}(\boldsymbol{0}, K)
|
|
|
|
| 13 |
$$
|
|
|
|
| 14 |
""")
|
| 15 |
|
| 16 |
|
|
|
|
| 7 |
st_col_text = st.columns(1)[0]
|
| 8 |
|
| 9 |
st.markdown(r"""
|
| 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 |
+
\text{Prior:} \mathbf{f} \sim \mathcal{N}(\boldsymbol{0}, K) \\
|
| 13 |
+
\text{Likelihood} \sim \mathcal{N}(\mathbf{f}, \sigma_n^2)
|
| 14 |
$$
|
| 15 |
+
where $\sigma_n^2$ is known as noise variance or likelihood noise.
|
| 16 |
""")
|
| 17 |
|
| 18 |
|