rakeshunnee commited on
Commit
16e0ca9
·
verified ·
1 Parent(s): 32e1c82

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -25,11 +25,11 @@ tool_wear = st.number_input("Tool Wear (min)", min_value=0, max_value=300, value
25
  # Assemble input into DataFrame
26
  input_data = pd.DataFrame([
27
  {
28
- 'Air_temperature': air_temp,
29
- 'Process_temperature': process_temp,
30
- 'Rotational_speed': rot_speed,
31
  'Torque': torque,
32
- 'Tool_wear': tool_wear,
33
  'Type': Type
34
  }])
35
 
 
25
  # Assemble input into DataFrame
26
  input_data = pd.DataFrame([
27
  {
28
+ 'Air temperature': air_temp,
29
+ 'Process temperature': process_temp,
30
+ 'Rotational speed': rot_speed,
31
  'Torque': torque,
32
+ 'Tool wear': tool_wear,
33
  'Type': Type
34
  }])
35