help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
music-classification
/
utils
RSK World
music-classification
Music Classification Dataset - Genre Classification + Music AI + Audio ML
utils
  • __pycache__
  • __init__.py1.6 KB
  • advanced_features.py8.3 KB
  • audio_augmentation.py6.3 KB
  • audio_processor.py5.5 KB
  • feature_extractor.py6.7 KB
  • model_comparison.py8.8 KB
  • realtime_processor.py8.8 KB
__init__.py
utils/__init__.py
Raw Download
Find: Go to:
"""
Utilities Package for Music Classification Dataset

Project: Music Classification Dataset
Author: Molla Samser
Company: RSK World
Designer & Tester: Rima Khatun
Website: https://rskworld.in
Email: help@rskworld.in, support@rskworld.in
Phone: +91 93305 39277
Description: Audio processing and feature extraction utilities
License: Educational Purpose Only
"""

# Lazy imports to handle missing dependencies gracefully
# Author: Molla Samser (RSK World)
# Website: https://rskworld.in

__all__ = [
    'AudioProcessor',
    'FeatureExtractor', 
    'AudioAugmenter',
    'AdvancedFeatureExtractor',
    'ModelComparator',
    'RealtimeAudioProcessor',
    'StreamingBuffer',
    'FeatureCache'
]

try:
    from .audio_processor import AudioProcessor
except ImportError:
    AudioProcessor = None

try:
    from .feature_extractor import FeatureExtractor
except ImportError:
    FeatureExtractor = None

try:
    from .audio_augmentation import AudioAugmenter
except ImportError:
    AudioAugmenter = None

try:
    from .advanced_features import AdvancedFeatureExtractor
except ImportError:
    AdvancedFeatureExtractor = None

try:
    from .model_comparison import ModelComparator
except ImportError:
    ModelComparator = None

try:
    from .realtime_processor import RealtimeAudioProcessor, StreamingBuffer, FeatureCache
except ImportError:
    RealtimeAudioProcessor = None
    StreamingBuffer = None
    FeatureCache = None

__version__ = '1.0.0'
__author__ = 'Molla Samser'
__company__ = 'RSK World'
__email__ = 'help@rskworld.in'
__website__ = 'https://rskworld.in'

68 lines•1.6 KB
python
🚀 Support RSK World

Subscribe to our YouTube channel for latest tutorials & updates!



Click subscribe & support our work ❤️

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer