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=61.0000, max_value=2239.0000, value=
|
| 20 |
-
lub_oil_pres = st.number_input("Lub oil pressure", min_value=0.003384, max_value=7.2655, value=
|
| 21 |
-
fuel_pres= st.number_input("Fuel pressure", min_value=0.0031, max_value=21.1383, value=
|
| 22 |
-
coolant_pres = st.number_input("Coolant pressure", min_value=0.0024, max_value=7.4785, value=
|
| 23 |
-
lub_oil_temp = st.number_input("lub oil temp", min_value=71.3219, max_value=
|
| 24 |
-
coolant_temp = st.number_input("Coolant temp", min_value=61.6733, max_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=876.0, step=0.1)
|
| 20 |
+
lub_oil_pres = st.number_input("Lub oil pressure", min_value=0.003384, max_value=7.2655, value=2.9416, step=0.1)
|
| 21 |
+
fuel_pres= st.number_input("Fuel pressure", min_value=0.0031, max_value=21.1383, value=16.1938)
|
| 22 |
+
coolant_pres = st.number_input("Coolant pressure", min_value=0.0024, max_value=7.4785, value=2.4645, step=0.1)
|
| 23 |
+
lub_oil_temp = st.number_input("lub oil temp", min_value=71.3219, max_value=77.6409, value=10)
|
| 24 |
+
coolant_temp = st.number_input("Coolant temp", min_value=61.6733, max_value=82.4457, value=10)
|
| 25 |
|
| 26 |
# Assemble input into DataFrame
|
| 27 |
input_data = pd.DataFrame([{
|