fix thresholds

This commit is contained in:
Luc Mcgrady 2025-06-06 00:07:16 +01:00
parent b222e945d3
commit 9f2d0edeb9
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

View file

@ -191,7 +191,7 @@ impl Collection {
let adjusted_log_loss = eval.log_loss / log_loss_adjustment(r);
let adjusted_rmse = eval.rmse_bins / rmse_adjustment(r, fsrs_items);
adjusted_log_loss < 1.11 && adjusted_rmse < 1.53
adjusted_log_loss <= 1.11 || adjusted_rmse <= 1.53
})
} else {
None