Skip to content

Commit 74a80a6

Browse files
Update syntax for new version of MLPCpp
1 parent 663c6de commit 74a80a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

RegressionTests/MLPCppwrapper/mlpcppwrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ std::vector<std::vector<double>> MLPCppEvaluator::EvaluateMLP(std::vector<std::v
4949
iomap = new MLPToolbox::CIOMap(query_vars_in, query_vars_out);
5050
lookup_mlp->PairVariableswithMLPs(*iomap);
5151
for (size_t iq=0; iq<network_inputs.size(); iq++){
52-
lookup_mlp->PredictANN(iomap, network_inputs[iq],query_refs_out);
52+
lookup_mlp->Predict(*iomap, network_inputs[iq],query_refs_out);
5353
std::copy(query_out.begin(), query_out.end(), mlp_output[iq].begin());
5454
}
5555
delete iomap;

0 commit comments

Comments
 (0)