Fix/Add lower review limit to health check.

This commit is contained in:
Luc Mcgrady 2025-09-14 11:18:55 +01:00
parent 539054c34d
commit 25b57f8233
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

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()