I have approximately 3k data rows. I wanted to get a model which can says whether a row should be labeled A or B.
I've used logistic regression and trained model for all subsets of features that I have, and the results are very poor. The best what I could achieve was 56% of accuracy with following confusion matrix:
TN: 446 FP: 6
FN: 349 TP: 12
Maybe it means that I can't predict anything based on features that I have? Should I try something different?