cipherunhsiv commited on
Commit
ee07178
·
verified ·
1 Parent(s): fcb4400

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ action_map = {
20
  def action(e1, e2, e3, e4, e5, e6, e7, e8):
21
  # Duplicate each value 3 times to create a 24-length input
22
  input_data_reshaped = np.array(input_data).reshape(1, -1)
23
- predicted_label = loaded_model.predict(input_data_reshaped)[0]
24
  return action_map.get(predicted_class[0], "Unknown action")
25
 
26
  # Define Gradio UI with improved styling
 
20
  def action(e1, e2, e3, e4, e5, e6, e7, e8):
21
  # Duplicate each value 3 times to create a 24-length input
22
  input_data_reshaped = np.array(input_data).reshape(1, -1)
23
+ predicted_label = model.predict(input_data_reshaped)[0]
24
  return action_map.get(predicted_class[0], "Unknown action")
25
 
26
  # Define Gradio UI with improved styling