Refactor stratified build removing uneeded structures

This commit is contained in:
2024-05-11 13:44:57 +02:00
parent c7bcc10dfb
commit 3fac7b95f8
2 changed files with 9 additions and 15 deletions

View File

@@ -17,7 +17,7 @@ TEST_CASE("Version Test", "[Folding]")
TEST_CASE("KFold Test", "[Folding]")
{
// Initialize a KFold object with k=3,5,7,10 and a seed of 19.
std::string file_name = GENERATE("iris", "diabetes", "glass");//, "mfeat-fourier");
std::string file_name = GENERATE("iris", "diabetes", "glass"); //, "mfeat-fourier");
auto raw = RawDatasets(file_name, true);
INFO("File Name: " << file_name);
int nFolds = GENERATE(3, 5, 7, 10);
@@ -66,7 +66,7 @@ TEST_CASE("KFold Test", "[Folding]")
TEST_CASE("StratifiedKFold Test", "[Folding]")
{
// Initialize a StratifiedKFold object with k=3, using the y std::vector, and a seed of 17.
std::string file_name = GENERATE("iris", "diabetes", "glass");//, "mfeat-fourier");
std::string file_name = GENERATE("iris", "diabetes", "glass"); //, "mfeat-fourier");
INFO("File Name: " << file_name);
int nFolds = GENERATE(3, 5, 7, 10);
INFO("Number of Folds: " << nFolds);