int main (void) { cout << "Hello world for Logistic Regression" << endl; LogisticRegression toDo; toDo.Test (); return 0; }
int main() { LogisticRegression lr; lr.Test(); return 0; }