Skip to content
Snippets Groups Projects
LearningMethods.cpp 435 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) {
    
    Martin Beseda's avatar
    Martin Beseda committed
            this->optimize(ef,
                           ofs);