slope 0.29.0
Loading...
Searching...
No Matches
setup_solver.cpp
1#include "hybrid.h"
2#include "pgd.h"
3#include <memory>
4#include <stdexcept>
5#include <string>
6
7namespace slope {
8
9std::unique_ptr<SolverBase>
10setupSolver(const std::string& solver_type,
11 const std::string& loss,
12 JitNormalization jit_normalization,
13 bool intercept,
14 bool update_clusters,
15 int cd_iterations)
16{
17 std::string solver_choice = solver_type;
18
19 if (solver_type == "auto") {
20 // TODO: Make this more sophisticated, e.g. define in solver class
21 // and check if compatible with the loss function.
22 solver_choice = loss == "multinomial" ? "fista" : "hybrid";
23 }
24
25 if (loss == "multinomial" && solver_choice == "hybrid") {
26 throw std::invalid_argument("multinomial loss is currently not "
27 "supported with the hybrid solver");
28 }
29
30 if (solver_choice == "pgd") {
31 return std::make_unique<PGD>(jit_normalization, intercept, "pgd");
32 } else if (solver_choice == "fista") {
33 return std::make_unique<PGD>(jit_normalization, intercept, "fista");
34 } else if (solver_choice == "hybrid") {
35 return std::make_unique<Hybrid>(
36 jit_normalization, intercept, update_clusters, cd_iterations);
37 } else {
38 throw std::invalid_argument("solver type not recognized");
39 }
40}
41}
Hybrid numerical solver for SLOPE combining coordinate descent and proximal gradient descent.
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5
JitNormalization
Enums to control predictor standardization behavior.
std::unique_ptr< SolverBase > setupSolver(const std::string &solver_type, const std::string &loss, JitNormalization jit_normalization, bool intercept, bool update_clusters, int cd_iterations)
Factory function to create and configure a SLOPE solver.
Proximal Gradient Descent solver implementation for SLOPE.