コード例 #1
0
int main (void)
{
    cout << "Hello world for Logistic Regression" << endl;

    LogisticRegression toDo;
    toDo.Test ();

    return 0;
}
コード例 #2
0
int main()
{
	LogisticRegression lr;
	lr.Test();
	return 0;
}