DSGT-DLP / Deep-Learning-Playground

Web Application where people new to Deep Learning can input a dataset and toy around with basic Pytorch modules without writing any code
MIT License
26 stars 8 forks source link

Adding Audio Routing #1172

Closed codingwithsurya closed 6 months ago

codingwithsurya commented 6 months ago

Adding Audio Routing

Github Issue Number Here: <#1162> What user problem are we solving? We are extending the Deep Learning Playground's capabilities to include audio data processing, allowing users to interact with, upload, and train deep learning models on audio files.

What solution does this PR provide? This PR introduces a new route for audio processing similar to the existing image and tabular data routes. It includes the creation of schemas.py, audio.py, and init.py under the routes/audio directory. Additionally, it integrates this new route into the main application via urls.py.

Testing Methodology

How did you test your changes and verify that existing functionality is not broken

Any other considerations

karkir0003 commented 6 months ago

@codingwithsurya how did you test that this PR works?

karkir0003 commented 6 months ago

What are the next steps after this PR?

sonarcloud[bot] commented 6 months ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

codingwithsurya commented 6 months ago

@codingwithsurya how did you test that this PR works?

i didn't run any unit tests or anything since this was just getting the folder and routing setup

codingwithsurya commented 6 months ago

What are the next steps after this PR?

just filling out the files with necessary things for audio training. check out issues #1161 and #1156 for greater detail

codingwithsurya commented 6 months ago

@karkir0003 i can only go ahead and get the schemas.py set up in this pr itself if u would like

karkir0003 commented 6 months ago

@karkir0003 i can only go ahead and get the schemas.py set up in this pr itself if u would like

sounds good

codingwithsurya commented 6 months ago

@karkir0003 i can only go ahead and get the schemas.py set up in this pr itself if u would like

sounds good

let me do some research on how this will look like. we're employing kind of a different strategy here with our custom architecture. i'll get back to u on this.

codingwithsurya commented 6 months ago

schemas.py will be handled in #1156.