Skip to content
Snippets Groups Projects
Select Git revision
  • 164b931a05bd68259406c8a7f852d328eb6d07e2
  • master default protected
  • ci39
  • ci39-python12
  • py39
  • issue#14
  • endianness
  • bugs_i686
  • bug_test_instfreqplot_arm64
  • bug_test_tfplot
  • gitlab-ci
  • debian
  • v1.1.2
  • v1.1.1
  • v1.0.17
  • v1.0.16
  • v1.0.15
  • v1.0.14
  • v1.0.13
  • v1.0.12
  • v1.0.9
  • v1.0.8
  • v1.0.7
  • v1.0.6
  • v1.0.0
25 results

arg_firwin.py

Blame
  • Classifier.cpp 465 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;
    }
    
    const std::string & Classifier::getName() const
    {
      return name;
    }