Spaces:
Sleeping
Sleeping
increased epochs to 800
Browse files
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=
|
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
|