Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -24,11 +24,11 @@ tool_wear = st.number_input("Tool Wear (min)", min_value=0, max_value=300, value
|
|
| 24 |
|
| 25 |
# Assemble input into DataFrame
|
| 26 |
input_data = pd.DataFrame([{
|
| 27 |
-
'
|
| 28 |
-
'
|
| 29 |
-
'
|
| 30 |
'Torque': torque,
|
| 31 |
-
'
|
| 32 |
'Type': Type
|
| 33 |
}])
|
| 34 |
|
|
|
|
| 24 |
|
| 25 |
# Assemble input into DataFrame
|
| 26 |
input_data = pd.DataFrame([{
|
| 27 |
+
'Air temperature': air_temp,
|
| 28 |
+
'Process temperature': process_temp,
|
| 29 |
+
'Rotational speed': rot_speed,
|
| 30 |
'Torque': torque,
|
| 31 |
+
'Tool wear': tool_wear,
|
| 32 |
'Type': Type
|
| 33 |
}])
|
| 34 |
|