/
bauman-team
/
GMDH
Обзор
Документация
Войти
/
bauman-team
/
GMDH
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/multi.h
19 строк
620 B
Artem Babin
Wrote documentation for all objects
14 май 2023, 22:23
14 май 2023, 22:23
24def5c
Код
Авторство
О чём код?
#pragma once #include "linear_model.h" namespace GMDH { /// @brief Class implementing combinatorial selection MULTI algorithm class GMDH_API MULTI : public LinearModel { protected: VectorVu16 generateCombinations(int n_cols) const override; public: /// @brief Construct a new MULTI object MULTI() : LinearModel() {} /// @copydoc GmdhModel::gmdhFit GmdhModel& fit(const MatrixXd& x, const VectorXd& y, const Criterion& criterion = Criterion(CriterionType::regularity), int kBest = 3, double testSize = 0.5, int pAverage = 1, int threads = 1, int verbose = 0, double limit = 0); }; }