updated the app.py and gradio interface
Browse files
app.py
CHANGED
@@ -88,15 +88,18 @@ def classify_video(video):
|
|
88 |
|
89 |
label = "Non-violent" if prob >= 0.5 else "Violent"
|
90 |
|
91 |
-
|
92 |
-
|
93 |
|
|
|
94 |
|
95 |
# Set up the Gradio interface
|
96 |
interface = gr.Interface(
|
97 |
fn=classify_video,
|
98 |
inputs=gr.Video(), # Allows video upload
|
99 |
-
outputs=[
|
|
|
|
|
|
|
100 |
title="Violence Detection in Videos",
|
101 |
description="Upload a video to classify it as violent or non-violent with a probability score."
|
102 |
)
|
|
|
88 |
|
89 |
label = "Non-violent" if prob >= 0.5 else "Violent"
|
90 |
|
91 |
+
violent_prob_percentage = f"{round((1 - prob) * 100, 2)}% chance of being violent"
|
|
|
92 |
|
93 |
+
return label, violent_prob_percentage
|
94 |
|
95 |
# Set up the Gradio interface
|
96 |
interface = gr.Interface(
|
97 |
fn=classify_video,
|
98 |
inputs=gr.Video(), # Allows video upload
|
99 |
+
outputs=[
|
100 |
+
gr.Text(label="Classification"), # Label for classification output
|
101 |
+
gr.Text(label="Violence Probability") # Label for probability output with text
|
102 |
+
],
|
103 |
title="Violence Detection in Videos",
|
104 |
description="Upload a video to classify it as violent or non-violent with a probability score."
|
105 |
)
|