Blessin commited on
Commit
7e6f69e
·
verified ·
1 Parent(s): e24a493

increased epochs to 800

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ input_celsius = st.number_input('Enter Celsius value:', value=0.0, format="%.1f"
27
  if st.button('Train Model and Predict Fahrenheit'):
28
  with st.spinner('Training...'):
29
  # Fit the model
30
- history = model.fit(celsius, fahrenheit, epochs=600)
31
  st.success('Training completed!')
32
 
33
  # Make prediction
 
27
  if st.button('Train Model and Predict Fahrenheit'):
28
  with st.spinner('Training...'):
29
  # Fit the model
30
+ history = model.fit(celsius, fahrenheit, epochs=800)
31
  st.success('Training completed!')
32
 
33
  # Make prediction