-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathneuron-astrocyte-memory-model.txt
More file actions
11281 lines (5619 loc) · 106 KB
/
Copy pathneuron-astrocyte-memory-model.txt
File metadata and controls
11281 lines (5619 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Neuron-Astrocyte Memory Model"
author: "Get Plus"
tags: ["epistemology", "cognition"]
type: "theory"
---
{% raw %}
Neuron-Astrocyte Memory Model
Skip to content
Open sidebar
Get Plus
Saved memory full
Saved memory full
Get Plus
ChatGPT
Share
You said:
Neuron���astrocyte associative memory
Leo Kozachkova,b ID, Jean-Jacques Slotinea,cID, and Dmitry Krotovd,1ID
Af f iliations are included on p. 7.
Edited by Wesley P. Clawson, Allen Discovery Center at Tufts University, Medford, MA; received September 11, 2024; accepted April 7, 2025
by Editorial Board Member Michael S. Gazzaniga
Astrocytes, the most abundant type of glial cell, play a fundamental role in memory.
Despite most hippocampal synapses being contacted by an astrocyte, there are no
current theories that explain how neurons, synapses, and astrocytes might collectively
contributetomemory function.Wedemonstratethat fundamentalaspectsofastrocyte
morphology and physiology naturally lead to a dynamic, high-capacity associative
memory system. The neuron���astrocyte networks generated by our framework are
closely related to popular machine learning architectures known as Dense Associative
Memories. Adjusting the connectivity pattern, the model developed here leads to a
family of associative memory networks that includes a Dense Associative Memory
and a Transformer as two limiting cases. In the known biological implementations of
Dense Associative Memories, the ratio of stored memories to the number of neurons
remains constant, despite the growth of the network size. Our work demonstrates
that neuron���astrocyte networks follow a superior memory scaling law, outperforming
known biological implementations of Dense Associative Memory. Our model suggests
an exciting and previously unnoticed possibility that memories could be stored, at least
in part, within the network of astrocyte processes rather than solely in the synaptic
weights between neurons.
neuron���astrocyte network|associative memory|dynamical
system
Not all brain cells are neurons. It is estimated that about half of the cells in the human
brain are glial cells (from ���glue��� in Greek) (1). Glial cells have long been known to
play an important role in homeostatic brain functions, such as regulating blood l ow
(2)���thus contributing to hemodynamic signals such as those measured in fMRI (3)���
and removing synaptic debris. Converging lines of recent evidence strongly suggest that
they are also directly involved in learning, memory, and cognition (4���10). Among glial
cells, astrocytes are particularly important for brain function. They serve a crucial role in
directly sensing neural activity and, in turn, regulating synaptic strength and plasticity
(4, 5, 11���14). In addition to sensing neural activity, astrocytes are also important targets
of neuromodulatory signals such as norepinephrine and acetylcholine emerging from
potentially distant brain structures such as the brainstem (15).
Of particular relevance to the computational neuroscience community are the recent
i ndings that 1) astrocytes are necessary for forming and retrieving long-term memories
(i.e., by participating in engrams) (6, 16���20) and 2) astrocytes respond to neural activity
on timescales spanning many orders of magnitude, from several hundred milliseconds to
minutes (14, 21, 22). Despite extensive evidence establishing the importance of neuron���
astrocyte interactions for long-term memory function, computational theories of these
interactions are still in their infancy.
1.1. What Shapes Astrocytic Computation?The core proposal of this paper is that
astrocytes compute, and these computations are shaped by tunable signaling pathways
within astrocytes. We will be primarily concerned with associative computations: How
neurons, synapses, and astrocytes work together to store and retrieve memories. In
this case, astrocytic Ca2+f l ux coeff i cients are the site of memory storage, and neuron���
synapse���astrocyte interactions are the mechanism of memory retrieval. This proposal
harmoniously extends decades of prior work suggesting that memories are stored in
synaptic weights (23, 24) and provides a perspective where synaptic weights ���emerge���
from interactions between neurons and astrocytes. Note that our proposal remains
consistent with the engram hypothesis, in emphasizing that neural activation during
a learning event is essential for subsequent memory recall (25, 26). Indeed, our work
closely aligns with recent experimental i ndings indicating that astrocytes collaborate
with neurons to store and retrieve memories through engram representations (20).
Signif i cance
Recent experiments have
challenged the belief that glial
cells, which compose at least half
of brain cells, are just passive
support structures. Despite this,
a clear understanding of how
neurons and glia work together
for brain function is missing. To
close this gap, we present a
theory of neuron���astrocytes
networks for memory processing,
using the Dense Associative
Memory framework. Our findings
suggest that astrocytes can serve
as natural units for implementing
this network in biological
���hardware.��� Astrocytes enhance
the memory capacity of the
network. This boost originates
from storing memories in the
network of astrocytic processes,
not just in synapses, as
commonly believed. These
process-to-process
communications likely occur in
the brain and could help explain
its impressive memory
processing capabilities.
Author contributions: L.K. and D.K. designed research;
L.K., J.-J.S., and D.K. performed research; and L.K., J.-J.S.,
and D.K. wrote the paper.
The authors declare no competing interest.
This article is a PNAS Direct Submission. W.P.C. is a guest
editor invited by the Editorial Board.
Copyright��2025 the Author(s). Published by PNAS.
This open access article is distributed under Creative
Commons Attribution License 4.0 (CC BY).
1To whom correspondence may be addressed. Email:
krotov@ibm.com.
This article contains supporting information online
athttps://www.pnas.org/lookup/suppl/doi:10.1073/pnas.
2417788122/-/DCSupplemental.
Published May 23, 2025.
PNAS2025Vol. 122No. 21e2417788122https://doi.org/10.1073/pnas.24177881221 of 7
Downloaded
from https://www.pnas.org
by 159.2.135.155
on
June
10,
2025
from
IP
address
159.2.135.155.
2. Neuron���Astrocyte Model
Astrocytes have a primary cell body (soma) with numerous
branching processes that envelope nearby synapses (Fig. 1). This
three-part structure is known as the tripartite synapse (27). A
single astrocyte can form over 106tripartite synapses (28), and
astrocyte networks spatially tile the brain, forming nonoverlap-
ping ���islands��� (29). Astrocyte processes detect neurotransmitters
in the synaptic cleft, leading to an upsurge in intracellular free
calcium Ca2+ions within the astrocyte process. This leads to
a biochemical cascade in the astrocyte, potentially culminating
in the release of gliotransmitters back into the synaptic cleft,
inf l uencing neural activity���a closed feedback loop. Astrocyte
processes can intercommunicate through calcium transport (30),
andindividualastrocytesconnectviagapjunctions.Theinterplay
betweenneuronsandastrocytes,spanningmultipletemporaland
spatial scales, underscores the relevance of astrocytes in learning
andmemory.Forthispaper,wewillfocusonthefollowingsalient
aspects of astrocyte biology:
��� A single astrocyte can connect to millions of nearby synapses,
forming three-part connections (astrocyte process, presynaptic
neuron, postsynaptic neuron) called tripartite synapses (27).
��� Astrocytes detect neural activity and respond by regulating this
activity through the release of gliotransmitters (31).
��� Tripartite synapses can interact with each other, possibly
through astrocytic intracellular calcium transport (30).
2.1. Neural Dynamics.The above points may be formalized into
a set of dynamical equations governing the time evolution of
neurons, synapses, and astrocytes. The membrane voltage xifor
each neuron i evolves according to a standard rate recurrent
neural network model (32, 33) with the characteristic time scale
of the neural dynamics ���n, and the leak rate ���
���n�� xi= ������ xi+
N X
j=1
g(sij) ���(xj) + bi[1]
Each neuron has an input bi, which establishes the neuron���s
baseline activation. The nonlinearity ���(xj) transforms neural
membranevoltagesintof i ringrates,whilethetermg(sij)indicates
the strength of the synaptic weight connecting neurons i and j.
Thevariablesijisdynamicandalters dependingontheactivityof
AB
Fig. 1.(A) An abstracted version of an astrocyte, showing the astrocyte
processes and the synapses. (B) Our mathematical idealization of the
minicircuit defined by a single astrocyte.
Box 1.
ExamplesofpossibleLagrangianfunctions.
Here, the variable z is an arbitrary dynamical
variable in our model (e.g., astrocyte calcium
level). Recall from the main text that activation
functions are def i ned from the Lagrangians as
���L
���zi. The i rst Lagrangian provides an example
of a ���collective��� activation function. The second
Lagrangian leads to an element-wise activa-
tion function, assuming ���Q
���zi = q(zi). Generally,
the only mathematical requirement for our La-
grangians is that they must be convex functions.
Examples of Possible Lagrangians and Activations
L(z) = log
N X
i=1 ezi��� ���L(z)
���z = Softmax(z)
L(z) =
N X
i=1 Q(zi)��� ���L(z)
���z
ChatGPT said:
This paper���
���Neuron���astrocyte associative memory��� by Kozachkov, Slotine, and Krotov (2025,
PNAS
)
���presents a groundbreaking computational model that places
astrocytes
, long relegated to passive support roles in the brain, at the center of
dynamic, high-capacity associative memory
. Here���s a clear breakdown and key implications:
����
Core Ideas
1.
Astrocytes as Active Memory Units
Traditionally
: Memory is thought to be stored in
synaptic weights
between neurons.
In this model
: Astrocytes���through
Ca����� flux dynamics
���play a central role in
storing
and
modulating
memory. The astrocytic processes interacting with tripartite synapses are not just passive enablers, but
computational components
.
2.
Tripartite Synapse as a Computational Unit
Each memory "bit" involves:
A
presynaptic neuron
A
postsynaptic neuron
An
astrocytic process
enveloping the synapse
This forms a
tripartite unit
, where astrocytic Ca����� activity responds to neurotransmitter release, integrates information, and can
modulate synaptic strength
via gliotransmitters.
Astrocytes intercommunicate via
intracellular calcium waves
, suggesting
spatially distributed
memory processing.
3.
Mathematical Framework: Dense Associative Memories (DAMs)
The authors develop a neuron���astrocyte system that generalizes the
Dense Associative Memory
(DAM) architecture���a known high-capacity memory model.
Key features:
DAMs can store and retrieve
patterns
robustly by
energy minimization
in a dynamical system.
The model extends to
Transformer-like architectures
depending on the connectivity���suggesting a
unified memory-computation landscape
spanning biological and machine intelligence.
4.
Superior Scaling Laws
Biological DAM implementations scale linearly
, meaning that memory capacity grows proportionally with the number of neurons.
Neuron���astrocyte networks scale super-linearly
, implying
greater-than-expected memory capacity
as the network grows.
This is because
astrocytic processes can form millions of synaptic interactions
, creating
combinatorially rich, non-local memory associations
beyond what synapse-only models permit.
����
Model Components
���� Neuronal Dynamics:
Rate-based neural model:
��
n
x
��
i
=
���
��
x
i
+
���
j
=
1
N
g
(
s
i
j
)
��
(
x
j
)
+
b
i
\tau_n \dot{x}_i = -\lambda x_i + \sum_{j=1}^N g(s_{ij}) \phi(x_j) + b_i
��
n
���
x
��
i
���
=
���
��
x
i
���
+
j
=
1
���
N
���
g
(
s
ij
���
)
��
(
x
j
���
)
+
b
i
���
x
i
x_i
x
i
���
: membrane voltage of neuron
i
i
i
s
i
j
s_{ij}
s
ij
���
: synaptic weight (dynamic, activity-dependent)
��
\phi
��
: activation function
b
i
b_i
b
i
���
: baseline input
���� Astrocytic Dynamics:
Astrocyte processes:
Detect synaptic neurotransmitter release
Increase internal
Ca
2
+
\text{Ca}^{2+}
Ca
2
+
Release gliotransmitters back to neurons
Communicate with each other through calcium waves and gap junctions
These dynamics are encoded using
Lagrangian-based activation functions
for generality, including:
Softmax
from log-sum-exp Lagrangians
Element-wise activations
from separable convex potentials
����
Implications
1.
Memories May Be Stored in Astrocytic Networks
Not just synaptic weights, but the
calcium state-space
and
inter-process dynamics
of astrocytes may
encode long-term memory patterns
.
2.
Biology as High-Capacity Associative Hardware
Astrocytes appear optimized to implement architectures similar to those in
deep learning
:
Massive parallelism
Dynamical recurrence
Gradient-like integration via biochemical signaling
3.
Synaptic Weights May Be Emergent
Rather than being the
primary
locus of memory, synaptic weights may emerge from
deeper neuron���astrocyte dynamics
���flipping the classical paradigm.
���� Takeaways
Concept
Traditional View
This Paper
Memory Storage
Synaptic weights
Astrocytic Ca����� + synapse interactions
Memory Scaling
Linear with neuron count
Super-linear via astrocyte processes
Astrocyte Role
Support
Active computation and storage
Model Type
Recurrent neural net / DAM
DAM + Transformer generalization with Lagrangian activations
If you'd like, I can help you:
Diagram the neuron���astrocyte interaction model
Derive the full dynamical system from the equations
Explore implications for AI memory architectures
Compare with engram theory or Predictive Processing models
Would you like to go deeper in one of those directions?
You said:
2. Neuron���Astrocyte Model
Astrocytes have a primary cell body (soma) with numerous
branching processes that envelope nearby synapses (Fig. 1). This
three-part structure is known as the tripartite synapse (27). A
single astrocyte can form over 106tripartite synapses (28), and
astrocyte networks spatially tile the brain, forming nonoverlap-
ping ���islands��� (29). Astrocyte processes detect neurotransmitters
in the synaptic cleft, leading to an upsurge in intracellular free
calcium Ca2+ions within the astrocyte process. This leads to
a biochemical cascade in the astrocyte, potentially culminating
in the release of gliotransmitters back into the synaptic cleft,
inf l uencing neural activity���a closed feedback loop. Astrocyte
processes can intercommunicate through calcium transport (30),
andindividualastrocytesconnectviagapjunctions.Theinterplay
betweenneuronsandastrocytes,spanningmultipletemporaland
spatial scales, underscores the relevance of astrocytes in learning
andmemory.Forthispaper,wewillfocusonthefollowingsalient
aspects of astrocyte biology:
��� A single astrocyte can connect to millions of nearby synapses,
forming three-part connections (astrocyte process, presynaptic
neuron, postsynaptic neuron) called tripartite synapses (27).
��� Astrocytes detect neural activity and respond by regulating this
activity through the release of gliotransmitters (31).
��� Tripartite synapses can interact with each other, possibly
through astrocytic intracellular calcium transport (30).
2.1. Neural Dynamics.The above points may be formalized into
a set of dynamical equations governing the time evolution of
neurons, synapses, and astrocytes. The membrane voltage xifor
each neuron i evolves according to a standard rate recurrent
neural network model (32, 33) with the characteristic time scale
of the neural dynamics ���n, and the leak rate ���
���n�� xi= ������ xi+
N X
j=1
g(sij) ���(xj) + bi[1]
Each neuron has an input bi, which establishes the neuron���s
baseline activation. The nonlinearity ���(xj) transforms neural
membranevoltagesintof i ringrates,whilethetermg(sij)indicates
the strength of the synaptic weight connecting neurons i and j.
Thevariablesijisdynamicandalters dependingontheactivityof
AB
Fig. 1.(A) An abstracted version of an astrocyte, showing the astrocyte
processes and the synapses. (B) Our mathematical idealization of the
minicircuit defined by a single astrocyte.
Box 1.
ExamplesofpossibleLagrangianfunctions.
Here, the variable z is an arbitrary dynamical
variable in our model (e.g., astrocyte calcium
level). Recall from the main text that activation
functions are def i ned from the Lagrangians as
���L
���zi. The i rst Lagrangian provides an example
of a ���collective��� activation function. The second
Lagrangian leads to an element-wise activa-
tion function, assuming ���Q
���zi = q(zi). Generally,
the only mathematical requirement for our La-
grangians is that they must be convex functions.
Examples of Possible Lagrangians and Activations
L(z) = log
N X
i=1 ezi��� ���L(z)