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

前端 未结 1 774
礼貌的吻别
礼貌的吻别 2021-02-10 08:31

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

相关标签:
1条回答
  • 2021-02-10 09:04

    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)

    Data

    Here is the equation I got:

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

    Here is the plot with the curve:

    Data with curve

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

    0 讨论(0)
提交回复
热议问题