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

Fixed error message

parent ca72f53e
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ void Classifier::initNeuralNetwork(const std::vector<std::string> & definition)
else if (networkType == "Modular")
initModular(definition, curIndex, nbOutputsPerState);
else
util::myThrow(fmt::format("Unknown network type '{}', available types are 'Random, LSTM'", networkType));
util::myThrow(fmt::format("Unknown network type '{}', available types are 'Random, Modular'", networkType));
this->nn->to(NeuralNetworkImpl::device);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment