|
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.
|
|
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.