mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
fix thresholds
This commit is contained in:
parent
b222e945d3
commit
9f2d0edeb9
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ impl Collection {
|
||||||
let adjusted_log_loss = eval.log_loss / log_loss_adjustment(r);
|
let adjusted_log_loss = eval.log_loss / log_loss_adjustment(r);
|
||||||
let adjusted_rmse = eval.rmse_bins / rmse_adjustment(r, fsrs_items);
|
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 {
|
} else {
|
||||||
None
|
None
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue