Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QoL improvements for SDeMo #367

Merged
merged 15 commits into from
Feb 28, 2025
Prev Previous commit
Next Next commit
bug(sdemo): verbose variable selection
  • Loading branch information
tpoisot committed Feb 27, 2025
commit c4c12f9079d1f3aca817d27378d941913a83a829
2 changes: 1 addition & 1 deletion SDeMo/src/variables/selection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function forwardselection!(
best_perf = mcc(noskill(model))
while ~isempty(on_top)
if verbose
nvar = lpad(length(candidates), 2, " ")
nvar = lpad(length(on_top), 2, " ")
@info "[$(nvar) vars.] MCC val. ≈ $(round(best_perf, 3))"
end
scores = zeros(length(on_top))
Expand Down