mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00
Fix/Add lower review limit to health check. (#4334)
This commit is contained in:
parent
7e8a1076c1
commit
9e415869b8
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ impl Collection {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let health_check_passed = if health_check {
|
let health_check_passed = if health_check && input.train_set.len() > 300 {
|
||||||
let fsrs = FSRS::new(None)?;
|
let fsrs = FSRS::new(None)?;
|
||||||
fsrs.evaluate_with_time_series_splits(input, |_| true)
|
fsrs.evaluate_with_time_series_splits(input, |_| true)
|
||||||
.ok()
|
.ok()
|
||||||
|
|
Loading…
Reference in a new issue