We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 663c6de commit 74a80a6Copy full SHA for 74a80a6
1 file changed
RegressionTests/MLPCppwrapper/mlpcppwrapper.cpp
@@ -49,7 +49,7 @@ std::vector<std::vector<double>> MLPCppEvaluator::EvaluateMLP(std::vector<std::v
49
iomap = new MLPToolbox::CIOMap(query_vars_in, query_vars_out);
50
lookup_mlp->PairVariableswithMLPs(*iomap);
51
for (size_t iq=0; iq<network_inputs.size(); iq++){
52
- lookup_mlp->PredictANN(iomap, network_inputs[iq],query_refs_out);
+ lookup_mlp->Predict(*iomap, network_inputs[iq],query_refs_out);
53
std::copy(query_out.begin(), query_out.end(), mlp_output[iq].begin());
54
}
55
delete iomap;
0 commit comments