Spaces:
Running on Zero
Running on Zero
File size: 15,159 Bytes
87094a8 38b92ca 87094a8 6881841 87094a8 6881841 87094a8 d0ee797 6881841 87094a8 e98acf7 4879352 87094a8 6881841 d0ee797 72f419e d0ee797 72f419e d0ee797 87094a8 38b92ca | 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 | """
app.py β Audio Mood Classifier: Gradio inference app.
Pipeline:
Stage 1 β Sample the uploaded MP3 at 3 evenly-spaced positions.
Stage 2 β Extract features via ASTFeatureExtractor.
Stage 3 β Run model inference β per-segment logits.
Stage 4 β Aggregate scores across segments (late fusion) β final prediction.
Stage 5 β Gradio UI.
"""
from __future__ import annotations
import os
# HF Spaces ignores launch(ssr_mode=False); this env var is what actually disables SSR.
os.environ.setdefault("GRADIO_SSR_MODE", "false")
import warnings
from pathlib import Path
# ββ Compatibility shim ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Some gradio versions import HfFolder from huggingface_hub, which was removed
# in newer huggingface_hub releases. Restore it before gradio is imported.
try:
from huggingface_hub import HfFolder # noqa: F401 β just check it exists
except ImportError:
import huggingface_hub as _hfhub
class _HfFolder:
@staticmethod
def get_token() -> "str | None":
return _hfhub.get_token() if hasattr(_hfhub, "get_token") else None
@staticmethod
def save_token(token: str) -> None:
pass
@staticmethod
def delete_token() -> None:
pass
_hfhub.HfFolder = _HfFolder
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
import spaces # must be imported before torch on ZeroGPU Spaces
import librosa
import mutagen
import numpy as np
import pyloudnorm as pyln
import torch
import gradio as gr
from transformers import ASTFeatureExtractor, AutoModelForAudioClassification
# ββ Configuration βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MODEL_ID = "guyPerry/audio-mood-classifier"
# Audio settings β must match the training pipeline exactly.
SAMPLE_RATE = 16_000 # Hz β required by ASTFeatureExtractor
SEGMENT_DURATION = 10.0 # seconds per clip
NUM_SEGMENTS = 3 # clips sampled per song
GUARD_BUFFER = 30.0 # seconds skipped at each end of the track
TARGET_LUFS = -20.0 # EBU R128 integrated loudness target
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 1 β Audio sampling
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def sample_song(mp3_path: str | Path) -> list[np.ndarray]:
"""
Load an MP3 file and extract NUM_SEGMENTS evenly-spaced 10-second clips.
The first GUARD_BUFFER seconds and last GUARD_BUFFER seconds of the track
are skipped, exactly as the training dataset was constructed. Each clip is:
β’ resampled to SAMPLE_RATE (16 kHz) mono
β’ loudness-normalised to TARGET_LUFS (EBU R128 / BS.1770)
"""
mp3_path = Path(mp3_path)
meta = mutagen.File(str(mp3_path))
if meta is None or meta.info is None:
raise ValueError(f"Could not read audio metadata from '{mp3_path}'.")
total_secs = float(meta.info.length)
offsets = _segment_offsets(total_secs)
seg_samples = int(SEGMENT_DURATION * SAMPLE_RATE)
meter = pyln.Meter(SAMPLE_RATE)
segments: list[np.ndarray] = []
for offset in offsets:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
y, _ = librosa.load(
str(mp3_path),
sr=SAMPLE_RATE,
mono=True,
offset=offset,
duration=SEGMENT_DURATION,
)
if len(y) < seg_samples:
y = np.pad(y, (0, seg_samples - len(y)))
try:
loudness = meter.integrated_loudness(y.astype(np.float64))
y = pyln.normalize.loudness(
y.astype(np.float64), loudness, TARGET_LUFS
).astype(np.float32)
except Exception:
pass
y = np.clip(y, -1.0, 1.0)
segments.append(y)
return segments
def _segment_offsets(total_secs: float) -> list[float]:
"""Evenly-spaced start positions within [GUARD_BUFFER, total - GUARD_BUFFER]."""
n = NUM_SEGMENTS
seg = SEGMENT_DURATION
buf = GUARD_BUFFER
threshold = 2.0 * buf + n * seg
if total_secs >= threshold:
anchors = np.linspace(buf, total_secs - buf - seg, n)
else:
step = total_secs / n
anchors = [i * step for i in range(n)]
return [float(a) for a in anchors]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 2 β Feature extraction
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def extract_features(segments: list[np.ndarray]) -> dict:
"""
Run ASTFeatureExtractor on all segments and return a batched pt tensor dict.
The feature extractor is loaded once at module level (see bottom of file).
"""
inputs = feature_extractor(
[s.tolist() for s in segments],
sampling_rate=SAMPLE_RATE,
return_tensors="pt",
padding=True,
)
return inputs
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 3 β Model inference
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_inference(inputs: dict) -> np.ndarray:
"""
Forward pass through the AST model.
Returns raw logits as a numpy array of shape (NUM_SEGMENTS, num_classes).
"""
device = next(model.parameters()).device
inputs = {k: v.to(device) for k, v in inputs.items()}
with torch.no_grad():
logits = model(**inputs).logits # (NUM_SEGMENTS, num_classes)
return logits.cpu().numpy()
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 4 β Score aggregation (late fusion)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def aggregate_scores(logits: np.ndarray) -> dict[str, float]:
"""
Convert logits to probabilities, sum across all segments (late fusion),
and return a {label: score} dict.
Summing probabilities across segments means that classes consistently
preferred across all 3 clips score highest β this matches the
detail_aggregate_songs logic used during training evaluation.
"""
# Softmax per segment
exp_l = np.exp(logits - logits.max(axis=-1, keepdims=True))
probs = exp_l / exp_l.sum(axis=-1, keepdims=True) # (N, num_classes)
# Sum across segments then re-normalise to get a final probability.
summed = probs.sum(axis=0) # (num_classes,)
summed /= summed.sum()
# Prefer names from model config; fall back to the alphabetical mapping
# that create_label_to_id() produces (sorted order):
# 0 β calm_melancholic | 1 β energetic_upbeat | 2 β moderate_neutral
FALLBACK = {0: "calm_melancholic", 1: "energetic_upbeat", 2: "moderate_neutral"}
raw_id2label = model.config.id2label # keys are strings from JSON
id2label = {
i: (raw_id2label.get(str(i)) or raw_id2label.get(i) or FALLBACK.get(i, f"class_{i}"))
for i in range(len(summed))
}
# Replace any remaining LABEL_N placeholders with the fallback names
id2label = {
i: (FALLBACK.get(i, name) if name.startswith("LABEL_") else name)
for i, name in id2label.items()
}
return {id2label[i]: float(summed[i]) for i in range(len(summed))}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 5 β Gradio UI
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MOOD_EMOJI = {
"calm_melancholic": "π§",
"moderate_neutral": "π",
"energetic_upbeat": "β‘",
}
BAR_WIDTH = 24 # characters for the progress bar
def _bar(fraction: float) -> str:
filled = round(fraction * BAR_WIDTH)
return "β" * filled + "β" * (BAR_WIDTH - filled)
def song_display_name(audio_path: str | None) -> str:
"""Return a human-readable song name from metadata or the uploaded filename."""
if not audio_path:
return "No song selected"
path = Path(audio_path)
try:
meta = mutagen.File(str(path))
if meta is not None and getattr(meta, "tags", None):
tags = meta.tags
title = tags.get("TIT2") or tags.get("\xa9nam") or tags.get("TITLE")
artist = tags.get("TPE1") or tags.get("\xa9ART") or tags.get("ARTIST")
if title:
title = str(title[0] if isinstance(title, list) else title)
if artist:
artist = str(artist[0] if isinstance(artist, list) else artist)
return f"{artist} β {title}"
return title
except Exception:
pass
name = path.stem.replace("_", " ").strip()
return name or "Unknown song"
@spaces.GPU(duration=45)
def classify_mood(audio_path: str) -> str:
"""
Full pipeline: MP3 path β formatted mood prediction string.
This is the function Gradio calls on every user upload.
"""
if audio_path is None:
return "No audio provided."
segments = sample_song(audio_path)
inputs = extract_features(segments)
logits = run_inference(inputs)
scores = aggregate_scores(logits)
ranked = sorted(scores.items(), key=lambda x: x[1], reverse=True)
winner_label, winner_conf = ranked[0]
emoji = MOOD_EMOJI.get(winner_label, "π΅")
lines = [
f"Result: {emoji} {winner_label} ({winner_conf*100:.1f}%)",
"",
"Confidence breakdown:",
]
for label, conf in ranked:
e = MOOD_EMOJI.get(label, " ")
bar = _bar(conf)
lines.append(f" {e} {label:<20} {bar} {conf*100:5.1f}%")
return "\n".join(lines)
description = """
Upload any song (MP3) and the model will classify its overall mood β no lyrics, no metadata, raw audio only.
**How it works:** three 10-second clips are sampled from different points in the track (skipping the first and last 30 s to avoid intros/outros), each clip is classified independently by a fine-tuned [Audio Spectrogram Transformer](https://huggingface.co/MIT/ast-finetuned-audioset-10-10-0.4593), and the confidence scores are combined into a single final prediction.
**Mood categories:**
- π§ **calm_melancholic** β slow, introspective, melancholic feel
- π **moderate_neutral** β balanced, mid-energy, neutral character
- β‘ **energetic_upbeat** β fast, high-energy, upbeat and driving
> Because mood is subjective, the model targets broad emotional character rather than precise genre.
> **Note:** This Space runs on CPU rather than a dedicated paid GPU, so predictions can take a little while β especially the first time you click Submit.
**Links:**
- [Model card](https://huggingface.co/guyPerry/audio-mood-classifier)
- [Project on GitHub](https://github.com/PerryGu/audio_mood_classifier_hf)
"""
# ββ Load model and feature extractor once at startup βββββββββββββββββββββββββ
# Loaded at module scope so ZeroGPU can pack weights before the first request.
print(f"Loading model from '{MODEL_ID}' ...")
feature_extractor = ASTFeatureExtractor.from_pretrained(MODEL_ID)
model = AutoModelForAudioClassification.from_pretrained(MODEL_ID)
model.eval().to("cuda")
print("Model ready.")
# ββ UI layout βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Gradio 5 defaults to input-left / output-right even in Blocks; override with CSS.
CSS = """
#main-col { max-width: 720px; margin: 0 auto; }
#main-col .form {
display: flex !important;
flex-direction: column !important;
align-items: stretch !important;
gap: 1rem;
}
#main-col .block { width: 100% !important; }
"""
with gr.Blocks(title="π΅ Audio Mood Classifier", css=CSS, fill_width=False) as demo:
with gr.Column(elem_id="main-col"):
gr.Markdown("# π΅ Audio Mood Classifier")
gr.Markdown(description)
song_name = gr.Textbox(
label="Song",
value="No song selected",
interactive=False,
lines=1,
)
audio_input = gr.Audio(type="filepath", label="Upload a song (MP3)")
mood_output = gr.Textbox(label="Predicted mood", lines=7)
with gr.Row():
clear_btn = gr.Button("Clear")
submit_btn = gr.Button("Submit", variant="primary")
audio_input.change(fn=song_display_name, inputs=audio_input, outputs=song_name)
submit_btn.click(fn=classify_mood, inputs=audio_input, outputs=mood_output)
clear_btn.click(
lambda: (None, "No song selected", ""),
outputs=[audio_input, song_name, mood_output],
)
demo.queue().launch()
|