Fix CFS merit computation error

This commit is contained in:
2025-06-01 13:54:18 +02:00
parent da357ac5ba
commit ad72bb355b
6 changed files with 164 additions and 137 deletions

View File

@@ -1,8 +1,8 @@
// **
// ***************************************************************
// SPDX-FileCopyrightText: Copyright 2024 Ricardo Montañana Gómez
// SPDX-FileType: SOURCE
// SPDX-License-Identifier: MIT
// **
// ***************************************************************
#include "bayesnet/utils/bayesnetUtils.h"
#include "FeatureSelect.h"
@@ -136,6 +136,4 @@ namespace bayesnet {
if (!fitted) throw std::runtime_error("FeatureSelect not fitted");
return selectedScores;
}
} // namespace bayesnet
}