What is the spaced repetition algorithm to generate the day intervals?

随声附和 提交于 2019-12-21 02:31:32

问题


I am implementing a flashcard game and I want to implement spaced repetition. I don't need something complex like in SuperMemo, but simply space the learning based on the score for each card.

What I am looking for at the moment is how to calculate the number of days until a card is shown again, based on its score. I found that ZDT uses the list in the screenshot below (1, 2, 3, 5, etc.). Does anybody know how to dynamically generate this list (so that I can calculate beyond a score of 12)?

Or perhaps could someone guess what math function I could use to generate the numbers on the ZDT list? They increase exponentially.


回答1:


It looks very similar to a logistic curve. I'll run a logistic regression on it and see what comes out.

Here is the data (plotted using WolframAlpha)

Here is the equation I got:

f(x) = 115/(1+2192*EXP(-0.79*x))

Here is the plot with the curve:

Unfortunately the curve isn't very accurate for small numbers.



来源:https://stackoverflow.com/questions/6955212/what-is-the-spaced-repetition-algorithm-to-generate-the-day-intervals

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!