Editing
Spaced Repetition
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Forgetting Curve' (Predicting memory strength over time):''' <syntaxhighlight lang="python"> def predict_memory_strength(initial_strength, days_passed, review_count): """ Shows how reviews 'Reset' and 'Flatten' the curve. """ # Forgetting follows an exponential decay: S = e^(-t/R) # Each review increases 'R' (the 'Retrievability' or stability) retrievability = initial_strength * (2 ** review_count) current_strength = 100 * (0.8 ** (days_passed / retrievability)) return round(current_strength) # Case 1: 3 days after learning, 0 reviews. print(f"Strength (No Review): {predict_memory_strength(1, 3, 0)}%") # Case 2: 3 days after learning, 2 spaced reviews. print(f"Strength (With Reviews): {predict_memory_strength(1, 3, 2)}%") </syntaxhighlight> ; Learning Landmarks : '''Ebbinghaus’s Experiments (1885)''' → The first-ever scientific study of memory, where Ebbinghaus memorized "Nonsense Syllables" (like DAX or BOK) to see how fast he forgot them. : '''Pimsleur Language Learning''' → A famous audio-based method that uses "Spaced intervals" (5 seconds, 25 seconds, 2 minutes) to teach you a new language without writing anything down. : '''Medical School Anki Culture''' → Modern medical students use massive "Anki Decks" (like Zanki) to memorize the 20,000 facts needed to become a doctor, proving that SRS works for high-stakes learning. : '''The FSRS Algorithm''' → A new "Free Spaced Repetition Scheduler" based on advanced math that is 15% more efficient than the older "SM-2" algorithm used for 30 years. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information