Spaces:
Running on Zero
Running on Zero
File size: 9,888 Bytes
f1ef7e2 | 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 | """
RAVDESS metadata preparation for audio emotion classification.
This script scans the RAVDESS speech audio files, parses emotion labels from
filenames, maps them into the project emotion schema, and creates a clean
metadata CSV for training/evaluation.
Expected RAVDESS filename format:
03-01-05-01-01-01-01.wav
Filename parts:
modality-vocal_channel-emotion-intensity-statement-repetition-actor
Emotion codes:
01 = neutral
02 = calm
03 = happy
04 = sad
05 = angry
06 = fearful
07 = disgust
08 = surprised
Project mapping:
neutral -> neutral
calm -> neutral
happy -> happy
sad -> sadness
angry -> anger
fearful -> fear
disgust -> disgust
surprised is skipped because the project has no surprise class.
Run from ml-services:
python -m src.data.ravdess_dataset
"""
import json
import random
from dataclasses import asdict, dataclass
from pathlib import Path
from typing import Dict, List, Optional
import pandas as pd
PROJECT_ROOT = Path(__file__).resolve().parents[3]
ML_SERVICES_ROOT = PROJECT_ROOT / "ml-services"
RAVDESS_RAW_DIR = ML_SERVICES_ROOT / "data" / "raw" / "ravdess"
PROCESSED_DIR = ML_SERVICES_ROOT / "data" / "processed"
RAVDESS_METADATA_PATH = PROCESSED_DIR / "ravdess_metadata.csv"
RAVDESS_SUMMARY_PATH = PROCESSED_DIR / "ravdess_summary.json"
RAVDESS_EMOTION_CODE_MAP = {
"01": "neutral",
"02": "calm",
"03": "happy",
"04": "sad",
"05": "angry",
"06": "fearful",
"07": "disgust",
"08": "surprised",
}
RAVDESS_TO_PROJECT_EMOTION = {
"neutral": "neutral",
"calm": "neutral",
"happy": "happy",
"sad": "sadness",
"angry": "anger",
"fearful": "fear",
"disgust": "disgust",
}
NEGATIVE_EMOTIONS = {"anger", "disgust", "fear", "sadness"}
@dataclass(frozen=True)
class RavdessMetadataRecord:
"""
One RAVDESS audio metadata row.
"""
file_path: str
filename: str
dataset: str
actor_id: int
modality_code: str
vocal_channel_code: str
emotion_code: str
ravdess_emotion_label: str
emotion_label: str
sentiment_label: str
intensity_code: str
statement_code: str
repetition_code: str
is_negative: bool
split: str
def infer_sentiment_label(emotion_label: str) -> str:
"""
Map project emotion label to business sentiment.
"""
if emotion_label in NEGATIVE_EMOTIONS:
return "Negative"
if emotion_label == "happy":
return "Positive"
return "Neutral"
def find_ravdess_audio_files(raw_dir: Path = RAVDESS_RAW_DIR) -> List[Path]:
"""
Find all RAVDESS WAV files recursively.
"""
if not raw_dir.exists():
raise FileNotFoundError(
f"RAVDESS raw directory not found: {raw_dir}\n"
"Expected the dataset under data/raw/ravdess/"
)
audio_files = sorted(raw_dir.rglob("*.wav"))
if not audio_files:
raise FileNotFoundError(
f"No WAV files found under: {raw_dir}\n"
"Make sure RAVDESS was extracted correctly."
)
return audio_files
def parse_ravdess_filename(file_path: Path) -> Optional[Dict]:
"""
Parse one RAVDESS filename.
Returns None for unsupported labels, such as surprised.
"""
filename = file_path.name
stem = file_path.stem
parts = stem.split("-")
if len(parts) != 7:
raise ValueError(f"Invalid RAVDESS filename format: {filename}")
(
modality_code,
vocal_channel_code,
emotion_code,
intensity_code,
statement_code,
repetition_code,
actor_code,
) = parts
if emotion_code not in RAVDESS_EMOTION_CODE_MAP:
raise ValueError(f"Unknown RAVDESS emotion code {emotion_code} in {filename}")
ravdess_emotion = RAVDESS_EMOTION_CODE_MAP[emotion_code]
# Skip surprised because our current project schema does not include surprise.
if ravdess_emotion == "surprised":
return None
if ravdess_emotion not in RAVDESS_TO_PROJECT_EMOTION:
raise ValueError(f"No project mapping for RAVDESS emotion: {ravdess_emotion}")
project_emotion = RAVDESS_TO_PROJECT_EMOTION[ravdess_emotion]
actor_id = int(actor_code)
return {
"filename": filename,
"actor_id": actor_id,
"modality_code": modality_code,
"vocal_channel_code": vocal_channel_code,
"emotion_code": emotion_code,
"ravdess_emotion_label": ravdess_emotion,
"emotion_label": project_emotion,
"sentiment_label": infer_sentiment_label(project_emotion),
"intensity_code": intensity_code,
"statement_code": statement_code,
"repetition_code": repetition_code,
"is_negative": project_emotion in NEGATIVE_EMOTIONS,
}
def create_actor_split(
actor_ids: List[int],
train_ratio: float = 0.70,
validation_ratio: float = 0.15,
seed: int = 42,
) -> Dict[int, str]:
"""
Create speaker-aware train/validation/test split.
This keeps each actor in only one split.
"""
unique_actors = sorted(set(actor_ids))
random_generator = random.Random(seed)
random_generator.shuffle(unique_actors)
total_actors = len(unique_actors)
train_count = int(total_actors * train_ratio)
validation_count = int(total_actors * validation_ratio)
train_actors = set(unique_actors[:train_count])
validation_actors = set(unique_actors[train_count : train_count + validation_count])
test_actors = set(unique_actors[train_count + validation_count :])
actor_to_split = {}
for actor_id in train_actors:
actor_to_split[actor_id] = "train"
for actor_id in validation_actors:
actor_to_split[actor_id] = "validation"
for actor_id in test_actors:
actor_to_split[actor_id] = "test"
return actor_to_split
def build_ravdess_metadata() -> pd.DataFrame:
"""
Build RAVDESS metadata dataframe.
"""
audio_files = find_ravdess_audio_files()
parsed_records = []
skipped_files = []
for file_path in audio_files:
parsed = parse_ravdess_filename(file_path)
if parsed is None:
skipped_files.append(file_path.name)
continue
parsed["file_path"] = str(file_path)
parsed["dataset"] = "RAVDESS"
parsed_records.append(parsed)
if not parsed_records:
raise ValueError("No usable RAVDESS records were parsed.")
actor_ids = [record["actor_id"] for record in parsed_records]
actor_to_split = create_actor_split(actor_ids)
records: List[RavdessMetadataRecord] = []
for record in parsed_records:
actor_id = record["actor_id"]
metadata_record = RavdessMetadataRecord(
file_path=record["file_path"],
filename=record["filename"],
dataset=record["dataset"],
actor_id=actor_id,
modality_code=record["modality_code"],
vocal_channel_code=record["vocal_channel_code"],
emotion_code=record["emotion_code"],
ravdess_emotion_label=record["ravdess_emotion_label"],
emotion_label=record["emotion_label"],
sentiment_label=record["sentiment_label"],
intensity_code=record["intensity_code"],
statement_code=record["statement_code"],
repetition_code=record["repetition_code"],
is_negative=record["is_negative"],
split=actor_to_split[actor_id],
)
records.append(metadata_record)
dataframe = pd.DataFrame([asdict(record) for record in records])
dataframe = dataframe.sort_values(
by=["split", "actor_id", "emotion_label", "filename"]
).reset_index(drop=True)
return dataframe
def create_summary(dataframe: pd.DataFrame) -> Dict:
"""
Create RAVDESS metadata summary.
"""
summary = {
"dataset": "RAVDESS",
"total_records": int(len(dataframe)),
"splits": dataframe["split"].value_counts().to_dict(),
"actors_per_split": dataframe.groupby("split")["actor_id"]
.nunique()
.to_dict(),
"emotion_labels": dataframe["emotion_label"].value_counts().to_dict(),
"ravdess_original_emotions": dataframe["ravdess_emotion_label"]
.value_counts()
.to_dict(),
"sentiment_labels": dataframe["sentiment_label"].value_counts().to_dict(),
"notes": [
"Surprised samples are skipped because the project emotion schema does not include surprise.",
"Calm samples are mapped to neutral.",
"Split is speaker-aware, so each actor belongs to only one split.",
],
}
return summary
def save_metadata_and_summary(dataframe: pd.DataFrame, summary: Dict) -> None:
"""
Save metadata CSV and summary JSON.
"""
PROCESSED_DIR.mkdir(parents=True, exist_ok=True)
dataframe.to_csv(RAVDESS_METADATA_PATH, index=False)
with RAVDESS_SUMMARY_PATH.open("w", encoding="utf-8") as file:
json.dump(summary, file, indent=2)
def main() -> None:
dataframe = build_ravdess_metadata()
summary = create_summary(dataframe)
save_metadata_and_summary(dataframe, summary)
print("\nRAVDESS metadata preparation completed successfully.")
print("-" * 70)
print(f"Total usable audio files: {summary['total_records']}")
print(f"Split distribution: {summary['splits']}")
print(f"Actors by split: {summary['actors_per_split']}")
print(f"Emotion distribution: {summary['emotion_labels']}")
print(f"Original RAVDESS emotions: {summary['ravdess_original_emotions']}")
print(f"Sentiment distribution: {summary['sentiment_labels']}")
print("-" * 70)
print(f"Saved metadata CSV to: {RAVDESS_METADATA_PATH}")
print(f"Saved summary JSON to: {RAVDESS_SUMMARY_PATH}")
if __name__ == "__main__":
main() |