Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -16,12 +16,12 @@ Please enter the sensor and configuration data below to get a prediction.
|
|
| 16 |
""")
|
| 17 |
|
| 18 |
# User input
|
| 19 |
-
engine_rpm = st.number_input("Engine rpm", min_value=
|
| 20 |
-
lub_oil_pres = st.number_input("Lub oil pressure", min_value=
|
| 21 |
-
fuel_pres= st.number_input("Fuel pressure", min_value=0, max_value=
|
| 22 |
-
coolant_pres = st.number_input("Coolant pressure", min_value=0.
|
| 23 |
-
lub_oil_temp = st.number_input("lub oil temp", min_value=
|
| 24 |
-
coolant_temp = st.number_input("Coolant temp", min_value=
|
| 25 |
|
| 26 |
# Assemble input into DataFrame
|
| 27 |
input_data = pd.DataFrame([{
|
|
|
|
| 16 |
""")
|
| 17 |
|
| 18 |
# User input
|
| 19 |
+
engine_rpm = st.number_input("Engine rpm", min_value=61.0000, max_value=2239.0000, value=298.0, step=0.1)
|
| 20 |
+
lub_oil_pres = st.number_input("Lub oil pressure", min_value=0.003384, max_value=7.2655, value=324.0, step=0.1)
|
| 21 |
+
fuel_pres= st.number_input("Fuel pressure", min_value=0.0031, max_value=21.1383, value=1400)
|
| 22 |
+
coolant_pres = st.number_input("Coolant pressure", min_value=0.0024, max_value=7.4785, value=40.0, step=0.1)
|
| 23 |
+
lub_oil_temp = st.number_input("lub oil temp", min_value=71.3219, max_value=89.5807, value=10)
|
| 24 |
+
coolant_temp = st.number_input("Coolant temp", min_value=61.6733, max_value=195.5279, value=10)
|
| 25 |
|
| 26 |
# Assemble input into DataFrame
|
| 27 |
input_data = pd.DataFrame([{
|