Jump to content

Simple neural network question


GSR

Recommended Posts

Hi,

I am reading a neural network book and try to learn it by myself. I have some idea how neural network could use to classify time-independent patterns (like classify between 2 letters). However, I have no clue how it can classify a time signal. For example, I want to classify whether a song is singed by a male/female singer. How to do that?? I need only general conceptual suggestion. Any thing like websites suggestion will help

Thanks

Edited by GSR
Link to comment

Hi,

I am reading a neural network book and try to learn it by myself. I have some idea how neural network could use to classify time-independent patterns (like classify between 2 letters). However, I have no clue how it can classify a time signal. For example, I want to classify whether a song is singed by a male/female singer. How to do that?? I need only general conceptual suggestion. Any thing like websites suggestion will help

Thanks

You've really hit on the $64 million question in neural net programming. Pre-rocessing the data into a discrete form that can be trained into a neural net is the most important factor in determining a net's success. There really isn't a one size fits all approach that will work for all time variant signals. In your specific case, the most likely difference between male and female voices is frequency. You might try doing an FFT on portions of the song and dividing that up into discrete frequency bins. The relative values of the bins are then fed to the input nodes of the net. Doing a search on neural networks and voice recognition will result in thousands of hits, one of them might be useful.

Here's a few things I've learned the hard way. Always normalize your input data set, variation is signal strength will really throw off your results. Make sure you randomly select values out of your training set for your test set. And collect as many training sets as you can.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.