Abdo-Alshoki commited on
Commit
e43cc49
·
verified ·
1 Parent(s): 33c7d39

updated the app.py and gradio interface

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -88,15 +88,18 @@ def classify_video(video):
88
 
89
  label = "Non-violent" if prob >= 0.5 else "Violent"
90
 
91
- return label, prob
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=[gr.Text(), gr.Number()], # Outputs classification and probability
 
 
 
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
  )