Editing
Memory Learning
(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> == '''Simulating the Rescorla-Wagner Model of Classical Conditioning:''' <syntaxhighlight lang="python"> def simulate_conditioning(n_trials, alpha, beta, lambda_val): """ Rescorla-Wagner model: V_next = V + alpha * beta * (lambda - V) V: Current associative strength alpha: Salience of CS (stimulus) beta: Salience of US (reward/unconditioned stimulus) lambda: Maximum possible associative strength """ v = 0 history = [] for _ in range(n_trials): delta_v = alpha * beta * (lambda_val - v) v += delta_v history.append(v) return history # Simulate learning progress # High salience (fast learning) fast_learner = simulate_conditioning(20, 0.5, 0.5, 1.0) # Low salience (slow learning) slow_learner = simulate_conditioning(20, 0.1, 0.5, 1.0) print(f"Fast Learner after 5 trials: {fast_learner[4]:.2f}") print(f"Slow Learner after 5 trials: {slow_learner[4]:.2f}") # The result follows a negatively accelerated learning curve. </syntaxhighlight> ; Strategies for Better Learning : '''Spaced Repetition''' β Reviewing material at increasing intervals to combat the "forgetting curve." : '''Retrieval Practice''' β Actively testing yourself rather than passively re-reading. : '''Elaboration''' β Connecting new info to existing knowledge (semantic encoding). : '''Interleaving''' β Mixing different topics or skills during a single study session. : '''Dual Coding''' β Using both verbal and visual information to encode concepts. </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