Skip to content
Snippets Groups Projects
LearningMethods.cpp 303 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * DESCRIPTION OF THE FILE
     *
     * @author Michal Kravčenko
     * @date 10.9.18 -
     */
    
    
    #include "LearningMethod.h"
    
    namespace lib4neuro {
        void GradientLearningMethod::optimize(ErrorFunction& ef,
                                              std::ofstream* ofs) {
    
            this->optimize(ef, ofs);