Open geomags3 opened 1 month ago
Hi Nikita
The behavior you're seeing in Anki is likely due to the Learning steps that you have set in your deck options. Currently this implementation does not support learning/relearning steps the way Anki does.
We will be adding more scheduler options in the future however. Would the ability to configure learning steps be something you'd like to see in a future version?
Hi Josh
Thank you for the quick response.
Yes, I'd love to be able to configure learning steps in the future. But for the time being, can I tweak these steps in the library?
I see there are only two places with hardcoded "minutes" in the code:
s.again.due = now + timedelta(minutes=1)
s.hard.due = now + timedelta(minutes=5)
s.good.due = now + timedelta(minutes=10)
and schedule method:
self.again.due = now + timedelta(minutes=5)
if hard_interval > 0:
self.hard.due = now + timedelta(days=hard_interval)
else:
self.hard.due = now + timedelta(minutes=10)
Can I set self.again.due
to now + timedelta(minutes=1)
, and 10 mins for self.hard.due
, or is it not that simple?
Could you be a bit more specific? Which lines exactly are you hoping to change?
Hi,
Thanks so much for the great algorithm and implementation—it's really cool!
I’d like to use it in my app, but I’ve noticed an issue. It moves new cards to "Review" and increases the Due time too quickly. When I compared it to my Anki app with the same settings, the results were quite different:
Anki app:
py-fsrs script