Skip to content
Snippets Groups Projects
Select Git revision
  • 4ed4809613fc40c307025f93c461eab200d3b450
  • master default protected
2 results

center_blob.html

Blame
  • Classifier.cpp 397 B
    #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));
      this->nn = TestNetwork(transitionSet->size(), 5);
    }
    
    TransitionSet & Classifier::getTransitionSet()
    {
      return *transitionSet;
    }
    
    TestNetwork & Classifier::getNN()
    {
      return nn;
    }