I applied SVM to perform the classification against several data sets. It turns out that the performance metric of recall is pretty bad for one data set. It has recall around 50% while other data sets have recall around 80%. For this kind of scenario, what are the possible approaches that are available to improve the recall? Besides, why some data sets can have a poor performance in terms of recall? How to analyze this kind of problem?
Best Answer
Are you sure that your data-set is balanced (# of negative examples close to # of positive examples)? SVM is very limited when the dataset is imbalanced…
Low recall means you have many false negatives, which might mean that you have more positive examples than negatives?
Similar Posts:
- Solved – How to explain poor classification performance of recall when using SVM
- Solved – How to explain poor classification performance of recall when using SVM
- Solved – Why doesn’t recall take into account true negatives
- Solved – Calculate precision and recall
- Solved – Evaluation metric for rare event probability regression