Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -17,9 +17,9 @@ Please enter the sensor and configuration data below to get a prediction.
|
|
| 17 |
# User input
|
| 18 |
engine_rpm = st.number_input("Engine rpm", min_value=0, value=750)
|
| 19 |
lub_oil_pressure = st.number_input("Lub oil pressure", min_value=0.0, value=3.162035, format="%0.6f")
|
| 20 |
-
lub_oil_temp = st.number_input("lub oil temp", min_value=0, value=76.817350, format="%0.6f")
|
| 21 |
coolant_pressure = st.number_input("Coolant pressure", min_value=0.0, value=2.166883, format="%0.6f")
|
| 22 |
-
coolant_temp = st.number_input("Coolant temp", min_value=0, value=78.346662, format="%0.6f")
|
| 23 |
fuel_pressure = st.number_input("Fuel pressure", min_value=0.0, value=6.201720, format="%0.6f")
|
| 24 |
|
| 25 |
# Assemble input into DataFrame
|
|
|
|
| 17 |
# User input
|
| 18 |
engine_rpm = st.number_input("Engine rpm", min_value=0, value=750)
|
| 19 |
lub_oil_pressure = st.number_input("Lub oil pressure", min_value=0.0, value=3.162035, format="%0.6f")
|
| 20 |
+
lub_oil_temp = st.number_input("lub oil temp", min_value=0.0, value=76.817350, format="%0.6f")
|
| 21 |
coolant_pressure = st.number_input("Coolant pressure", min_value=0.0, value=2.166883, format="%0.6f")
|
| 22 |
+
coolant_temp = st.number_input("Coolant temp", min_value=0.0, value=78.346662, format="%0.6f")
|
| 23 |
fuel_pressure = st.number_input("Fuel pressure", min_value=0.0, value=6.201720, format="%0.6f")
|
| 24 |
|
| 25 |
# Assemble input into DataFrame
|