Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -16,12 +16,12 @@ st.write("Kindly enter the Vehicle engine sensor details to check whether the en
|
|
| 16 |
|
| 17 |
# Collect user input
|
| 18 |
|
| 19 |
-
Engine_rpm=st.number_input('
|
| 20 |
-
Lub_oil_pressure= st.number_input('
|
| 21 |
-
Fuel_pressure= st.number_input('
|
| 22 |
-
Coolant_pressure=st.number_input('
|
| 23 |
-
lub_oil_temp=st.number_input('
|
| 24 |
-
Coolant_temp=st.number_input('
|
| 25 |
|
| 26 |
input_data = pd.DataFrame([{
|
| 27 |
'Engine_rpm': Engine_rpm,
|
|
|
|
| 16 |
|
| 17 |
# Collect user input
|
| 18 |
|
| 19 |
+
Engine_rpm=st.number_input('Engine_rpm',min_value=60,max_value=2240,value=746)
|
| 20 |
+
Lub_oil_pressure= st.number_input('Lub_oil_pressure',min_value=0.000000,max_value=8.000000,value=3.000000)
|
| 21 |
+
Fuel_pressure= st.number_input('Fuel_pressure',min_value=0.000000,max_value=22.000000,value=6.000000)
|
| 22 |
+
Coolant_pressure=st.number_input('Coolant_pressure',min_value=0.000000,max_value=8.000000,value=2.000000)
|
| 23 |
+
lub_oil_temp=st.number_input('lub_oil_temp',min_value=70.000000,max_value=90.000000,value=76.000000)
|
| 24 |
+
Coolant_temp=st.number_input('Coolant_temp',min_value=60.000000,max_value=196.000000,value=78.000000)
|
| 25 |
|
| 26 |
input_data = pd.DataFrame([{
|
| 27 |
'Engine_rpm': Engine_rpm,
|