Imbalanced data classification with boosting algorithm
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
soudeh
el 10 de Nov. de 2013
Comentada: Ilya
el 10 de Nov. de 2013
I am working on a binary data classification problem. The dataset is imbalanced, it consists of 92% 'false' labels and 8% 'true' labels. The number of features is 18 and I have a small number of 650 data points. I want to use boosting algorithms in matlab like 'GentleBoost' to solve this problem. I assign uniform for prior as follows:
ada = fitensemble(Xtrain,Ytrain,'GentleBoost',10,'Tree','LearnRate',0.1, 'prior', 'uniform');
but the performance is consistently poor. How should I set the parameters? Is it necessary to set a cost? How can I do this?Is there any classifier that perform better than this?
Respuesta aceptada
the cyclist
el 10 de Nov. de 2013
I think it is very difficult to assess this, because it is possible that your dataset is simply difficult to classify. (For example, maybe it is actually almost random, independent of the features.)
My suggestion would be to create an artificial dataset in which you know that the features determine the response. Test the syntax with that dataset, to ensure that you are coding it correctly.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!