I'm trying to run a simple problem in OpenNN. Most of it works okay, but when I get to TestingAnalysis, using the tutorial code gives me an error message to the effect that number of testing instances is zero. Fair enough, since I didn't actually provide it with the test set. I have a test set available, but looking for exactly how you're supposed to provide it, the tutorial doesn't say, and when I look at the examples, their code looks like:
TestingAnalysis testing_analysis(&neural_network, &data_set);
TestingAnalysis::LinearRegressionResults linear_regression_results = testing_analysis.perform_linear_regression_analysis();
... but that seems to be the same code as the tutorial, and literally nowhere in the source file is there any line of code to set the data set to anything other than the original training set. Yet the example seems to run okay without crashing on the testing analysis, though also without visibly doing anything there.
What am I missing?