PALMS: A Computational Implementation for Pavlovian Associative Learning Models' Simulation
Pith reviewed 2026-05-16 06:22 UTC · model grok-4.3
The pith
PALMS turns mathematical models of Pavlovian learning into runnable Python simulations for complex experiments.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
PALMS is a Python implementation that directly translates the update rules of the Rescorla-Wagner model, the Pearce-Kaye-Hall model, the Mackintosh Extended model, Le Pelley's Hybrid model, and a novel unified variable learning rate model into code. The package accepts alphanumeric experimental designs, computes configural cues and compounds for all models, and supports large stimulus sets typical of human studies. Running the code on five published datasets confirms that the simulations reproduce the expected associative strengths and attentional shifts.
What carries the argument
The PALMS Python package and its graphical interface, which convert the mathematical definitions of the learning models into step-by-step simulation routines that accept design files and output trial-by-trial associative values.
If this is right
- Researchers can identify which parameters most influence predictions by running controlled simulations.
- Experimental designs can be tested and adjusted computationally before collecting real data.
- Different models can be compared directly on the same dataset to measure relative fit.
- New theoretical variants can be added by modifying the unified learning-rate module.
- Configural compounds can be simulated for any of the implemented models, expanding their range beyond elemental stimuli.
Where Pith is reading between the lines
- The same simulation structure could be reused to test whether biological learning mechanisms scale to very large stimulus sets.
- Linking PALMS outputs to neural recording data might reveal which brain signals correspond to the model's attention and error terms.
- The unified learning-rate rule offers a concrete starting point for deriving hybrid models that combine error-driven and attention-driven updates.
Load-bearing premise
The code faithfully reproduces the original mathematical update equations of each model without introducing bugs or unintended side effects.
What would settle it
Run PALMS on the exact designs from the five published experiments and check whether the generated associative strengths and attention values match the numerical results reported in those papers.
Figures
read the original abstract
In contrast to static formalisms, computational definitions describe the operational mechanisms of a model. Simulations are an essential part of the cycle of theory development and refinement, assisting researchers in formulating the precise definitions that models require, and making accurate predictions. This manuscript introduces a computational implementation of Pavlovian learning models in a Python environment, termed Pavlovian Associative Learning Models' Simulation (PALMS). In addition to the canonical Rescorla-Wagner model, attentional approaches are implemented, including Pearce-Kaye-Hall, Mackintosh Extended, Le Pelley's Hybrid, and a novel extension of the Rescorla-Wagner model featuring a unified variable learning rate that synthesises Mackintosh's and Pearce and Hall's opposing conceptualisations. To our knowledge, only the first attentional model has been previously specified computationally in a general design tool. PALMS integrates a graphical interface that permits the input of entire experimental designs in an alphanumeric format, akin to that used by experimental neuroscientists. It uniquely enables the simulation of experiments involving hundreds of stimuli, such as those used with human participants, and the computation of configural cues and configural-cue compounds across all models, thereby substantially broadening their predictive capabilities. A comprehensive description of the models' implementation is provided in the paper. We evaluate PALMS by simulating five published experiments in the associative learning literature that assessed the predictive scope of existing models, and we show that this implementation provides neuroscientists with a useful tool for identifying critical variables, refining experimental designs, making precise predictions, comparing model fitness, and formulating new theoretical approaches.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript introduces PALMS, a Python implementation of Pavlovian associative learning models including the canonical Rescorla-Wagner model, attentional variants (Pearce-Kaye-Hall, Mackintosh Extended, Le Pelley Hybrid), and a novel unified variable learning-rate extension that synthesizes opposing attentional accounts. The tool accepts alphanumeric experimental designs, supports hundreds of stimuli and configural cue compounds across all models, and is evaluated via re-simulation of five published experiments from the associative learning literature.
Significance. If the implementations prove faithful, PALMS would supply a practical, extensible simulation platform that lowers the barrier to quantitative model comparison, experimental design refinement, and exploration of configural and large-scale designs that are otherwise cumbersome to code by hand. The novel unified learning-rate synthesis is a substantive conceptual contribution whose utility hinges on demonstrated numerical fidelity to the source equations.
major comments (2)
- The evaluation section reports successful simulation of five published experiments yet supplies no quantitative fit statistics, RMSE values, or side-by-side numerical tables comparing PALMS outputs to the original published model predictions or to independent re-implementations; without these, the claim that the code faithfully reproduces the cited models (especially the novel unified extension for configural compounds) cannot be assessed.
- No unit tests, formal verification protocol, or explicit parameter-by-parameter comparison against the source equations for the unified variable learning-rate model is described; this is load-bearing for the central claim that PALMS constitutes a reliable synthesis of Mackintosh and Pearce-Hall accounts.
minor comments (2)
- The abstract states that 'a comprehensive description of the models' implementation is provided'; the corresponding section should include explicit pseudocode or equation-level mappings for the configural-cue handling routine used by all five models.
- Clarify whether the graphical interface accepts only the alphanumeric format described or also supports direct parameter entry for the free learning-rate parameters listed in the model definitions.
Simulated Author's Rebuttal
We thank the referee for the detailed and constructive feedback. The points raised highlight important aspects of validation that we will strengthen in the revision. Below we respond point-by-point to the major comments.
read point-by-point responses
-
Referee: The evaluation section reports successful simulation of five published experiments yet supplies no quantitative fit statistics, RMSE values, or side-by-side numerical tables comparing PALMS outputs to the original published model predictions or to independent re-implementations; without these, the claim that the code faithfully reproduces the cited models (especially the novel unified extension for configural compounds) cannot be assessed.
Authors: We agree that quantitative comparisons would allow readers to assess fidelity more rigorously. In the revised manuscript we will add side-by-side tables for all five experiments, reporting PALMS outputs alongside the original published predictions (where available) together with RMSE values. For the novel unified variable learning-rate extension, which has no prior published numerical predictions, we will supply explicit numerical examples for both elemental and configural compounds, including the exact learning-rate values generated at each trial. revision: yes
-
Referee: No unit tests, formal verification protocol, or explicit parameter-by-parameter comparison against the source equations for the unified variable learning-rate model is described; this is load-bearing for the central claim that PALMS constitutes a reliable synthesis of Mackintosh and Pearce-Hall accounts.
Authors: We acknowledge that a formal verification section is necessary to substantiate the synthesis claim. The revised manuscript will include a new subsection detailing unit tests for each model component, a verification protocol that walks through the unified learning-rate formula step-by-step, and direct parameter-by-parameter comparisons (e.g., attention weights, associability terms) against the combined Mackintosh and Pearce-Hall equations for representative trial sequences. revision: yes
Circularity Check
No circularity: implementation and re-simulation of existing models
full rationale
The paper introduces PALMS as a Python tool implementing canonical models (Rescorla-Wagner, Pearce-Kaye-Hall, Mackintosh, Le Pelley) plus a novel unified variable learning rate presented as a conceptual synthesis. Evaluation proceeds by re-simulating five published experiments from the literature. No load-bearing step reduces by construction to fitted parameters, self-citations, or renamed inputs; the contribution is the software artifact and its application to existing designs, which remains independent of any internal loop. The synthesis is defined explicitly rather than derived from the simulations themselves.
Axiom & Free-Parameter Ledger
free parameters (1)
- learning rate parameters
axioms (1)
- domain assumption The mathematical formulations of Rescorla-Wagner, Pearce-Kaye-Hall, Mackintosh Extended, and Le Pelley Hybrid models are standard and correctly implemented.
Lean theorems connected to this paper
-
IndisputableMonolith/Cost/FunctionalEquation.leanwashburn_uniqueness_aczel unclear?
unclearRelation between the paper passage and the cited Recognition theorem.
The change in associative strength ΔV^{n+1}_x = α_x · β · (λ − Σ_i V^n_i) (Eq. 1); α^{n+1}_x = α^n_x · (1−d) + α^0_x · V^n_x · (λ − Σ_i V^n_i) for the novel MLAB unified rate (Eq. 12).
-
IndisputableMonolith/Foundation/AlexanderDuality.leanalexander_duality_circle_linking unclear?
unclearRelation between the paper passage and the cited Recognition theorem.
Configural cues q(AB) added to compound value V_{AB} = V_A + V_B + V_{q(AB)}; hundreds-of-stimuli designs with ^n notation.
What do these tags mean?
- matches
- The paper's claim is directly supported by a theorem in the formal canon.
- supports
- The theorem supports part of the paper's argument, but the paper may add assumptions or extra steps.
- extends
- The paper goes beyond the formal theorem; the theorem is a base layer rather than the whole result.
- uses
- The paper appears to rely on the theorem as machinery.
- contradicts
- The paper's claim conflicts with a theorem or certificate in the canon.
- unclear
- Pith found a possible connection, but the passage is too broad, indirect, or ambiguous to say the theorem truly supports the claim.
Reference graph
Works this paper leans on
-
[1]
E. Alonso, E. Mondragón, What have computational models ever done for us?: A case study in classical conditioning, International Journal of Artificial Life Research (IJALR) 4 (1) (2014) 1–12.doi:10.4018/ijalr.2014010101
-
[2]
Neuhaus, W and Reininger-Gutmann, B and Rinner, B and Plasenzotti, R and Wilflingseder, D, et al., The rise of three Rs centres and platforms in Europe, Alternatives to Laboratory Animals 50 (2) (2022) 90–120.doi:10.1177/02611929221099165
-
[3]
Rescorla, Pavlovian conditioning
R. Rescorla, Pavlovian conditioning. it’s not what you think it is, The American Psychologist 43 3 (1988) 151–160.doi:10.1037/0003-066X.43.3.151
-
[4]
D. R. Shanks, Learning: From association to cognition, Annual Review of Psychology 61 (2010) 273–301.doi:10.1146/annurev.psych.093008.100519. 31
-
[5]
D. T. Benton, An associative-learning account of how infants learn about causal action in animates and inanimates: A critical reexamination of four classic studies, Journal of Experimental Psychology: General (2024).doi:10.1037/xge0001656
-
[6]
C. Hansel, Contiguity in perception: origins in cellular associative computations, Trends in Neurosciences 47 (3) (2024) 170–180.doi:10.1016/j.tins.2024.01.001
-
[7]
S. Fineberg, J. Hu, K. Null, E. Neustadter, M. Sakheim, P. Corlett, Associative learning profiles in borderline personality disorder: Acquisition, kamin blocking, and metacognitive performance, Cortex 162 (12) (2024) 2360–2373.doi:10.31234/osf.io/4gv8m
-
[8]
E. Mondragón, Mediated learning: A computational rendering of ketamine-induced symptoms, Behavioral Neuroscience (2024) 178–194doi:10.1037/bne0000591
-
[9]
L.-A. Sapey-Triomphe, V. A. Weilnhammer, J. Wagemans, Associative learning under un- certainty in adults with autism: Intact learning of the cue-outcome contingency, but slower updating of priors, Autism 26 (5) (2022) 1216–1228.doi:10.1177/13623613211045026
-
[10]
R. Avvisati, A.-K. Kaufmann, C. J. Young, G. E. Portlock, S. Cancemi, R. P. Costa, P. J. Magill, P. D. Dodson, Distributional coding of associative learning in discrete populations of midbrain dopamine neurons, Cell reports 43 (4) (2024).doi:10.1016/j.celrep.2024.114080
-
[11]
L. K. Held, E. Cracco, L. Bardi, M. Kiraga, E. Cristianelli, M. Brass, E. L. Abrahamse, S. Braem, Associative visuomotor learning using transcranial magnetic stimulation induces stimulus–response interference, Journal of Cognitive Neuroscience 36 (3) (2024) 522–533. doi:0.1162/jocn_a_02100
work page 2024
-
[12]
J. Lind, What can associative learning do for planning?, Royal Society Open Science 5 (11) (2018) 180778.doi:10.1098/rsos.180778. URLhttps://royalsocietypublishing.org/doi/abs/10.1098/rsos.180778
- [13]
-
[14]
K. Kaygisiz, R. Ulijn, Can molecular systems learn?, ChemSystemsChem 7 (2) (2025) e202400075.doi:10.1002/syst.202400075
-
[15]
P. Anokhin, A. Sorokin, M. Burtsev, K. Friston, Associative learning and active inference, Neural Computation (2024) 1–34doi:10.1162/neco_a_01711
-
[16]
R. Sosa, Conditioned inhibition, inhibitory learning, response inhibition, and inhibitory control: Outlining a conceptual clarification., Psychological Review 131 (1) (2024) 138–173. doi:10.1037/rev0000405
-
[17]
R. R. Bush, F. Mosteller, A mathematical model for simple learning, Psychological Review 58 (5) (1951) 313–323.doi:10.1037/h0054388
-
[18]
W. K. Estes, Toward a statistical theory of learning, Psychological Review 57 (2) (1950) 94–107.doi:10.1037/h0058559. 32
-
[19]
R. Rescorla, A. Wagner, A theory of Pavlovian conditioning: Variations in the effectiveness of reinforcement and nonreinforcement, in: A. Black, W. Prokasy (Eds.), Classical Conditioning II: Current Theory and Research, Vol. Vol. 2, Meredith Corporation, 1972, Ch. 2, pp. 64–99
work page 1972
-
[20]
C. L. Hull, Principles of behavior, an introduction to behavior theory, Appleton-Century-Crofts, 1943
work page 1943
-
[21]
G. Esber, G. Schoenbaum, M. Iordanova, The Rescorla-Wagner model: It is not what you think it is, Neurobiology of Learning and Memory 217 (2025) 108021.doi:10.1016/j.nlm. 2025.108021
-
[22]
R. R. Miller, R. C. Barnet, N. J. Grahame, Assessment of the Rescorla-Wagner model, Psychological Bulletin 117 (3) (1995) 363–386.doi:10.1037/0033-2909.117.3.363
-
[23]
D. J. Navarro, Between the devil and the deep blue sea: Tensions between scientific judgement and statistical model selection, Computational Brain and Behavior 2 (1) (2019) 28–34.doi: 10.1007/s42113-018-0019-z
-
[24]
E. Wasserman, L. Castro, The Rescorla-Wagner model: The culmination of hume’s theory of causation, Journal of Experimental Psychology: Animal Learning and Cognition 48 (2022) 315–320.doi:10.1037/xan0000325
- [25]
-
[26]
S. J. Gershman, Y. Niv, Exploring a latent cause theory of classical conditioning, Learning and Behavior 40 (2012) 255–268.doi:10.3758/s13420-012-0080-8
-
[27]
P. Kang, P. N. Tobler, P. Dayan, Bayesian reinforcement learning: A basic overview, Neurobi- ology of Learning and Memory 211 (2024) 107924.doi:10.1016/j.nlm.2024.107924
-
[28]
N. H. Kokkola, E. Mondragón, E. Alonso, A double error dynamic asymptote model of associative learning, Psychological Review 126 (4) (2019) 506–549.doi:10.1037/rev0000147
-
[29]
Hall, Perceptual and Associative Learning, Oxford University Press UK, 1991
G. Hall, Perceptual and Associative Learning, Oxford University Press UK, 1991
work page 1991
-
[30]
H. L. Roitblat, Introduction to comparative cognition, W H Freeman/Times Books/ Henry Holt & Co., 1987
work page 1987
-
[31]
J. Jeong, J. Ju, S. Kim, J.-S. Choi, Y. Cho, Value-driven attention and associative learning models: a computational simulation analysis, Psychonomic Bulletin and Review 30 (2023) 1689–1706.doi:10.3758/s13423-023-02296-0
-
[32]
M. Le Pelley, C. Mitchell, T. Beesley, D. George, A. Wills, Attention and associative learning in humans: An integrative review, Psychological Bulletin 142 (10) (2016) 111–1140.doi: 10.1037/bul0000064
-
[33]
M. Le Pelley, M. Haselgrove, G. Esber, Modeling attention in associative learning: Two pro- cesses or one?, Learning and Behavior 40 (2012) 292–304.doi:10.3758/s13420-012-0084-4. 33
-
[34]
L. Hogarth, A. Dickinson, T. Duka, Selective attention to conditioned stimuli in human discrimination learning: Untangling the effects of outcome prediction, valence, arousal, and uncertainty, in: C. Mitchell, M. L. Pelley (Eds.), Attention and Associative Learning: From Brain to Behaviour, Oxford University Press, 2010, pp. 71–98
work page 2010
-
[35]
G. Hall, Associative and nonassociative processes in latent inhibition: An elaboration of the pearce-hall model, Latent inhibition: Data, theories, and applications to schizophrenia (2010) 114–136 .doi:10.1017/CBO9780511730184.007
-
[36]
N. J. Mackintosh, A theory of attention: Variations in the associability of stimuli with reinforcement, Psychological Review 82 (4) (1975) 276–298.doi:10.1037/h0076778
-
[37]
J. M. Pearce, G. Hall, A model for Pavlovian learning: Variations in the effectiveness of conditioned but not of unconditioned stimuli, Psychological Review 87 (6) (1980) 532–552. doi:10.1037/0033-295X.87.6.532
- [38]
-
[39]
J. M. Pearce, N. J. Mackintosh, Two theories of attention: A review and a possible integration, in: C. Mitchell, M. E. L. Pelley (Eds.), Attention and Associative Learning: From Brain to Behaviour, Oxford University Press, 2010, pp. 11–39
work page 2010
-
[40]
V. Navarro, Calmr simulator, https://victornavarro.org/calmr/news/index.html, ac- cessed: 2025-10-21 (2007)
work page 2025
-
[41]
E. Mondragón, E. Alonso, A. Fernández, J. Gray, An extension of the Rescorla and Wagner Simulator for context conditioning, Computer Methods and Programs in Biomedicine 110 (2) (2013) 226–230.doi:10.1016/j.cmpb.2013.01.016
-
[42]
E. Alonso, E. Mondragón, A. Fernández, A Java simulator of Rescorla and Wagner’s prediction error model and configural cue extensions, Computer Methods and Programs in Biomedicine 108 (1) (2012) 346–355.doi:https://doi.org/10.1016/j.cmpb.2012.02.004. URLhttps://www.sciencedirect.com/science/article/pii/S0169260712000429
-
[43]
E. Mondragón, E. Alonso, A. Fernández, J. Gray, Rescorla & Wagner Model Simulator (version
-
[44]
Albans, UK: CAL-R,https://cal-r.org/index.php?id=R-Wsim, accessed: 2025-10-21 (2012)
[computer software], St. Albans, UK: CAL-R,https://cal-r.org/index.php?id=R-Wsim, accessed: 2025-10-21 (2012)
work page 2025
- [45]
-
[46]
R. Grikietis, E. Mondragón, E. Alonso, Pearce and Hall Simulator (version 1) [computer software], St. Albans, UK: CAL-R,https://www.cal-r.org/index.php?id=PHsim, accessed: 2025-10-21 (2016)
work page 2025
-
[47]
A. Thorwart, H. Schultheis, S. Koenig, H. Lachnit, ALTSim: A MATLAB simulator for current associative learning theories, Behavior Research Methods 41 (2009) 29–34.doi: 10.3758/BRM.41.1.29. 34
-
[48]
H.Lachnit, R.Schneider, O.Lipp, H.Kimmel, Rwmodel: Aprograminturbopascalforsimulat- ing predictions based on the rescorla-wagner model of classical conditioning, Behavior Research Methods, Instruments, and Computers 20 (1988) 413–415.doi:10.3758/BF03202687
-
[49]
M. Le Pelley, The role of associative history in models of associative learning: A selective review and a hybrid model, The Quarterly Journal of Experimental Psychology. B, Comparative and Physiological Psychology 57 (3b) (2004) 193–243.doi:10.1080/02724990344000141
-
[50]
P. Broadhurst, E. Livesey, I. McLaren, Discrimination and generalization in pattern catego- rization: A case for elemental associative learning, in: Proceedings of the Annual Meeting of the Cognitive Science Society, Vol. 27, 2005, pp. 1296–1301
work page 2005
-
[51]
D. N. George, J. E. Haddon, O. Griffiths, Absence of differential protection from extinction in human causal learning, Journal of Experimental Psychology: Animal Learning and Cognition 50 (3) (2024) 161–185.doi:10.1037/xan0000380
-
[52]
M. Haselgrove, S. Lagator, S. L. Mah, E. K. Gray, Novelty mismatch as a determinant of latent inhibition, Journal of Experimental Psychology: Animal Learning and Cognition 51 (1) (2025) 13–34.doi:10.1037/xan0000388
-
[53]
URLhttps://www.gnu.org/licenses/lgpl-3.0.html
Free Software Foundation, GNU lesser general public license, version 3, accessed: 2025-05-06 (2007). URLhttps://www.gnu.org/licenses/lgpl-3.0.html
work page 2025
-
[54]
R. Bush, F. Mosteller, Stochastic Models for Learning, ohn Wiley & Sons, Inc, 1955
work page 1955
-
[55]
S. Castiello, G. FitzGerald, G. M. Aisbitt, A. Baker, R. A. Murphy, Symmetrical “super learning”: Enhancing causal learning using a bidirectional probabilistic outcome, Journal of Experimental Psychology: Animal Learning and Cognition 51 (1) (2025) 1–12. doi: 10.1037/xan0000390
-
[56]
J. Konorski, Integrative Activity of the Brain: An Interdisciplinary Approach, University of Chicago Press, 1967
work page 1967
-
[57]
T. Trabasso, G. H. Bower, R. Gelman, Attention in Learning: Theory and Research, Wiley, New York, 1968
work page 1968
- [58]
-
[59]
J. W. Moore, K. J. Stickney, Antiassociations: Conditioned inhibition in attentional-associative networks, in: R. Miller, N. Spear (Eds.), Information Processes in Animals: Conditioned Inhibition, Erlbaum Hillsdale, 1985, pp. 209–232
work page 1985
-
[60]
N. A. Schmajuk, J. W. Moore, Real-time attentional models for classical conditioning and the hippocampus, Physiological Psychology 13 (4) (1985) 278–290.doi:10.3758/BF03326534
-
[61]
P. W. Frey, R. J. Sears, Model of conditioning incorporating the Rescorla-Wagner associative axiom, a dynamic attention process, and a catastrophe rule, Psychological Review 85 (4) (1978) 321–340.doi:10.1037/0033-295X.85.4.321. 35
-
[62]
J. Nishimura, A. L. Cochran, Rescorla–Wagner models with sparse dynamic attention, Bulletin of Mathematical Biology 82 (69) (2020).doi:10.1007/s11538-020-00743-w
-
[63]
A. Luzardo, E. Alonso, E. Mondragón, A Rescorla-Wagner drift-diffusion model of conditioning and timing, PLoS computational biology 13 (11) (2017) e1005796.doi:10.1371/journal. pcbi.1005796
-
[64]
N. A. Schmajuk, J. Gray, Y.-W. Lam, Latent inhibition: A neural network approach, Journal of Experimental Psychology: Animal Behavior Processes 22 (3) (1996) 321–349.doi:10.1037/ /0097-7403.22.3.321
work page 1996
-
[65]
G. Hall, J. M. Pearce, Latent inhibition of a CS during CS–US pairings, Journal of Experimental Psychology: Animal Behavior Processes 5 (1) (1979) 31–42.doi:10.1037/0097-7403.5.1.31
-
[66]
M. Escobar, F. Arcediano, R. Miller, Latent inhibition in human adults without masking, Journal of Experimental Psychology. Learning, memory, and cognition 29 (2003) 1028–40. doi:10.1037/0278-7393.29.5.1028
-
[67]
O. Griffiths, A. M. Johnson, C. J. Mitchell, Negative transfer in human associative learning, Psychological Science 22 (9) (2011) 1198–1204.doi:10.1177/0956797611419305
-
[68]
J. A. Swan, J. M. Pearce, The orienting response as an index of stimulus associability in rats, Journal of Experimental Psychology: Animal Behavior Processes 14 (3) (1988) 292–301. doi:10.1037/0097-7403.14.3.292
-
[69]
M. Haselgrove, G. R. Esber, J. M. Pearce, P. M. Jones, Two kinds of attention in Pavlovian conditioning: Evidence for a hybrid model of learning, Journal of Experimental Psychology: Animal Behavior Processes 36 (4) (2010) 456–470.doi:10.1037/a0018528
- [70]
-
[71]
S. C. Stout, R. R. Miller, Sometimes-competing retrieval (SOCR): A formalization of the com- parator hypothesis, Psychological Review 114 (3) (2007) 759–783.doi:10.1037/0033-295X. 114.3.759
-
[72]
S. E. Brandon, E. H. Vogel, A. R. Wagner, Stimulus representation in SOP: I: Theoretical rationalization and some implications, Behavioural Processes 62 (1-3) (2003) 5–25.doi: 10.1016/S0376-6357(03)00016-0
-
[73]
Wagner, SOP: A model of automatic memory processing in animal behavior, in: N
A. Wagner, SOP: A model of automatic memory processing in animal behavior, in: N. Spear, R. Miller (Eds.), Information processing in animals: Memory mechanisms, Erlbaum, 1981, pp. 5–47
work page 1981
-
[74]
R. Blaser, P. Couvillon, M. Bitterman, Within-subjects experiments on blocking and facilitation in honeybees (apis mellifera), Journal of Comparative Psychology 122 (4) (2008) 373.doi: 10.1037/a0012623
-
[75]
J. Prados, B. Alvarez, F. Acebes, I. Loy, J. Sansa, M. M. Moreno-Fernández, Blocking in rats, humans and snails using a within-subjects design, Behavioural Processes 100 (2013) 23–31. doi:10.1016/j.beproc.2013.07.014. 36
-
[76]
R. A. Rescorla, Within-signal learning in autoshaping, Animal Learning & Behavior 9 (2) (1981) 245–252.doi:10.3758/BF03197827
-
[77]
doi:10.1037/0735-7044.120.2.313
G.P.McNally, S.Cole, Opioidreceptorsinthemidbrainperiaqueductalgrayregulateprediction errors during pavlovian fear conditioning, Behavioral Neuroscience 120 (2) (2006) 313–323. doi:10.1037/0735-7044.120.2.313
-
[78]
S. E. Denton, J. K. Kruschke, Attention and salience in associative blocking, Learning & Behavior 34 (3) (2006) 285–304.doi:10.3758/BF03192884
-
[79]
G. Hall, N. Mackintosh, G. Goodall, M. Dal Martello, Loss of control by a less valid or by a less salient stimulus compounded with a better predictor of reinforcement, Learning and Motivation 8 (2) (1977) 145–158.doi:10.1016/0023-9690(77)90001-7
-
[80]
K. C. Aberg, E. E. Kramer, S. Schwartz, Neurocomputational correlates of learned irrelevance in humans, NeuroImage 213 (2020) 116719.doi:10.1016/j.neuroimage.2020.116719
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.