slope 0.29.0
Loading...
Searching...
No Matches
slope::CvConfig Struct Reference

Configuration settings for cross-validation. More...

#include <cv.h>

Public Attributes

int n_folds = 10
 Number of folds for cross-validation (default: 10)
 
int n_repeats = 1
 Number of times to repeat the cross-validation (default: 1)
 
std::string metric = "mse"
 Evaluation metric used for model assessment (default: "mse")
 
uint64_t random_seed = 42
 Seed for random number generator to ensure reproducibility (default: 42)
 
std::map< std::string, std::vector< double > > hyperparams = { { "q", { 0.1 } } }
 
std::optional< std::vector< std::vector< std::vector< int > > > > predefined_folds
 Optional user-defined fold assignments for custom cross-validation splits.
 

Detailed Description

Configuration settings for cross-validation.

This struct specifies the parameters used to control the cross-validation process, including fold count, evaluation metric, random seed, and hyperparameter grid.

Definition at line 85 of file cv.h.

Member Data Documentation

◆ hyperparams

std::map<std::string, std::vector<double> > slope::CvConfig::hyperparams = { { "q", { 0.1 } } }

Map of hyperparameter names to vectors of values to evaluate (default: {"q", {0.1}})

Definition at line 101 of file cv.h.

◆ metric

std::string slope::CvConfig::metric = "mse"

Evaluation metric used for model assessment (default: "mse")

Definition at line 94 of file cv.h.

◆ n_folds

int slope::CvConfig::n_folds = 10

Number of folds for cross-validation (default: 10)

Definition at line 88 of file cv.h.

◆ n_repeats

int slope::CvConfig::n_repeats = 1

Number of times to repeat the cross-validation (default: 1)

Definition at line 91 of file cv.h.

◆ predefined_folds

std::optional<std::vector<std::vector<std::vector<int> > > > slope::CvConfig::predefined_folds

Optional user-defined fold assignments for custom cross-validation splits.

Definition at line 104 of file cv.h.

◆ random_seed

uint64_t slope::CvConfig::random_seed = 42

Seed for random number generator to ensure reproducibility (default: 42)

Definition at line 97 of file cv.h.


The documentation for this struct was generated from the following file: