shwetashweta05 commited on
Commit
da177c4
·
verified ·
1 Parent(s): 8bbf383

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ with st.sidebar:
32
  learning_rate = st.selectbox("Learning Rate", [0.0001, 0.001, 0.01, 0.1])
33
  batch_size = st.slider("Batch Size", 1, 10000, 6400)
34
  epochs = st.slider("Epochs", 1, 1000, 600)
35
- test_split = st.slider("Test Size", 0.1, 0.5, 0.2)
36
 
37
  # --- Main Title ---
38
  st.title("TensorFlow Playground - Random Data")
 
32
  learning_rate = st.selectbox("Learning Rate", [0.0001, 0.001, 0.01, 0.1])
33
  batch_size = st.slider("Batch Size", 1, 10000, 6400)
34
  epochs = st.slider("Epochs", 1, 1000, 600)
35
+ test_split = st.slider("Test Size (%)", 10, 90, 20)
36
 
37
  # --- Main Title ---
38
  st.title("TensorFlow Playground - Random Data")