/** * DESCRIPTION OF THE FILE * * @author Michal KravĨenko * @date 10.9.18 - */ #include "LearningMethod.h" namespace lib4neuro { std::vector<double>* LearningMethod::get_parameters() { return &this->optimal_parameters; } void GradientLearningMethod::optimize(ErrorFunction& ef, std::ofstream* ofs) { this->optimize(ef, ofs); } }