Skip to content
Snippets Groups Projects
LearningMethods.cpp 412 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * DESCRIPTION OF THE FILE
     *
     * @author Michal Kravčenko
     * @date 10.9.18 -
     */
    
    
        std::vector<double>* LearningMethod::get_parameters() {
            return &this->optimal_parameters;
        }
    
    
        void GradientLearningMethod::optimize(ErrorFunction& ef,
                                              std::ofstream* ofs) {
    
            this->optimize(ef, ofs);