Lines Matching full:endl
87 cout << "**********************************************************************" << endl;
89 << " contains digits 0 and 1 of 20 samples each, collected on an Android device" << endl;
91 << endl;
92 cout << "**********************************************************************" << endl;
106 cerr << "file can not be opened: " << filename << endl;
111 cout << "read " << data.rows << " rows of data" << endl;
129 cout << "training/testing samples count: " << data_train.rows << "/" << data_test.rows << endl;
146 cout << "done!" << endl;
151 cout << "done!" << endl;
154 cout << "original vs predicted:" << endl;
156 cout << labels_test.t() << endl;
157 cout << responses.t() << endl;
158 cout << "accuracy: " << calculateAccuracyPercent(labels_test, responses) << "%" << endl;
162 cout << "saving the classifier to " << saveFilename << endl;
166 cout << "loading a new classifier from " << saveFilename << endl;
173 cout << "done!" << endl;
176 cout << labels_test.t() << endl;
177 cout << responses2.t() << endl;
178 cout << "accuracy: " << calculateAccuracyPercent(labels_test, responses2) << "%" << endl;