CoolFace
Datasetpublic

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.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes23downloads
dataset_loader.py10 linesDownload Raw Back to root
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