MuhammadQASIM111/Animal_Sound_Classification
๐พ Animal Sound Classification Dataset A meticulously handcrafted dataset of labeled animal sounds for Machine Learning & Audio Classification tasks. Built with love, precision, and open-source spirit. ๐ Dataset Details ๐ Dataset Description The Animal Sound Classification Dataset contains curated audio clips of dogs, cats, cows, and more, extracted from longer recordings and meticulously trimmed to create clean, high-quality sound samples.โฆ See the full description on the dataset page: https://huggingface.co/datasets/MuhammadQASIM111/Animal_Sound_Classification.
023
1from datasets import load_dataset2 3def load_data():4 dataset = load_dataset('csv', data_files='ML1_features.csv')5 return dataset6 7# Example usage8dataset = load_data()9print(dataset)10 