ghuman7 commited on
Commit
c12c524
verified
1 Parent(s): 065d642

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +73 -88
app.py CHANGED
@@ -1,96 +1,81 @@
1
  import streamlit as st
2
- import requests
3
- import json
4
- import os
 
5
 
6
- # Get the API token from environment variables or secrets
7
- API_URL = "https://api-inference.huggingface.co/models/ehcalabres/wav2vec2-lg-xlsr-en-speech-emotion-recognition"
8
- headers = {"Authorization": f"Bearer {os.getenv('HF_API_TOKEN')}"}
 
9
 
10
- # Function to query the Hugging Face API
11
- def query_api(audio_file):
12
- with open(audio_file, "rb") as f:
13
- response = requests.post(API_URL, headers=headers, data=f)
14
- try:
15
- response_json = response.json()
16
- except json.JSONDecodeError:
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
- responses.append("just chill and relax")
37
- else:
38
- responses.append("*** MILD DEPRESSION ***")
39
- if neg_rate <= 10.0:
40
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
41
- responses.append("My Response: Everything is a-okay! There's absolutely nothing wrong 馃榿馃榿\n\t\tYou're probably cuddling a fluffy kitten right now")
42
- elif neg_rate > 10.0 and neg_rate <= 20.0:
43
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
44
- responses.append("My Response: You are a bit frustrated and disappointed\n\t\tBut you're easily distracted and cheered with little effort 馃榿馃榿")
45
- elif neg_rate > 20.0 and neg_rate <= 30.0:
46
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
47
- responses.append("My Response: Things are bothering you but you're coping up\n\t\tYou might be overtired and hungry\n\t\tThe emotional equivalent of a headache 馃榿馃榿")
48
- elif neg_rate > 30.0 and neg_rate <= 60.0:
49
- responses.append("*** MODERATE DEPRESSION ***")
50
- if neg_rate > 30.0 and neg_rate <= 40.0:
51
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
52
- responses.append("My Response: Today is slightly a bad day for you.\n\t\tYou still have the skills to get through it, but be gentle with yourself\n\t\tUse self-care strategies 馃榿馃榿")
53
- elif neg_rate > 40.0 and neg_rate <= 50.0:
54
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
55
- responses.append("My Response: Your mental health is starting to impact your everyday life.\n\t\tEasy things are becoming difficult")
56
- elif neg_rate > 50.0 and neg_rate <= 60.0:
57
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
58
- responses.append("My Response: You are not able to do things the way you usually do them due to your mental health.\n\t\tImpulsive and compulsive thoughts might be difficult to cope with")
59
- elif neg_rate > 60.0 and neg_rate <= 100.0:
60
- responses.append("*** SEVERE DEPRESSION ***")
61
- if neg_rate > 60.0 and neg_rate <= 70.0:
62
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
63
- responses.append("My Response: You are losing interest in activities that used to be enjoyable.\n\t\tYou should definitely seek help\n\t\tThis is becoming serious 鈽光樄")
64
- elif neg_rate > 70.0 and neg_rate <= 80.0:
65
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
66
- responses.append("My Response: You can't ignore your struggles now, It's HIGH time!.\n\t\tYou may have issues sleeping, eating, having fun, socializing, and work/study\n\t\tYour mental health is affecting almost all parts of your life 鈽光樄")
67
- elif neg_rate > 80.0 and neg_rate <= 90.0:
68
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
69
- responses.append("My Response: You are at a critical point!!!.\n\t\tYou aren't functioning anymore and need urgent help.\n\t\tYou may be a risk to yourself or others if left untreated 鈽光樄")
70
- elif neg_rate > 90.0 and neg_rate <= 100.0:
71
- responses.append(f"\nDepression Scale Detected: {round(neg_rate) / 10}\n")
72
- responses.append("My Response: The worst mental and emotional distress possible.\n\t\tYou can't imagine things getting any better now and you might think it's all over for you (SUICIDE).\n\t\tContact a crisis line or get started with treatment immediately. 鈽光樄")
73
- return "\n".join(responses)
74
-
75
- # Streamlit app
76
- def main():
77
- st.title("Emotion Detection and Depression Scale Analysis")
78
-
79
- audio_file = st.file_uploader("Upload an audio file", type=["wav"])
80
- if audio_file:
81
- st.audio(audio_file, format="audio/wav")
 
 
 
 
 
 
82
 
83
- if st.button("Analyze"):
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
- # Query API and compute neg_rate
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 __name__ == "__main__":
96
- main()
 
 
 
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)