From 3eb7498d1d23abe02a345e546ae31ac0bbe45c08 Mon Sep 17 00:00:00 2001 From: Jarrett Ye Date: Wed, 25 Oct 2023 15:42:37 +0800 Subject: [PATCH] Doc/average retention (#280) --- README.md | 2 +- stats.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f36664c..d5811cd 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Interpretation: - Total **burden**, as defined by Piotr Woźniak here: https://supermemo.guru/wiki/Burden - The [three component of the memory model](https://supermemo.guru/wiki/Three_component_model_of_memory) used by FSRS: - - Average **retention** reflects the percentage of cards that you would recall correctly if you were tested today. + - Average predicted **retention** reflects the percentage of cards that you would recall correctly if you were tested today. - Average (memory) **stability** reflects how fast you forget (forgetting rate). The greater the stability, the slower the forgetting rate. - **Difficulty** reflects how hard it is to increase or maintain the stability of a memory. Its relative distribution within the deck/collection can be viewed at the bottom of the statistics interface: ![image](https://user-images.githubusercontent.com/32575846/260213063-9b18fbaa-6b92-4392-8984-03b85f3fcedd.png) diff --git a/stats.py b/stats.py index 026e267..11a18fa 100644 --- a/stats.py +++ b/stats.py @@ -111,7 +111,7 @@ def get_fsrs_stats(self: CollectionStats): note_cnt, ) = retention_stability_burden(lim) i = [] - _line_now(i, "Average retention", f"{retention * 100: .2f}%") + _line_now(i, "Average predicted retention", f"{retention * 100: .2f}%") _line_now(i, "Average stability", f"{round(stability)} days") _line_now(i, "Burden", f"{round(burden)} reviews/day") i.append( @@ -139,9 +139,9 @@ def get_fsrs_stats(self: CollectionStats): ) stats_data = _lineTbl_now(i) interpretation = ( - "
Interpretation" - + "