Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,96 +1,81 @@
|
|
1 |
import streamlit as st
|
2 |
-
import
|
3 |
-
import
|
4 |
-
import
|
|
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
|
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
with
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
st.error("Error decoding JSON from API response.")
|
18 |
-
response_json = {}
|
19 |
-
return response_json
|
20 |
-
|
21 |
-
# Function to compute the neg_rate from API response
|
22 |
-
def compute_neg_rate(emotion_data):
|
23 |
-
if isinstance(emotion_data, list): # Ensure the data is a list
|
24 |
-
neg_emotions = ["anger", "disgust", "fear", "sadness"] # Example negative emotions
|
25 |
-
neg_rate = sum([emotion['score'] for emotion in emotion_data if emotion['label'].lower() in neg_emotions])
|
26 |
-
return neg_rate * 100 # Scale to a percentage
|
27 |
-
else:
|
28 |
-
st.error("Unexpected API response format.")
|
29 |
-
return 0
|
30 |
-
|
31 |
-
# Depression scale logic
|
32 |
-
def analyze_depression(neg_rate):
|
33 |
-
responses = []
|
34 |
if neg_rate <= 30.0:
|
35 |
if neg_rate <= 5.0:
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
elif neg_rate
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
|
84 |
-
# Save uploaded file to a temporary file
|
85 |
-
with open("temp_audio.wav", "wb") as f:
|
86 |
-
f.write(audio_file.read())
|
87 |
|
88 |
-
|
89 |
-
emotion_data = query_api("temp_audio.wav")
|
90 |
-
st.write("API Response:", emotion_data) # Debugging line to inspect response
|
91 |
-
neg_rate = compute_neg_rate(emotion_data)
|
92 |
-
result = analyze_depression(neg_rate)
|
93 |
-
st.text(result)
|
94 |
|
95 |
-
if
|
96 |
-
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
from transformers import Wav2Vec2ForSequenceClassification, Wav2Vec2Tokenizer
|
3 |
+
import torch
|
4 |
+
import numpy as np
|
5 |
+
import io
|
6 |
|
7 |
+
# Load the model and tokenizer
|
8 |
+
model_name = "harshit345/xlsr-wav2vec-speech-emotion-recognition"
|
9 |
+
model = Wav2Vec2ForSequenceClassification.from_pretrained(model_name)
|
10 |
+
tokenizer = Wav2Vec2Tokenizer.from_pretrained(model_name)
|
11 |
|
12 |
+
def analyze_emotion(audio_bytes):
|
13 |
+
audio_input = tokenizer(audio_bytes, return_tensors="pt", padding="longest")
|
14 |
+
with torch.no_grad():
|
15 |
+
logits = model(**audio_input).logits
|
16 |
+
prob = torch.sigmoid(logits).numpy().flatten()
|
17 |
+
neg_rate = prob[0] * 100 # Assuming the first element is the negative emotion probability
|
18 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
if neg_rate <= 30.0:
|
20 |
if neg_rate <= 5.0:
|
21 |
+
return "just chill and relax"
|
22 |
+
elif neg_rate <= 10.0:
|
23 |
+
return (f"*** MILD DEPRESSION ***\n"
|
24 |
+
f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
25 |
+
f"My Response :\tEverything is a-okay! There's absolutely nothing wrong 馃榿馃榿\n"
|
26 |
+
f"\t\tYou're probably cuddling a fluffy kitten right now")
|
27 |
+
elif neg_rate <= 20.0:
|
28 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
29 |
+
f"My Response :\tYou are a bit frustrated and disappointed\n"
|
30 |
+
f"\t\tBut you're easily distracted and cheered with little effort 馃榿馃榿")
|
31 |
+
elif neg_rate <= 30.0:
|
32 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
33 |
+
f"My Response :\tThings are bothering you but you're coping up\n"
|
34 |
+
f"\t\tYou might be over tired and hungry\n"
|
35 |
+
f"\t\tThe emotional equivalent of a headache 馃榿馃榿")
|
36 |
+
elif neg_rate <= 60.0:
|
37 |
+
if neg_rate <= 40.0:
|
38 |
+
return (f"*** MODERATE DEPRESSION ***\n"
|
39 |
+
f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
40 |
+
f"My Response :\tToday is slightly bad for you.\n"
|
41 |
+
f"\t\tYou still have the skills to get through it, but be gentle with yourself\n"
|
42 |
+
f"\t\tUse self-care strategies 馃榿馃榿")
|
43 |
+
elif neg_rate <= 50.0:
|
44 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
45 |
+
f"My Response :\tYour mental health is starting to impact your everyday life.\n"
|
46 |
+
f"\t\tEasy things are becoming difficult")
|
47 |
+
elif neg_rate <= 60.0:
|
48 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
49 |
+
f"My Response :\tYou are not able to do things the way usually you do them due to your mental health.\n"
|
50 |
+
f"\t\tImpulsive and compulsive thoughts might be difficult to cope with")
|
51 |
+
elif neg_rate <= 100.0:
|
52 |
+
if neg_rate <= 70.0:
|
53 |
+
return (f"*** SEVERE DEPRESSION ***\n"
|
54 |
+
f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
55 |
+
f"My Response :\tYou are losing interest in the activities that used to be enjoyable.\n"
|
56 |
+
f"\t\tYou should definitely seek help\n"
|
57 |
+
f"\t\tThis is becoming serious 鈽光樄")
|
58 |
+
elif neg_rate <= 80.0:
|
59 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
60 |
+
f"My Response :\tYou can't ignore your struggles now, It's HIGH time!.\n"
|
61 |
+
f"\t\tYou may have issues sleeping, eating, having fun, socializing, and work/study\n"
|
62 |
+
f"\t\tYour mental health is affecting almost all parts of your life 鈽光樄")
|
63 |
+
elif neg_rate <= 90.0:
|
64 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
65 |
+
f"My Response :\tYou are at a critical point !!!\n"
|
66 |
+
f"\t\tYou aren't functioning anymore and need urgent help.\n"
|
67 |
+
f"\t\tYou may be a risk to yourself or others if left untreated 鈽光樄")
|
68 |
+
elif neg_rate <= 100.0:
|
69 |
+
return (f"\nDepression Scale Detected : {round(neg_rate) / 10}\n"
|
70 |
+
f"My Response :\tThe worst mental and emotional distress possible.\n"
|
71 |
+
f"\t\tYou can't imagine things getting any better now and you might think it's all over for you (SUICIDE).\n"
|
72 |
+
f"\t\tContact crisis line or get started for the treatment immediately. 鈽光樄")
|
73 |
|
74 |
+
st.title("Emotion Detection App")
|
|
|
|
|
|
|
75 |
|
76 |
+
uploaded_file = st.file_uploader("Choose an audio file", type=["wav"])
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
+
if uploaded_file is not None:
|
79 |
+
audio_bytes = uploaded_file.read()
|
80 |
+
result = analyze_emotion(audio_bytes)
|
81 |
+
st.write(result)
|