File size: 41,632 Bytes
fec9168 7e6c03a | 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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 | """
ESC-50 dataset utilities for loading and sampling audio data.
"""
import csv
import json
import random
from pathlib import Path
from typing import Dict, List, Optional, Tuple
import pandas as pd
from .logger import setup_logger
logger = setup_logger(__name__)
def load_or_create_class_subset(config: dict, all_categories: List[str]) -> List[str]:
"""
Load persisted class subset or create a new one.
Args:
config: Configuration dictionary with dataset.use_class_subset, etc.
all_categories: List of all available categories
Returns:
List of category names to use (either subset or all)
"""
dataset_config = config.get('dataset', {})
use_subset = dataset_config.get('use_class_subset', False)
if not use_subset:
logger.info(f"Using all {len(all_categories)} classes")
return all_categories
num_classes = dataset_config.get('num_classes_subset', len(all_categories))
persist_path = Path(dataset_config.get('subset_persist_path', 'class_subset.json'))
subset_seed = dataset_config.get('subset_seed', 42)
# Try to load existing subset
if persist_path.exists():
try:
with open(persist_path, 'r') as f:
data = json.load(f)
subset = data.get('classes', [])
# Validate subset
if len(subset) == num_classes and all(c in all_categories for c in subset):
logger.info(f"Loaded persisted class subset from {persist_path}: {len(subset)} classes")
return subset
else:
logger.warning(f"Invalid persisted subset, regenerating...")
except Exception as e:
logger.warning(f"Failed to load persisted subset: {e}, regenerating...")
# Create new subset
random.seed(subset_seed)
subset = random.sample(all_categories, min(num_classes, len(all_categories)))
subset.sort() # Sort for consistency
# Persist subset
persist_path.parent.mkdir(parents=True, exist_ok=True)
with open(persist_path, 'w') as f:
json.dump({
'classes': subset,
'num_classes': len(subset),
'seed': subset_seed,
'total_available': len(all_categories)
}, f, indent=2)
logger.info(f"Created and persisted new class subset: {len(subset)} classes to {persist_path}")
return subset
class ESC50Dataset:
"""Handler for ESC-50 dataset."""
# All 50 ESC-50 sound categories
ALL_CATEGORIES = [
'dog', 'chirping_birds', 'vacuum_cleaner', 'thunderstorm', 'door_wood_knock',
'can_opening', 'crow', 'clapping', 'fireworks', 'chainsaw', 'airplane',
'mouse_click', 'pouring_water', 'train', 'sheep', 'water_drops', 'church_bells',
'clock_alarm', 'keyboard_typing', 'wind', 'footsteps', 'frog', 'cow',
'brushing_teeth', 'car_horn', 'crackling_fire', 'helicopter', 'drinking_sipping',
'rain', 'insects', 'laughing', 'hen', 'engine', 'breathing', 'crying_baby',
'hand_saw', 'coughing', 'glass_breaking', 'snoring', 'toilet_flush', 'pig',
'washing_machine', 'clock_tick', 'sneezing', 'rooster', 'sea_waves', 'siren',
'cat', 'door_wood_creaks', 'crickets'
]
def __init__(self, metadata_path: str, audio_path: str, config: Optional[dict] = None):
"""
Initialize ESC-50 dataset handler.
Args:
metadata_path: Path to esc50.csv metadata file
audio_path: Path to audio directory
config: Optional configuration dict with dataset.use_class_subset settings
"""
self.metadata_path = Path(metadata_path)
self.audio_path = Path(audio_path)
self.config = config or {}
self.df = None
self.category_to_target = {}
self.target_to_category = {}
# Load class subset if configured
self.CATEGORIES = load_or_create_class_subset(self.config, self.ALL_CATEGORIES)
self.category_usage_counts = {cat: 0 for cat in self.CATEGORIES}
self.load_metadata()
def load_metadata(self):
"""Load ESC-50 metadata CSV."""
try:
self.df = pd.read_csv(self.metadata_path)
logger.info(f"Loaded ESC-50 metadata: {len(self.df)} files")
# Create category mappings
for target, category in zip(self.df['target'], self.df['category']):
self.category_to_target[category] = target
self.target_to_category[target] = category
logger.info(f"Found {len(self.category_to_target)} unique categories")
except Exception as e:
logger.error(f"Error loading metadata: {e}")
raise
def get_files_by_category(self, category: str) -> List[str]:
"""
Get all audio files for a specific category.
Args:
category: Sound category name
Returns:
List of filenames for the category
"""
if category not in self.category_to_target:
raise ValueError(f"Unknown category: {category}")
target = self.category_to_target[category]
files = self.df[self.df['target'] == target]['filename'].tolist()
return files
def get_files_by_target(self, target: int) -> List[str]:
"""
Get all audio files for a specific target ID.
Args:
target: Target class ID (0-49)
Returns:
List of filenames for the target
"""
files = self.df[self.df['target'] == target]['filename'].tolist()
return files
def sample_categories(self, n: int, exclude: Optional[List[str]] = None) -> List[str]:
"""
Sample n unique random categories from the active subset.
Args:
n: Number of categories to sample
exclude: Optional list of categories to exclude
Returns:
List of sampled category names
"""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot sample {n} categories from subset, only {len(available)} available (subset size: {len(self.CATEGORIES)})")
return random.sample(available, n)
def sample_targets(self, n: int, exclude: Optional[List[int]] = None) -> List[int]:
"""
Sample n unique random targets from the active subset.
Args:
n: Number of targets to sample
exclude: Optional list of targets to exclude
Returns:
List of sampled target IDs corresponding to categories in the subset
"""
# Get targets corresponding to categories in the subset
available_targets = [self.category_to_target[cat] for cat in self.CATEGORIES]
available = [t for t in available_targets if t not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot sample {n} targets from subset, only {len(available)} available (subset size: {len(self.CATEGORIES)})")
return random.sample(available, n)
def sample_file_from_category(self, category: str) -> Tuple[str, str]:
"""
Sample a random audio file from a category.
Args:
category: Sound category name
Returns:
Tuple of (filename, full_path)
"""
files = self.get_files_by_category(category)
filename = random.choice(files)
full_path = str(self.audio_path / filename)
return filename, full_path
def sample_file_from_target(self, target: int) -> Tuple[str, str, str]:
"""
Sample a random audio file from a target.
Args:
target: Target class ID
Returns:
Tuple of (filename, category, full_path)
"""
files = self.get_files_by_target(target)
filename = random.choice(files)
category = self.target_to_category[target]
full_path = str(self.audio_path / filename)
return filename, category, full_path
def get_category_from_filename(self, filename: str) -> str:
"""Get category name from filename."""
row = self.df[self.df['filename'] == filename]
if len(row) == 0:
raise ValueError(f"Unknown filename: {filename}")
return row.iloc[0]['category']
def get_file_path(self, filename: str) -> str:
"""Get full path for a filename."""
return str(self.audio_path / filename)
def sample_categories_balanced(self, n: int, exclude: Optional[List[str]] = None,
answer_category: Optional[str] = None) -> List[str]:
"""
Sample n unique categories with balanced usage tracking.
This method ensures that over many samples, all categories appear
roughly equally as answers by preferentially sampling underused categories.
Args:
n: Number of categories to sample
exclude: Optional list of categories to exclude
answer_category: If provided, ensures this category is included and tracks it
Returns:
List of sampled category names with answer_category first if provided
"""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot sample {n} categories, only {len(available)} available")
if answer_category:
# Track answer category usage
self.category_usage_counts[answer_category] += 1
# Remove answer category from available and sample the rest
available = [c for c in available if c != answer_category]
other_categories = random.sample(available, n - 1)
return [answer_category] + other_categories
else:
# Sample without specific answer category
return random.sample(available, n)
def get_least_used_categories(self, n: int, exclude: Optional[List[str]] = None) -> List[str]:
"""
Get n categories that have been used least as answers.
Args:
n: Number of categories to get
exclude: Optional list of categories to exclude
Returns:
List of least-used category names
"""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot get {n} categories, only {len(available)} available")
# Sort by usage count (ascending) and take n least used
sorted_categories = sorted(available, key=lambda c: self.category_usage_counts[c])
# Among least used, get all with same minimum count
min_count = self.category_usage_counts[sorted_categories[0]]
candidates = [c for c in sorted_categories if self.category_usage_counts[c] == min_count]
if len(candidates) >= n:
# Randomly sample from least used
return random.sample(candidates, n)
else:
# Take all minimum and fill with next tier
result = candidates.copy()
remaining = n - len(result)
next_tier = [c for c in sorted_categories if c not in candidates][:remaining]
result.extend(next_tier)
return result
def get_category_usage_stats(self) -> Dict[str, int]:
"""Get current category usage statistics."""
return self.category_usage_counts.copy()
def reset_category_usage(self):
"""Reset category usage tracking."""
self.category_usage_counts = {cat: 0 for cat in self.CATEGORIES}
logger.info("Reset category usage tracking")
class PreprocessedESC50Dataset(ESC50Dataset):
"""
Handler for preprocessed ESC-50 dataset with effective durations.
Extends ESC50Dataset to use trimmed audio files and effective duration
metadata from amplitude-based preprocessing.
"""
def __init__(
self,
metadata_path: str,
audio_path: str,
preprocessed_path: str,
config: Optional[dict] = None
):
"""
Initialize preprocessed ESC-50 dataset handler.
Args:
metadata_path: Path to original esc50.csv metadata file
audio_path: Path to original audio directory (fallback)
preprocessed_path: Path to preprocessed data directory
config: Optional configuration dict with dataset.use_class_subset settings
"""
super().__init__(metadata_path, audio_path, config)
self.preprocessed_path = Path(preprocessed_path)
self.trimmed_audio_path = self.preprocessed_path / "trimmed_audio"
self.effective_durations_path = self.preprocessed_path / "effective_durations.csv"
# Load effective durations
self.effective_df = None
self.load_effective_durations()
def load_effective_durations(self):
"""Load effective durations from preprocessed CSV."""
try:
self.effective_df = pd.read_csv(self.effective_durations_path)
logger.info(f"Loaded effective durations for {len(self.effective_df)} clips")
# Create quick lookup dictionaries
self.filename_to_effective = dict(
zip(self.effective_df['filename'], self.effective_df['effective_duration_s'])
)
self.filename_to_category = dict(
zip(self.effective_df['filename'], self.effective_df['category'])
)
# Category-level statistics
self.category_effective_stats = self.effective_df.groupby('category').agg({
'effective_duration_s': ['mean', 'std', 'min', 'max', 'count']
}).round(4)
self.category_effective_stats.columns = ['mean', 'std', 'min', 'max', 'count']
logger.info("Created effective duration lookup tables")
except Exception as e:
logger.error(f"Error loading effective durations: {e}")
raise
def get_effective_duration(self, filename: str) -> float:
"""
Get effective duration for a specific file.
Args:
filename: Audio filename
Returns:
Effective duration in seconds
"""
if filename not in self.filename_to_effective:
logger.warning(f"No effective duration for {filename}, using default 5.0s")
return 5.0
return self.filename_to_effective[filename]
def get_category_effective_stats(self, category: str) -> Dict:
"""
Get effective duration statistics for a category.
Args:
category: Category name
Returns:
Dict with mean, std, min, max, count
"""
if category not in self.category_effective_stats.index:
return {'mean': 5.0, 'std': 0.0, 'min': 5.0, 'max': 5.0, 'count': 0}
stats = self.category_effective_stats.loc[category]
return {
'mean': stats['mean'],
'std': stats['std'],
'min': stats['min'],
'max': stats['max'],
'count': int(stats['count'])
}
def get_files_by_category_with_durations(self, category: str) -> List[Dict]:
"""
Get all files for a category with their effective durations.
Args:
category: Category name
Returns:
List of dicts with filename, effective_duration_s, filepath
"""
cat_df = self.effective_df[self.effective_df['category'] == category]
results = []
for _, row in cat_df.iterrows():
results.append({
'filename': row['filename'],
'effective_duration_s': row['effective_duration_s'],
'filepath': str(self.trimmed_audio_path / row['filename']),
'raw_duration_s': row['raw_duration_s'],
'peak_amplitude_db': row['peak_amplitude_db']
})
return results
def sample_file_from_category_with_duration(
self,
category: str,
min_effective_duration: float = None,
max_effective_duration: float = None
) -> Tuple[str, str, float]:
"""
Sample a file from category with optional duration constraints.
Args:
category: Category name
min_effective_duration: Minimum effective duration (optional)
max_effective_duration: Maximum effective duration (optional)
Returns:
Tuple of (filename, filepath, effective_duration_s)
"""
files = self.get_files_by_category_with_durations(category)
# Filter by duration if constraints provided
if min_effective_duration is not None:
files = [f for f in files if f['effective_duration_s'] >= min_effective_duration]
if max_effective_duration is not None:
files = [f for f in files if f['effective_duration_s'] <= max_effective_duration]
if not files:
# Fallback to any file from category
logger.warning(f"No files match duration constraints for {category}, using any file")
files = self.get_files_by_category_with_durations(category)
selected = random.choice(files)
return selected['filename'], selected['filepath'], selected['effective_duration_s']
def sample_files_from_category_to_reach_duration(
self,
category: str,
target_duration_s: float,
prefer_same_file: bool = True
) -> Tuple[List[str], List[str], float]:
"""
Sample files from a category to reach a target total effective duration.
Args:
category: Category name
target_duration_s: Target total effective duration
prefer_same_file: If True, try repeating same file first
Returns:
Tuple of (filenames_list, filepaths_list, actual_total_duration_s)
"""
files = self.get_files_by_category_with_durations(category)
if not files:
raise ValueError(f"No files found for category: {category}")
selected_filenames = []
selected_filepaths = []
total_duration = 0.0
if prefer_same_file:
# Sort by effective duration descending (prefer longer clips)
files_sorted = sorted(files, key=lambda x: x['effective_duration_s'], reverse=True)
selected_file = files_sorted[0]
# Calculate how many repetitions needed
reps_needed = max(1, int(target_duration_s / selected_file['effective_duration_s']) + 1)
for _ in range(reps_needed):
selected_filenames.append(selected_file['filename'])
selected_filepaths.append(selected_file['filepath'])
total_duration += selected_file['effective_duration_s']
if total_duration >= target_duration_s:
break
else:
# Use different files
random.shuffle(files)
file_idx = 0
while total_duration < target_duration_s:
selected_file = files[file_idx % len(files)]
selected_filenames.append(selected_file['filename'])
selected_filepaths.append(selected_file['filepath'])
total_duration += selected_file['effective_duration_s']
file_idx += 1
# Safety limit
if file_idx > 100:
logger.warning(f"Hit safety limit when sampling files for {category}")
break
return selected_filenames, selected_filepaths, total_duration
def get_categories_sorted_by_effective_duration(self, ascending: bool = True) -> List[str]:
"""
Get categories sorted by their mean effective duration.
Args:
ascending: If True, shortest first; if False, longest first
Returns:
List of category names sorted by mean effective duration
"""
sorted_stats = self.category_effective_stats.sort_values('mean', ascending=ascending)
return sorted_stats.index.tolist()
# =====================================================================
# Generic dataset adapters for UrbanSound8K, GISE, and other datasets
# =====================================================================
class GenericAudioDataset:
"""
Generic audio dataset handler that adapts any CSV-based dataset
to the same API as ESC50Dataset.
Works with datasets like UrbanSound8K, GISE, and others where
the metadata CSV has columns for category, filename, and class ID,
and audio files may be stored in nested subdirectories.
"""
def __init__(
self,
metadata_path: str,
audio_path: str,
config: Optional[dict] = None,
category_col: str = 'class',
filename_col: str = 'file_name',
classid_col: str = 'classID',
fullpath_col: str = 'clean_audio_path',
duration_col: Optional[str] = None,
):
"""
Initialize generic audio dataset handler.
Args:
metadata_path: Path to metadata CSV file
audio_path: Base path to audio directory (fallback if fullpath_col missing)
config: Optional configuration dict with dataset.use_class_subset settings
category_col: Column name for sound category
filename_col: Column name for audio filename
classid_col: Column name for class ID
fullpath_col: Column name for absolute audio file path (preferred)
duration_col: Optional column name for clip duration in seconds
"""
self.metadata_path = Path(metadata_path)
self.audio_path = Path(audio_path)
self.config = config or {}
self.category_col = category_col
self.filename_col = filename_col
self.classid_col = classid_col
self.fullpath_col = fullpath_col
self.duration_col = duration_col
self.df = None
self.category_to_target = {}
self.target_to_category = {}
self.load_metadata()
# Discover all categories from the data
self.ALL_CATEGORIES = sorted(self.df[self.category_col].unique().tolist())
# Load class subset if configured
self.CATEGORIES = load_or_create_class_subset(self.config, self.ALL_CATEGORIES)
self.category_usage_counts = {cat: 0 for cat in self.CATEGORIES}
# Filter dataframe to only include rows from the active subset
self.df = self.df[self.df[self.category_col].isin(self.CATEGORIES)].reset_index(drop=True)
logger.info(f"After subset filter: {len(self.df)} files across {len(self.CATEGORIES)} categories")
def load_metadata(self):
"""Load metadata CSV."""
try:
self.df = pd.read_csv(self.metadata_path)
logger.info(f"Loaded metadata: {len(self.df)} files from {self.metadata_path.name}")
# Create category <-> target mappings
for _, row in self.df.drop_duplicates(subset=[self.category_col]).iterrows():
cat = row[self.category_col]
target = row[self.classid_col]
self.category_to_target[cat] = target
self.target_to_category[target] = cat
logger.info(f"Found {len(self.category_to_target)} unique categories")
except Exception as e:
logger.error(f"Error loading metadata: {e}")
raise
# --------------------------------------------------------- file access
def _get_audio_path_for_row(self, row) -> str:
"""Get the full audio path for a metadata row."""
if self.fullpath_col and self.fullpath_col in row.index and pd.notna(row[self.fullpath_col]):
return str(row[self.fullpath_col])
# Fallback: audio_base / filename
return str(self.audio_path / row[self.filename_col])
def get_files_by_category(self, category: str) -> List[str]:
"""Get all audio filenames for a specific category."""
if category not in self.category_to_target:
raise ValueError(f"Unknown category: {category}")
cat_df = self.df[self.df[self.category_col] == category]
return cat_df[self.filename_col].tolist()
def get_files_by_target(self, target: int) -> List[str]:
"""Get all audio filenames for a specific target ID."""
cat_df = self.df[self.df[self.classid_col] == target]
return cat_df[self.filename_col].tolist()
def sample_categories(self, n: int, exclude: Optional[List[str]] = None) -> List[str]:
"""Sample n unique random categories from the active subset."""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(
f"Cannot sample {n} categories, only {len(available)} available "
f"(subset size: {len(self.CATEGORIES)})"
)
return random.sample(available, n)
def sample_targets(self, n: int, exclude: Optional[List[int]] = None) -> List[int]:
"""Sample n unique random targets from the active subset."""
available_targets = [self.category_to_target[cat] for cat in self.CATEGORIES]
available = [t for t in available_targets if t not in (exclude or [])]
if n > len(available):
raise ValueError(
f"Cannot sample {n} targets, only {len(available)} available"
)
return random.sample(available, n)
def sample_file_from_category(self, category: str) -> Tuple[str, str]:
"""
Sample a random audio file from a category.
Returns:
Tuple of (filename, full_path)
"""
cat_df = self.df[self.df[self.category_col] == category]
if len(cat_df) == 0:
raise ValueError(f"No files found for category: {category}")
row = cat_df.sample(1).iloc[0]
filename = row[self.filename_col]
full_path = self._get_audio_path_for_row(row)
return filename, full_path
def sample_file_from_target(self, target: int) -> Tuple[str, str, str]:
"""
Sample a random audio file from a target.
Returns:
Tuple of (filename, category, full_path)
"""
cat_df = self.df[self.df[self.classid_col] == target]
if len(cat_df) == 0:
raise ValueError(f"No files found for target: {target}")
row = cat_df.sample(1).iloc[0]
filename = row[self.filename_col]
category = row[self.category_col]
full_path = self._get_audio_path_for_row(row)
return filename, category, full_path
def get_category_from_filename(self, filename: str) -> str:
"""Get category name from filename."""
row = self.df[self.df[self.filename_col] == filename]
if len(row) == 0:
raise ValueError(f"Unknown filename: {filename}")
return row.iloc[0][self.category_col]
def get_file_path(self, filename: str) -> str:
"""Get full path for a filename."""
row = self.df[self.df[self.filename_col] == filename]
if len(row) == 0:
return str(self.audio_path / filename)
return self._get_audio_path_for_row(row.iloc[0])
def sample_categories_balanced(
self, n: int, exclude: Optional[List[str]] = None,
answer_category: Optional[str] = None
) -> List[str]:
"""Sample n unique categories with balanced usage tracking."""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot sample {n} categories, only {len(available)} available")
if answer_category:
self.category_usage_counts[answer_category] += 1
available = [c for c in available if c != answer_category]
other_categories = random.sample(available, n - 1)
return [answer_category] + other_categories
else:
return random.sample(available, n)
def get_least_used_categories(self, n: int, exclude: Optional[List[str]] = None) -> List[str]:
"""Get n categories that have been used least as answers."""
available = [c for c in self.CATEGORIES if c not in (exclude or [])]
if n > len(available):
raise ValueError(f"Cannot get {n} categories, only {len(available)} available")
sorted_categories = sorted(available, key=lambda c: self.category_usage_counts[c])
min_count = self.category_usage_counts[sorted_categories[0]]
candidates = [c for c in sorted_categories if self.category_usage_counts[c] == min_count]
if len(candidates) >= n:
return random.sample(candidates, n)
else:
result = candidates.copy()
remaining = n - len(result)
next_tier = [c for c in sorted_categories if c not in candidates][:remaining]
result.extend(next_tier)
return result
def get_category_usage_stats(self) -> Dict[str, int]:
"""Get current category usage statistics."""
return self.category_usage_counts.copy()
def reset_category_usage(self):
"""Reset category usage tracking."""
self.category_usage_counts = {cat: 0 for cat in self.CATEGORIES}
logger.info("Reset category usage tracking")
class PreprocessedGenericDataset(GenericAudioDataset):
"""
Generic preprocessed dataset handler that provides the same API as
PreprocessedESC50Dataset using existing duration metadata in the CSV.
For datasets like UrbanSound8K and GISE where the audio is already
preprocessed and the CSV contains duration information, this class
maps that information into the effective_duration interface that
task scripts like duration, silence_gap, etc. expect.
"""
def __init__(
self,
metadata_path: str,
audio_path: str,
preprocessed_path: str,
config: Optional[dict] = None,
category_col: str = 'class',
filename_col: str = 'file_name',
classid_col: str = 'classID',
fullpath_col: str = 'clean_audio_path',
duration_col: str = 'duration',
):
"""
Initialize preprocessed generic dataset handler.
Args:
metadata_path: Path to metadata CSV file
audio_path: Base path to audio directory (fallback)
preprocessed_path: Path to preprocessed data directory (for compatibility)
config: Optional configuration dict
category_col: Column name for sound category
filename_col: Column name for audio filename
classid_col: Column name for class ID
fullpath_col: Column name for absolute audio file path
duration_col: Column name for clip duration in seconds
"""
super().__init__(
metadata_path=metadata_path,
audio_path=audio_path,
config=config,
category_col=category_col,
filename_col=filename_col,
classid_col=classid_col,
fullpath_col=fullpath_col,
duration_col=duration_col,
)
self.preprocessed_path = Path(preprocessed_path)
self.duration_col = duration_col
# Build effective duration lookup from the existing CSV data
self.effective_df = self.df.copy()
# Rename duration column to 'effective_duration_s' for compatibility
if self.duration_col in self.effective_df.columns:
self.effective_df['effective_duration_s'] = self.effective_df[self.duration_col].astype(float)
else:
# Fallback: use a default duration
logger.warning(f"Duration column '{self.duration_col}' not found, defaulting to 5.0s")
self.effective_df['effective_duration_s'] = 5.0
# Add compatibility columns
self.effective_df['filename'] = self.effective_df[self.filename_col]
self.effective_df['category'] = self.effective_df[self.category_col]
# Use a placeholder for raw_duration_s (same as effective for preprocessed data)
self.effective_df['raw_duration_s'] = self.effective_df['effective_duration_s']
self.effective_df['peak_amplitude_db'] = 0.0 # Placeholder
# Create lookup dictionaries
self.filename_to_effective = dict(
zip(self.effective_df[self.filename_col], self.effective_df['effective_duration_s'])
)
self.filename_to_category = dict(
zip(self.effective_df[self.filename_col], self.effective_df[self.category_col])
)
# Category-level statistics
self.category_effective_stats = self.effective_df.groupby(self.category_col).agg({
'effective_duration_s': ['mean', 'std', 'min', 'max', 'count']
}).round(4)
self.category_effective_stats.columns = ['mean', 'std', 'min', 'max', 'count']
logger.info(
f"Loaded effective durations for {len(self.effective_df)} clips "
f"(mean={self.effective_df['effective_duration_s'].mean():.2f}s)"
)
def get_effective_duration(self, filename: str) -> float:
"""Get effective duration for a specific file."""
if filename not in self.filename_to_effective:
logger.warning(f"No effective duration for {filename}, using default 5.0s")
return 5.0
return self.filename_to_effective[filename]
def get_category_effective_stats(self, category: str) -> Dict:
"""Get effective duration statistics for a category."""
if category not in self.category_effective_stats.index:
return {'mean': 5.0, 'std': 0.0, 'min': 5.0, 'max': 5.0, 'count': 0}
stats = self.category_effective_stats.loc[category]
return {
'mean': stats['mean'],
'std': stats['std'],
'min': stats['min'],
'max': stats['max'],
'count': int(stats['count'])
}
def get_files_by_category_with_durations(self, category: str) -> List[Dict]:
"""Get all files for a category with their effective durations."""
cat_df = self.effective_df[self.effective_df[self.category_col] == category]
results = []
for _, row in cat_df.iterrows():
full_path = self._get_audio_path_for_row(row)
results.append({
'filename': row[self.filename_col],
'effective_duration_s': row['effective_duration_s'],
'filepath': full_path,
'raw_duration_s': row['raw_duration_s'],
'peak_amplitude_db': row['peak_amplitude_db']
})
return results
def sample_file_from_category_with_duration(
self,
category: str,
min_effective_duration: float = None,
max_effective_duration: float = None
) -> Tuple[str, str, float]:
"""
Sample a file from category with optional duration constraints.
Returns:
Tuple of (filename, filepath, effective_duration_s)
"""
files = self.get_files_by_category_with_durations(category)
if min_effective_duration is not None:
files = [f for f in files if f['effective_duration_s'] >= min_effective_duration]
if max_effective_duration is not None:
files = [f for f in files if f['effective_duration_s'] <= max_effective_duration]
if not files:
logger.warning(f"No files match duration constraints for {category}, using any file")
files = self.get_files_by_category_with_durations(category)
selected = random.choice(files)
return selected['filename'], selected['filepath'], selected['effective_duration_s']
def sample_files_from_category_to_reach_duration(
self,
category: str,
target_duration_s: float,
prefer_same_file: bool = True
) -> Tuple[List[str], List[str], float]:
"""Sample files from a category to reach a target total effective duration."""
files = self.get_files_by_category_with_durations(category)
if not files:
raise ValueError(f"No files found for category: {category}")
selected_filenames = []
selected_filepaths = []
total_duration = 0.0
if prefer_same_file:
files_sorted = sorted(files, key=lambda x: x['effective_duration_s'], reverse=True)
selected_file = files_sorted[0]
reps_needed = max(1, int(target_duration_s / selected_file['effective_duration_s']) + 1)
for _ in range(reps_needed):
selected_filenames.append(selected_file['filename'])
selected_filepaths.append(selected_file['filepath'])
total_duration += selected_file['effective_duration_s']
if total_duration >= target_duration_s:
break
else:
random.shuffle(files)
file_idx = 0
while total_duration < target_duration_s:
selected_file = files[file_idx % len(files)]
selected_filenames.append(selected_file['filename'])
selected_filepaths.append(selected_file['filepath'])
total_duration += selected_file['effective_duration_s']
file_idx += 1
if file_idx > 100:
logger.warning(f"Hit safety limit when sampling files for {category}")
break
return selected_filenames, selected_filepaths, total_duration
def get_categories_sorted_by_effective_duration(self, ascending: bool = True) -> List[str]:
"""Get categories sorted by their mean effective duration."""
sorted_stats = self.category_effective_stats.sort_values('mean', ascending=ascending)
return sorted_stats.index.tolist()
# =====================================================================
# Factory functions for dataset creation
# =====================================================================
def create_dataset(config: dict):
"""
Factory function to create the appropriate dataset handler based on config.
If config contains a 'dataset_source' key, uses GenericAudioDataset.
Otherwise falls back to ESC50Dataset using the 'esc50' key.
Args:
config: Full pipeline configuration dictionary
Returns:
An ESC50Dataset or GenericAudioDataset instance
"""
if 'dataset_source' in config:
ds = config['dataset_source']
return GenericAudioDataset(
metadata_path=ds['metadata_path'],
audio_path=ds['audio_path'],
config=config,
category_col=ds.get('category_col', 'class'),
filename_col=ds.get('filename_col', 'file_name'),
classid_col=ds.get('classid_col', 'classID'),
fullpath_col=ds.get('fullpath_col', 'clean_audio_path'),
duration_col=ds.get('duration_col', None),
)
else:
return ESC50Dataset(
metadata_path=config['esc50']['metadata_path'],
audio_path=config['esc50']['audio_path'],
config=config,
)
def create_preprocessed_dataset(config: dict, preprocessed_path: str = None):
"""
Factory function to create the appropriate preprocessed dataset handler.
If config contains a 'dataset_source' key, uses PreprocessedGenericDataset.
Otherwise falls back to PreprocessedESC50Dataset using the 'esc50' key.
Args:
config: Full pipeline configuration dictionary
preprocessed_path: Path to preprocessed data (override)
Returns:
A PreprocessedESC50Dataset or PreprocessedGenericDataset instance
"""
if 'dataset_source' in config:
ds = config['dataset_source']
pp_path = preprocessed_path or ds.get('preprocessed_path', ds['audio_path'])
return PreprocessedGenericDataset(
metadata_path=ds['metadata_path'],
audio_path=ds['audio_path'],
preprocessed_path=pp_path,
config=config,
category_col=ds.get('category_col', 'class'),
filename_col=ds.get('filename_col', 'file_name'),
classid_col=ds.get('classid_col', 'classID'),
fullpath_col=ds.get('fullpath_col', 'clean_audio_path'),
duration_col=ds.get('duration_col', 'duration'),
)
else:
pp_path = preprocessed_path or config['tasks'].get('duration', {}).get('preprocessed_data_path', '')
return PreprocessedESC50Dataset(
metadata_path=config['esc50']['metadata_path'],
audio_path=config['esc50']['audio_path'],
preprocessed_path=pp_path,
config=config,
)
|