Open codingwithsurya opened 7 months ago
Hello @codingwithsurya! Thank you for submitting the Feature Request Form. We appreciate your contribution. :wave:
We will look into it and provide a response as soon as possible.
To work on this feature request, you can follow these branch setup instructions:
Checkout the main branch:
git checkout nextjs
Pull the latest changes from the remote main branch:
git pull origin nextjs
Create a new branch specific to this feature request using the issue number:
git checkout -b feature-1156
Feel free to make the necessary changes in this branch and submit a pull request when you're ready.
Best regards, Deep Learning Playground (DLP) Team
@arsbw2802
Feature Name
As part of our initiative to extend the Deep Learning Playground's capabilities to include audio data processing, we need to integrate the UrbanSoundDataset into our system.
Your Name
Surya Subramanian
Description
Description
This task involves enhancing the
training/core/dataset.py
module to support audio data, specifically focusing on the UrbanSound8K dataset. The goal is to create a seamless pipeline for data ingestion, preprocessing, and loading, tailored for audio files.Objectives
Take inspiration from the other classes in
dataset.py
and developdataCreator
,train_loader
, andtest_loader
methods to facilitate the loading of preprocessed audio data into the model for training and testing. Ensure that data loading is efficient and integrates well with PyTorch'sDataLoader
mechanism. Essentially, the code in this class will be used to create train and test datasets.Implementation Details
Your best bet is to take inspiration from ImageDefaultDatasetCreator and "recreate" that but for the UrbanSoundDataset. It should be seamless for us to call the createTrainDataset() and createTestDataset() methods from other files (like how it is being used called in
training/training/routes/image/image.py
.So in summary,
UrbanSoundDataset
class should be added totraining/core/dataset.py
, encapsulating all functionalities related to the UrbanSound8K dataset.Feel free to play around with this!