Integrate libraries with vcpkg #6

Merged
rmontanana merged 27 commits from vcpkg into main 2025-07-02 17:39:44 +00:00
37 changed files with 214 additions and 3644 deletions
Showing only changes of commit e64e281b63 - Show all commits

View File

@@ -48,6 +48,7 @@ namespace platform {
double tp = 0, fp = 0;
double totalPos = std::count(y_test.begin(), y_test.end(), classIdx);
double totalNeg = nSamples - totalPos;
if (totalPos == 0 || totalNeg == 0) return 0.5; // neutral AUC
for (const auto& [score, label] : scoresAndLabels) {
if (label == 1) {