File size: 17,492 Bytes
288a1a8 a1e22ad 288a1a8 0bdb9f3 288a1a8 8faa100 a1e22ad 288a1a8 a1e22ad 8faa100 288a1a8 0bdb9f3 a1e22ad 288a1a8 0bdb9f3 288a1a8 0622be2 288a1a8 0bdb9f3 a1e22ad 0bdb9f3 288a1a8 a1e22ad 8faa100 288a1a8 a1e22ad 8faa100 b6d847f 8faa100 288a1a8 a1e22ad 288a1a8 a1e22ad 8faa100 b6d847f 288a1a8 a1e22ad d608bfb a1e22ad 288a1a8 8faa100 b6d847f 8faa100 288a1a8 0bdb9f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | """
Moodwave β Text + Audio Emotion Detector (themed demo)
========================================================
Matches the tactical/HUD aesthetic of radioweb.info.
Run with: python app.py
Then open the local URL Gradio prints.
"""
import os
import warnings
os.environ["TOKENIZERS_PARALLELISM"] = "false"
warnings.filterwarnings("ignore")
import gradio as gr
import pandas as pd
from transformers import pipeline as hf_pipeline
from spotify_client import search_tracks_for_mood, tracks_to_html, spotify_configured
# ββ Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
TARGET_LABELS = ["anger", "fear", "joy", "neutral", "sadness"]
TEXT_ZERO_SHOT_NAME = "SamLowe/roberta-base-go_emotions"
# Public Wav2Vec2 model fine-tuned for speech emotion recognition.
# Used as a fallback since the original university-GPU-trained weights
# are no longer available β mirrors the same "public model fallback"
# pattern already used for text mode above.
AUDIO_MODEL_NAME = "Dpngtm/wav2vec2-emotion-recognition"
# Late-fusion weights from the research project (text=0.2 / audio=0.8 gave
# the best F1 = 0.850 β see README "Multimodal" results). Exposed as sliders
# below so visitors can experiment, but these are the defaults.
DEFAULT_TEXT_WEIGHT = 0.2
DEFAULT_AUDIO_WEIGHT = 0.8
MOOD_MAP = {
"admiration": "joy", "amusement": "joy",
"anger": "anger", "annoyance": "anger",
"approval": "joy", "caring": "joy",
"confusion": "neutral", "curiosity": "neutral",
"desire": "joy", "disappointment": "sadness",
"disapproval": "anger", "disgust": "anger",
"embarrassment": "sadness", "excitement": "joy",
"fear": "fear", "gratitude": "joy",
"grief": "sadness", "joy": "joy",
"love": "joy", "nervousness": "fear",
"optimism": "joy", "pride": "joy",
"realization": "neutral", "relief": "joy",
"remorse": "sadness", "sadness": "sadness",
"surprise": "neutral", "neutral": "neutral",
}
# Maps the audio model's RAVDESS-style output labels onto the same
# 5-mood scheme used by the text model, so both tabs feel consistent.
AUDIO_MOOD_MAP = {
"angry": "anger",
"anger": "anger",
"disgust": "anger",
"fear": "fear",
"fearful": "fear",
"happy": "joy",
"happiness": "joy",
"joy": "joy",
"neutral": "neutral",
"calm": "neutral",
"sad": "sadness",
"sadness": "sadness",
"surprise": "neutral",
"surprised": "neutral",
}
MOOD_EMOJI = {
"anger": "π΄",
"fear": "π£",
"joy": "π’",
"neutral": "βͺ",
"sadness": "π΅",
}
print("Loading text modelβ¦")
_text_pipe = hf_pipeline(
"text-classification",
model=TEXT_ZERO_SHOT_NAME,
top_k=None,
truncation=True,
max_length=128,
)
print("Text model loaded.")
print("Loading audio modelβ¦")
try:
_audio_pipe = hf_pipeline(
"audio-classification",
model=AUDIO_MODEL_NAME,
)
print("Audio model loaded.")
except Exception as e:
print(f"Audio model failed to load: {e}")
_audio_pipe = None
def predict_text(text: str):
text = (text or "").strip()
if not text:
return None
raw = _text_pipe(text)[0]
mood_scores = {m: 0.0 for m in TARGET_LABELS}
for item in raw:
mood = MOOD_MAP.get(item["label"])
if mood:
mood_scores[mood] += item["score"]
total = sum(mood_scores.values()) or 1.0
scores = {m: v / total for m, v in mood_scores.items()}
best = max(scores, key=scores.get)
return {"mood": best, "confidence": scores[best], "scores": scores}
def predict_audio(audio_path):
if audio_path is None or _audio_pipe is None:
return None
raw = _audio_pipe(audio_path, top_k=None)
mood_scores = {m: 0.0 for m in TARGET_LABELS}
for item in raw:
mood = AUDIO_MOOD_MAP.get(item["label"].lower())
if mood:
mood_scores[mood] += item["score"]
total = sum(mood_scores.values()) or 1.0
scores = {m: v / total for m, v in mood_scores.items()}
best = max(scores, key=scores.get)
return {"mood": best, "confidence": scores[best], "scores": scores}
def fuse_scores(text_scores, audio_scores, text_weight=DEFAULT_TEXT_WEIGHT, audio_weight=DEFAULT_AUDIO_WEIGHT):
"""
Combine text + audio mood-probability vectors into one fused mood.
Falls back to whichever single modality is available if only one
was provided.
"""
if text_scores and audio_scores:
total_w = (text_weight + audio_weight) or 1.0
fused = {
m: (text_scores.get(m, 0.0) * text_weight + audio_scores.get(m, 0.0) * audio_weight) / total_w
for m in TARGET_LABELS
}
elif text_scores:
fused = dict(text_scores)
elif audio_scores:
fused = dict(audio_scores)
else:
return None
best = max(fused, key=fused.get)
return {"mood": best, "confidence": fused[best], "scores": fused}
def scores_to_bar_data(scores: dict):
items = sorted(scores.items(), key=lambda x: -x[1])
labels = [f"{MOOD_EMOJI.get(m, '')} {m.upper()}" for m, _ in items]
values = [round(v * 100, 1) for _, v in items]
return labels, values
def run_text_only(text):
pred = predict_text(text)
if pred is None:
return "ENTER TEXT TO ANALYZE", gr.BarPlot()
labels, values = scores_to_bar_data(pred["scores"])
mood = pred["mood"]
emoji = MOOD_EMOJI.get(mood, "")
result = f"{emoji} **{mood.upper()}** β {pred['confidence']*100:.1f}% confidence"
df = pd.DataFrame({"mood": labels, "score": values})
return result, gr.BarPlot(value=df, x="mood", y="score", title="MOOD PROBABILITY (%)", y_lim=[0, 100])
def run_audio_only(audio_path):
if _audio_pipe is None:
return "AUDIO MODEL UNAVAILABLE β TRY AGAIN LATER", gr.BarPlot()
pred = predict_audio(audio_path)
if pred is None:
return "RECORD OR UPLOAD AUDIO TO ANALYZE", gr.BarPlot()
labels, values = scores_to_bar_data(pred["scores"])
mood = pred["mood"]
emoji = MOOD_EMOJI.get(mood, "")
result = f"{emoji} **{mood.upper()}** β {pred['confidence']*100:.1f}% confidence"
df = pd.DataFrame({"mood": labels, "score": values})
return result, gr.BarPlot(value=df, x="mood", y="score", title="MOOD PROBABILITY (%)", y_lim=[0, 100])
def run_fusion(text, audio_path, text_weight, audio_weight):
"""
The missing piece: combine TEXT + AUDIO mood detection into one fused
signal, then turn that fused mood into an actual track recommendation
(the "accumulation of these two -> music" step).
"""
text_pred = predict_text(text)
audio_pred = predict_audio(audio_path) if _audio_pipe is not None else None
text_scores = text_pred["scores"] if text_pred else None
audio_scores = audio_pred["scores"] if audio_pred else None
fused = fuse_scores(text_scores, audio_scores, text_weight, audio_weight)
if fused is None:
return (
"ENTER TEXT AND/OR AUDIO TO ANALYZE",
gr.BarPlot(),
"",
"",
)
labels, values = scores_to_bar_data(fused["scores"])
mood = fused["mood"]
emoji = MOOD_EMOJI.get(mood, "")
sources = []
if text_scores:
sources.append("TEXT")
if audio_scores:
sources.append("AUDIO")
source_str = " + ".join(sources)
result = (
f"{emoji} **{mood.upper()}** β {fused['confidence']*100:.1f}% confidence "
f"(fused from {source_str})"
)
df = pd.DataFrame({"mood": labels, "score": values})
chart = gr.BarPlot(value=df, x="mood", y="score", title="FUSED MOOD PROBABILITY (%)", y_lim=[0, 100])
try:
tracks = search_tracks_for_mood(mood, n=5)
tracks_html = tracks_to_html(tracks, mood)
playlist_label = f"### {emoji} Recommended for **{mood.upper()}**"
except RuntimeError as e:
tracks_html = f"<p style='color:#ff4655'>{e}</p>"
playlist_label = ""
return result, chart, playlist_label, tracks_html
# ββ Tactical theme CSS β matches radioweb.info palette βββββββββββββββββββββ
CSS = """
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Syne:wght@700;800&display=swap');
:root, .gradio-container {
--body-background-fill: #050510 !important;
--background-fill-primary: #0a0a18 !important;
--background-fill-secondary: #0a0a18 !important;
--block-background-fill: rgba(255,255,255,0.02) !important;
--block-border-color: rgba(255,255,255,0.1) !important;
--block-label-background-fill: transparent !important;
--block-label-text-color: rgba(255,255,255,0.55) !important;
--block-label-border-color: rgba(255,255,255,0.1) !important;
--block-title-text-color: #ffffff !important;
--body-text-color: #ffffff !important;
--body-text-color-subdued: rgba(255,255,255,0.45) !important;
--border-color-primary: rgba(255,255,255,0.1) !important;
--border-color-accent: #ff4655 !important;
--border-color-accent-subdued: rgba(255,70,85,0.4) !important;
--input-background-fill: #0d0d1f !important;
--input-background-fill-hover: #11112a !important;
--input-background-fill-focus: #11112a !important;
--input-border-color: rgba(255,255,255,0.15) !important;
--input-border-color-hover: #ff4655 !important;
--input-border-color-focus: #ff4655 !important;
--button-primary-background-fill: #ff4655 !important;
--button-primary-background-fill-hover: #ff5e6b !important;
--button-primary-border-color: #ff4655 !important;
--button-primary-border-color-hover: #ff5e6b !important;
--button-secondary-background-fill: rgba(255,255,255,0.06) !important;
--button-secondary-background-fill-hover: rgba(255,255,255,0.12) !important;
--button-secondary-border-color: rgba(255,255,255,0.15) !important;
--panel-background-fill: #0a0a18 !important;
--panel-border-color: rgba(255,255,255,0.1) !important;
--table-even-background-fill: #0a0a18 !important;
--table-odd-background-fill: #0d0d1f !important;
--table-border-color: rgba(255,255,255,0.1) !important;
--code-background-fill: #0a0a18 !important;
--error-background-fill: rgba(255,70,85,0.08) !important;
--error-border-color: #ff4655 !important;
}
.gradio-container {
background: #050510 !important;
font-family: 'JetBrains Mono', monospace !important;
}
h1, h2, h3 {
font-family: 'Syne', sans-serif !important;
font-weight: 800 !important;
letter-spacing: -0.5px;
color: #ffffff !important;
}
#title-block {
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 16px;
margin-bottom: 12px;
}
.accent { color: #ff4655 !important; }
label span, .label-wrap span {
font-size: 0.7rem !important;
letter-spacing: 0.15em !important;
text-transform: uppercase !important;
}
button.primary, button.primary span {
font-family: 'JetBrains Mono', monospace !important;
letter-spacing: 0.15em !important;
text-transform: uppercase !important;
font-size: 0.75rem !important;
font-weight: 700 !important;
}
button.primary:hover {
box-shadow: 0 0 20px rgba(255,70,85,0.4) !important;
}
.result-box {
font-size: 1.1rem !important;
padding: 16px !important;
border-left: 3px solid #ff4655 !important;
}
a { color: #00ccff !important; }
.gr-samples-table td, .gr-sample-textbox, table.gr-dataset td {
color: #ffffff !important;
background: rgba(255,255,255,0.04) !important;
border-color: rgba(255,255,255,0.15) !important;
}
#examples-wrap button {
color: #ffffff !important;
background: rgba(255,255,255,0.05) !important;
border-color: rgba(255,255,255,0.15) !important;
}
#examples-wrap button span {
color: #ffffff !important;
}
#examples-wrap button:hover {
background: rgba(255,70,85,0.1) !important;
border-color: #ff4655 !important;
}
.tab-nav button {
font-family: 'JetBrains Mono', monospace !important;
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
font-size: 0.75rem !important;
}
footer { display: none !important; }
"""
with gr.Blocks(title="Moodwave β Emotion Detector", css=CSS, theme=gr.themes.Base(
primary_hue="red", neutral_hue="slate",
)) as demo:
with gr.Column(elem_id="title-block"):
gr.Markdown(
"# MOODWAVE <span class='accent'>//</span> EMOTION DETECTOR\n"
"Multimodal Emotion Recognition project. Analyze emotion from "
"**text** or **speech audio**, mapped to 5 moods β then fuse both "
"signals together to get matching track recommendations."
)
with gr.Tabs():
with gr.Tab("TEXT"):
txt_input = gr.Textbox(
label="INPUT TEXT",
placeholder="Type how you're feeling, or anything at allβ¦",
lines=4,
)
txt_btn = gr.Button("ANALYZE", variant="primary")
txt_result = gr.Markdown(elem_classes="result-box", value="ENTER TEXT TO ANALYZE")
txt_chart = gr.BarPlot(
x="mood", y="score",
title="MOOD PROBABILITY (%)",
y_lim=[0, 100],
)
txt_btn.click(run_text_only, inputs=txt_input, outputs=[txt_result, txt_chart])
with gr.Group(elem_id="examples-wrap"):
gr.Examples(
examples=[
["I finally got the internship offer, I'm over the moon!"],
["I don't really care either way, it is what it is."],
["This keeps happening and I'm so done with it."],
["I keep thinking something terrible is about to happen."],
["I miss how things used to be."],
],
inputs=txt_input,
)
with gr.Tab("AUDIO"):
gr.Markdown(
"Record or upload a short voice clip. Powered by a public "
"Wav2Vec2 speech-emotion model (fallback, since the original "
"fine-tuned weights trained on RAVDESS are not hosted here).\n\n"
"**Note:** this model was trained on actors performing exaggerated "
"emotions, so calm/normal speaking voices often read as NEUTRAL "
"or SADNESS even when you're not sad β that's a dataset bias, not "
"a bug. For best results, try adding clear vocal expression."
)
audio_input = gr.Audio(
label="VOICE INPUT",
sources=["microphone", "upload"],
type="filepath",
)
audio_btn = gr.Button("ANALYZE", variant="primary")
audio_result = gr.Markdown(elem_classes="result-box", value="RECORD OR UPLOAD AUDIO TO ANALYZE")
audio_chart = gr.BarPlot(
x="mood", y="score",
title="MOOD PROBABILITY (%)",
y_lim=[0, 100],
)
audio_btn.click(run_audio_only, inputs=audio_input, outputs=[audio_result, audio_chart])
with gr.Tab("π΅ MOOD β MUSIC"):
gr.Markdown(
"This is the **accumulation** step: combine text + voice into one "
"fused mood, then get matching track recommendations (powered by "
"Apple's free iTunes Search API β 30-second previews, no login "
"needed). Fill in either or both β when both are given, they're "
"blended using the project's research fusion weights (text 20% / "
"audio 80%, F1 = 0.850); adjust the sliders to experiment."
)
with gr.Row():
fusion_text = gr.Textbox(
label="TEXT (OPTIONAL)",
placeholder="Type how you're feelingβ¦",
lines=3,
)
fusion_audio = gr.Audio(
label="VOICE (OPTIONAL)",
sources=["microphone", "upload"],
type="filepath",
)
with gr.Row():
text_weight_slider = gr.Slider(0, 1, value=DEFAULT_TEXT_WEIGHT, step=0.05, label="TEXT WEIGHT")
audio_weight_slider = gr.Slider(0, 1, value=DEFAULT_AUDIO_WEIGHT, step=0.05, label="AUDIO WEIGHT")
fusion_btn = gr.Button("ANALYZE + RECOMMEND", variant="primary")
fusion_result = gr.Markdown(elem_classes="result-box", value="ENTER TEXT AND/OR AUDIO TO ANALYZE")
fusion_chart = gr.BarPlot(
x="mood", y="score",
title="FUSED MOOD PROBABILITY (%)",
y_lim=[0, 100],
)
playlist_label = gr.Markdown("")
playlist_html = gr.HTML("")
fusion_btn.click(
run_fusion,
inputs=[fusion_text, fusion_audio, text_weight_slider, audio_weight_slider],
outputs=[fusion_result, fusion_chart, playlist_label, playlist_html],
)
gr.Markdown(
"---\n"
"**MULTIMODAL EMOTION RECOGNITION** Β· text + speech fusion research project Β· "
"[View full project on GitHub](https://github.com/sradowana-ux/moodwave)"
)
if __name__ == "__main__":
demo.launch()
|