alkzar90 commited on
Commit
931207e
1 Parent(s): e97a68a

Fix typo on the title and header

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,8 +2,8 @@ import streamlit as st
2
  import numpy as np
3
  import matplotlib.pyplot as plt
4
 
5
- st.title("Fitting simple models with JAX')
6
- st.header("A quadratric regression example')
7
 
8
  number_of_observations = st.sidebar.slider('Number of observations', min_value=50, max_value=150, value=50)
9
  noise_standard_deviation = st.sidebar.slider('Standard deviation of the noise', min_value = 0.0, max_value=2.0, value=0.25)
 
2
  import numpy as np
3
  import matplotlib.pyplot as plt
4
 
5
+ st.title('Fitting simple models with JAX')
6
+ st.header('A quadratric regression example')
7
 
8
  number_of_observations = st.sidebar.slider('Number of observations', min_value=50, max_value=150, value=50)
9
  noise_standard_deviation = st.sidebar.slider('Standard deviation of the noise', min_value = 0.0, max_value=2.0, value=0.25)