Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maximum number of features for SVM

I am trying to analyse sound with SVM.

Since sound is split in huge number of digital data, I want to split the sound up into every single second.

If sample rate of sound is 44100Hz, I will get 44100 features.

Is it possible to put 44100 features in SVM?

What would be the maximum number of features for SVM?

like image 697
SounBum Song Avatar asked Sep 17 '25 16:09

SounBum Song


1 Answers

It is possible to have a lot more features than what you need. I don't think there is a hard limit and the maximum number depends mostly on the resources you have(CPU, RAM) to process the data. However most often in is not a good idea to have many features. The problem is that the more features you have the more data you need to train the model in order to avoid over fitting to the train data.

like image 100
Ivaylo Strandjev Avatar answered Sep 19 '25 08:09

Ivaylo Strandjev