Skip to content
Snippets Groups Projects
Classifier.cpp 321 B
Newer Older
#include "Classifier.hpp"

Classifier::Classifier(const std::string & name, const std::string & topology, const std::string & tsFile)
{
  this->name = name;
  this->transitionSet.reset(new TransitionSet(tsFile));
Franck Dary's avatar
Franck Dary committed
  this->nn = MLP(topology);
TransitionSet & Classifier::getTransitionSet()
{
  return *transitionSet;
}