Update app.py
Browse files
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 =
|
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
|