Skip to content
Snippets Groups Projects
Select Git revision
  • 13381a1f714a37276a51e03069b7da6358a77c0f
  • master default protected
2 results

ModelTable.vue

Blame
  • ProgramParameters.hpp 1.16 KiB
    /// @file ProgramParameters.hpp
    /// @author Franck Dary
    /// @version 1.0
    /// @date 2018-09-27
    #ifndef PROGRAMPARAMETERS__H
    #define PROGRAMPARAMETERS__H
    
    #include <string>
    
    struct ProgramParameters
    {
      static std::string input;
      static std::string expName;
      static std::string expPath;
      static std::string langPath;
      static std::string templatePath;
      static std::string templateName;
      static std::string tmFilename;
      static std::string tmName;
      static std::string bdFilename;
      static std::string bdName;
      static std::string mcdFilename;
      static std::string mcdName;
      static bool debug;
      static std::string trainFilename;
      static std::string trainName;
      static std::string devFilename;
      static std::string devName;
      static std::string lang;
      static std::string optimizer;
      static int nbIter;
      static int seed;
      static bool removeDuplicates;
      static bool shuffleExamples;
      static float learningRate;
      static float beta1;
      static float beta2;
      static float bias;
      static bool interactive;
      static int dynamicEpoch;
      static float dynamicProbability;
      static bool showFeatureRepresentation;
      static int iterationSize;
    
      private :
    
      ProgramParameters();
    };
    
    #endif