eaglelandsonce commited on
Commit
318f21a
1 Parent(s): 628c1d8

Update pages/3_SyntheticRegression.py

Browse files
Files changed (1) hide show
  1. pages/3_SyntheticRegression.py +2 -0
pages/3_SyntheticRegression.py CHANGED
@@ -59,6 +59,8 @@ my_label = np.array([5.0, 8.8, 9.6, 14.2, 18.8, 19.5, 21.4, 26.8, 28.9, 32.0,
59
  # Streamlit interface
60
  st.title("Simple Linear Regression with Synthetic Data")
61
 
 
 
62
  learning_rate = st.sidebar.slider('Learning Rate', min_value=0.001, max_value=1.0, value=0.01, step=0.01)
63
  epochs = st.sidebar.slider('Epochs', min_value=1, max_value=1000, value=10, step=1)
64
  batch_size = st.sidebar.slider('Batch Size', min_value=1, max_value=len(my_feature), value=12, step=1)
 
59
  # Streamlit interface
60
  st.title("Simple Linear Regression with Synthetic Data")
61
 
62
+ st.write("https://colab.research.google.com/github/google/eng-edu/blob/main/ml/cc/exercises/linear_regression_with_synthetic_data.ipynb?utm_source=mlcc&utm_campaign=colab-external&utm_medium=referral&utm_content=linear_regression_synthetic_tf2-colab&hl=en")
63
+
64
  learning_rate = st.sidebar.slider('Learning Rate', min_value=0.001, max_value=1.0, value=0.01, step=0.01)
65
  epochs = st.sidebar.slider('Epochs', min_value=1, max_value=1000, value=10, step=1)
66
  batch_size = st.sidebar.slider('Batch Size', min_value=1, max_value=len(my_feature), value=12, step=1)