Antonio
commited on
Commit
•
4eeb59f
1
Parent(s):
6dc413e
Added Examples
Browse files
app.py
CHANGED
@@ -261,6 +261,14 @@ iface = gr.Interface(
|
|
261 |
fn=predict,
|
262 |
inputs=inputs,
|
263 |
outputs=outputs,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
title="Video and Audio Emotion Prediction",
|
265 |
description="Upload a video to get emotion predictions from selected video and audio models."
|
266 |
)
|
|
|
261 |
fn=predict,
|
262 |
inputs=inputs,
|
263 |
outputs=outputs,
|
264 |
+
examples=[
|
265 |
+
["./Angry.mp4", "60% Accuracy", "60% Accuracy", "Averaging"],
|
266 |
+
["./Disgust.mp4", "80% Accuracy", "60% Accuracy", "Weighted Average"],
|
267 |
+
["./Fearful.mp4", "60% Accuracy", "60% Accuracy", "Confidence Level"],
|
268 |
+
["./Happy.mp4", "80% Accuracy", "60% Accuracy", "Dynamic Weighting"],
|
269 |
+
["./Neutral.mp4", "80% Accuracy", "60% Accuracy", "Rule-Based"],
|
270 |
+
["./Sad.mp4", "60% Accuracy", "60% Accuracy", "Weighted Average"]
|
271 |
+
],
|
272 |
title="Video and Audio Emotion Prediction",
|
273 |
description="Upload a video to get emotion predictions from selected video and audio models."
|
274 |
)
|