Fix/Add lower review limit to health check. (#4334)

This commit is contained in:
Luc Mcgrady 2025-09-17 05:04:27 +01:00 committed by Amanda Sternberg
parent 50713d00f4
commit 1921e52c5d

View file

@ -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)?;
fsrs.evaluate_with_time_series_splits(input, |_| true)
.ok()