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

Corrected reversedMLP

parent 17c4c49b
No related branches found
No related tags found
No related merge requests found
...@@ -386,6 +386,9 @@ NeuralNetwork * Classifier::createNeuralNetwork(const std::string & modelFilenam ...@@ -386,6 +386,9 @@ NeuralNetwork * Classifier::createNeuralNetwork(const std::string & modelFilenam
if (splited.size() == 2) if (splited.size() == 2)
return new GeneticAlgorithm(modelFilename); return new GeneticAlgorithm(modelFilename);
if (topology[0] == 'R')
return new ReversedMLP(modelFilename);
return new MLP(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