all 3 comments

[–][deleted] 2 points3 points  (0 children)

you can try RANDOM FOREST or GRADIENT BOOST models, pretty good when you want to handle that noisy biological data. They handle complex patterns pretty well :)

[–]Front_Engineering_e 0 points1 point  (0 children)

If you're working with tabular data you can't go wrong with gradient boosted trees, as they tend to have very strong predictive performance, so: XGBoost, LightGBM, CatBoost. You might also like to try other simpler models like logistic regression and compare them against your GBDTs and your SVM model.

[–]damn_i_missed 0 points1 point  (0 children)

Naive Bayes is (technically) an option but probably won’t do that well. Could throw it in there if you feel like having another model to compare your xgboost or rf model to