Skip to content
Snippets Groups Projects
Commit 09537fce authored by Franck Dary's avatar Franck Dary
Browse files

Fixed MultiMLP reading from file

parent 13a8c4bd
Branches
No related tags found
No related merge requests found
......@@ -393,6 +393,9 @@ NeuralNetwork * Classifier::createNeuralNetwork(const std::string & modelFilenam
if (topology[0] == 'R')
return new ReversedMLP(modelFilename);
if (topology[0] == 'M')
return new MultiMLP(modelFilename);
return new MLP(modelFilename);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment