|
Hello Everyone, I have a simple yet a very complicated question. I am working in the filed of Healthinformatics, where I am processing a patients data that is coming from different sources like {blood test, urine test etc} and try to predict whether the person is healthy(0) or not healthy(1). So as you notices I have many inputs and binary output (0 or 1). The question is which machine learning algorithms to use for my task apart from ANN I already using it? My thoughts are - Logistic regression - Support vector machines - Maybe fuzzy logic Which one will better suite me and easier to use ? Thank you |
|
I feel SVM suits you the best, considering that you will have to tune it the least and also it can give pretty go performance provided you dont have interdependencies etc in the input. You can use the grid search method on libsvm - binary classification. |