-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpapers_selected.json
More file actions
1906 lines (1906 loc) · 242 KB
/
papers_selected.json
File metadata and controls
1906 lines (1906 loc) · 242 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
[
{
"pmid": "41886027",
"title": "A comprehensive analysis of brain network complexity in task-based fMRI using entropy: systematic review.",
"journal": "Brain imaging and behavior",
"year": "2026",
"authors": [
"J Park",
"N Xu",
"M Nezafati"
],
"doi": "10.3969/j.issn.1673-5374.2012.08.002",
"pmc_id": "PMC4421932",
"abstract": "Entropy-based analysis is increasingly used in task-based functional magnetic resonance imaging (fMRI) to quantify neural signal complexity and information dynamics, but variation in entropy definitions, parameter choices, and analytic scope can limit cross-study comparability. To systematically review how entropy measures are implemented, parameterized, and interpreted in task-based fMRI studies in healthy human subjects, focusing on methodological practice. Web of Science was searched using the keywords “fMRI” and “entropy” for the period 2000–2023, restricted to journal articles, proceedings papers, review articles, meeting abstracts, and book chapters. Included studies used task-based fMRI, applied entropy-based quantitative measures, involved healthy human participants, and reported original empirical findings or methodological applications. Non-human, clinical, and resting-state studies were excluded. Records were screened by verifying whether “fMRI” and “entropy” appeared in the title, keywords, Keywords Plus, or abstract. Extracted items included entropy type, analytic scope (regional/voxel-wise, network-level, connectivity-based), parameter and reporting details, task types, and preprocessing context where available. Data were synthesized using structured narrative methods because meta-analysis was not appropriate given differences in entropy definitions, parameterization, task types, and outcome metrics. Risk of bias was assessed with an adapted Joanna Briggs Institute (JBI) checklist (Joanna Briggs Institute, 2017). Database searches yielded 1,313 records. 274 were screened and 234 full texts assessed. 92 studies met inclusion criteria. Exclusions at full-text were primarily resting-state studies (n = 81), clinical populations (n = 42), and non-human studies (n = 19). Across the 92 included studies, Shannon entropy predominated (78.3%), followed by sample entropy (9.78%), transfer entropy (4.35%), multiscale entropy (3.26%), approximate entropy (3.26%), and multiple-entropy approaches (1.09%). Entropy measures were found to be matched with distinct methodological roles. Approximate and sample entropy were commonly used for regional or voxel-wise signal regularity, multiscale entropy for multi–time scale complexity (often at the network level), transfer entropy for directed connectivity, and Shannon entropy for broad applications including machine-learning feature and validation use. Evidence synthesis was constrained by inconsistency in entropy formulations, parameter reporting, preprocessing decisions, and outcome metrics. Formal heterogeneity testing, subgroup analyses, and sensitivity analyses were not conducted, and results were summarized descriptively. Task-based fMRI entropy research is methodologically diverse but consistently demonstrates the feasibility of using entropy to characterize task-related brain complexity across different analytic levels. The prevalent use of Shannon entropy and inconsistent parameter/reporting practices underscore the need for clearer, standardized reporting and reproducible implementation guidance to improve comparability across studies.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4421932/pdf/",
"has_pmc": true
},
{
"pmid": "41970694",
"title": "Naturalistic movie viewing is an effective functional localizer of the fusiform face area in adolescents with and without autism.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2026",
"authors": [
"CJ Steeby",
"GN Miller",
"A Castro Palacin"
],
"doi": "10.1002/hbm.20767",
"pmc_id": "PMC2748172",
"abstract": "Task-based \"localizer\" neuroimaging protocols are often used to identify specific functional areas in individual participants. Conventionally, these tasks can be unengaging, leading to increased motion and scan fatigue, especially for populations which may struggle with lengthy scans. Dynamic, naturalistic stimuli, like entertaining movies, offer a potential alternative with higher participant engagement and improved data quality. Here, we evaluated whether a short Pixar movie, Partly Cloudy, could serve as a reasonable and useful replacement for a traditional fusiform face area (FFA) localizer in a group of adolescents with and without autism spectrum disorder (ASD). We found that individualized FFA localizations derived from a Pixar movie, Partly Cloudy, were largely consistent with those produced by a traditional localizer. Peak activation locations showed no difference between localizer types; measures of activation pattern and magnitude were also largely the same, except that the occipital face area (OFA) demonstrated more task than movie activation and the parahippocampal place area (PPA) demonstrated more movie than task activation. However, applying these FFA individualized ROIs (iROIs) to independent task data revealed that traditional localizer iROIs still produce more face-selective activations. We also demonstrated that the movie viewing helps to reduce motion levels in both adolescents with and without autism relative to the traditional localizer task. Hence, while they may not localize face-selective regions of the FFA as robustly as traditional task-based localizers, movie localizers may be an appropriate, or even preferable, choice for fMRI studies in populations which struggle to tolerate lengthy scans, such as individuals with autism, and in paradigms that must rapidly localize multiple functional regions.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC2748172/pdf/",
"has_pmc": true
},
{
"pmid": "41537052",
"title": "Considering brain state for individualized functional connectivity-based rTMS.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2026",
"authors": [
"H Shearer",
"J Eilbott",
"F Vila-Rodriguez"
],
"doi": "10.1002/hbm.23517",
"pmc_id": "PMC6867176",
"abstract": "Recent endeavors to optimize the efficacy of repetitive Transcranial Magnetic Stimulation (rTMS) treatment have focused on locating individualized stimulation targets using functional connectivity derived from functional Magnetic Resonance Imaging (fMRI) scans. Practically, this approach involves three main stages: target discovery, target localization, and treatment. As of now, each stage is typically conducted while participants are \"at rest\", meaning they are not performing a task or being presented with a stimulus. While growing evidence suggests that the effects of TMS are sensitive to the state of the brain at the time of stimulation, brain state has largely been overlooked during the first two stages (target discovery and localization). Here, we consider the potential importance of brain state at each stage of individualized rTMS, reviewing the relevant (and interdisciplinary) literature, and providing some exploratory example cross-state analyses. We also explore how manipulating and constraining brain state with tasks or movie-watching may provide opportunities to improve the reliability of individualized rTMS targets.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6867176/pdf/",
"has_pmc": true
},
{
"pmid": "41947425",
"title": "Resting-State and Task Functional Magnetic Resonance Imaging Network Topology Metrics With no Threshold Selection to Predict Cognition.",
"journal": "Human brain mapping",
"year": "2026",
"authors": [
"CHA Billaud",
"J Yu"
],
"doi": "10.1016/j.neuroimage.2023.119946",
"pmc_id": "PMC11037888",
"abstract": "Network topology measures characterise brain networks' organisation. Graph theoretical approaches have shown fMRI topology metrics' association with cognitive performance. Because arbitrary connectivity threshold selection biases such metrics, alternatives including the minimum spanning tree (MST) and novel measures following principles of persistent homology were proposed. The present study compared alternative and graph theoretical metrics in association with cognition for resting-state and task-fMRI. Functional connectivity matrices were computed from Human Connectome Project (Young Adult) fMRI scans during resting-state, working memory (WM), gambling, language, motor, relational processing, social cognition, and movie-watching conditions. Global efficiency, clustering coefficient (at three thresholds), diameter, leaf fraction (LF), backbone strength (BS), and cycle strength were measured. Each was tested in association with cognitive test scores. ResultsBS significantly predicted general cognitive performance, specifically progressive matrices score, composite fluid and crystallised cognition, vocabulary, spatial orientation, and WM. Diameter significantly predicted WM. WM task BS outperformed the predictive performance of graph theory measures, but not at rest, where MST LF outperformed other measures. Stronger associations were observed between cognitive test scores and topology measures derived from task-based fMRI, especially the N-Back task, as opposed to resting-state fMRI. Among task-based topology measures, BS was the most strongly related to cognition.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11037888/pdf/",
"has_pmc": true
},
{
"pmid": "41491726",
"title": "Mapping functional homologies between human and marmoset brain networks using movie-driven ultra-high field fMRI.",
"journal": "Communications biology",
"year": "2026",
"authors": [
"A Zanini",
"A Dureux",
"RS Menon"
],
"doi": "10.1038/nature18933",
"pmc_id": "PMC4990127",
"abstract": "Naturalistic stimuli, such as movies, offer a powerful tool for probing functional brain organization across species. Using movie-driven functional magnetic resonance imaging (md-fMRI), we recorded brain activity in humans and awake marmosets exposed to the same dynamic audiovisual stimulus. We applied tensor independent component analysis (tICA) to identify functional networks in each species, hierarchically cluster them, and examine their within- and between-species temporal correlations to assess functional homologies. We found strong interspecies correspondence in core sensory networks, particularly those involved in visual and auditory processing, suggesting conserved mechanisms for sensory integration. In contrast, networks associated with higher-order cognition, including prefrontal and temporoparietal areas, were observed primarily in humans, highlighting species-specific specializations. These findings demonstrate the value of naturalistic paradigms and data-driven approaches in revealing both shared and divergent brain architectures. By openly sharing our data and pipelines, we aim to advance the marmoset as a model for investigating the evolutionary foundations of brain function.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4990127/pdf/",
"has_pmc": true
},
{
"pmid": "41412131",
"title": "Linguistic coupling between neural systems for speech production and comprehension during real-time dyadic conversations.",
"journal": "Neuron",
"year": "2026",
"authors": [
"Z Zada",
"SA Nastase",
"S Speer"
],
"doi": "10.5281/zenodo.5942281",
"pmc_id": "PMC3146590",
"abstract": "The core use of human language is to send complex ideas from one mind to another. In everyday conversations, comprehension and production are intertwined, as speakers and listeners alternate roles. Nonetheless, the neural systems underlying these faculties are typically studied in isolation, using paradigms that cannot capture interactive communication. Here, we used fMRI hyperscanning to simultaneously record dyads engaged in real-time conversations. We used language model embeddings to quantify the degree to which production and comprehension systems rely on shared neural representations, both within and across brains. We found that both processes key into overlapping neural systems, with similar neural tuning for both processes, spanning the cortical language network. Speaker-listener coupling extended beyond the language network into areas associated with social cognition. Our results suggest that the neural systems for speech comprehension and production align with common linguistic features encoded in a broad cortical network for language and communication.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3146590/pdf/",
"has_pmc": true
},
{
"pmid": "41772025",
"title": "The role of dorsal anterior cingulate cortex in dynamic attitude changes in naturalistic settings.",
"journal": "Communications biology",
"year": "2026",
"authors": [
"H Li",
"S Yao",
"Y Zhang"
],
"doi": "10.21105/joss.00862",
"pmc_id": "PMC5303634",
"abstract": "Attitudes change gradually and spontaneously in daily life, yet the neural mechanisms supporting such dynamic shifts remain poorly understood. Leveraging naturalistic fMRI paradigms across two studies, we investigated how neural dynamics track and implement attitude change during exposure to persuasive arguments. Our findings highlight the dorsal anterior cingulate cortex (dACC) as a central hub in this process. Individuals with more similar trajectories of attitude change exhibited greater similarity in the temporal dynamics of dACC activity and its functional connectivity with other brain regions, particularly the default mode network (DMN). These neural dynamics further predicted whether an individual changed their attitude over time, and at the precise moment of change, dACC-centered connectivity predicted the direction of that change. Additionally, individuals with higher intolerance of uncertainty (IU) showed stronger coupling between neural and behavioral similarity, suggesting that IU may serve as a trait-level modulator of this neural process. Together, our findings provide a dACC-centered, process-level account of the neural mechanisms underlying dynamic attitude change, bridging the gap between controlled laboratory research and real-time, naturalistic attitude change in daily life.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC5303634/pdf/",
"has_pmc": true
},
{
"pmid": "41852942",
"title": "Resilience-related neural similarity during naturalistic movie watching.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2026",
"authors": [
"S Ye",
"LR Bätz",
"A Jain"
],
"doi": "10.1093/scan/nsae086",
"pmc_id": "PMC11642607",
"abstract": "Psychological resilience protects individuals against the negative consequences of exposure to adversity. Despite increasing attention given to resilience for its role in maintaining mental health, a clear conceptualization of resilience remains elusive, and the intricacies of its neural correlates are poorly understood. Here, we recorded brain activity in healthy young adults using a 7T MRI scanner while they naturally watched two movie clips, one with neutral content and another with negative content. Stronger and more extensive neural similarity, as estimated by inter-subject correlation, was observed in response to the negative movie compared with the neutral movie. Moreover, we found that high-resilience individuals had similar neural activities to their peers, while low-resilience individuals showed more variable neural activities. A secondary analysis examined the relationship between ISCs and an additional self-report behavioral measure of interest, Intolerance of Uncertainty (IU). IU is a personality trait known to bias perception and cognition and has been proposed to be related to resilience. We found that higher IU was associated with attenuated resilience-related neural similarity in attention-related brain regions, suggesting that IU may undermine resilience by altering attentional focus toward specific aspects of the external environment. We propose that the similarity of neural responses among resilient individuals highlights adaptive emotional processing engaging multiple brain systems. Conversely, the variability in neural responses among low-resilience groups indicates vulnerability to adverse psychological outcomes. These insights shed light on the mechanisms of resilience, highlighting that it involves a constellation of neuropsychological processes crucial for adapting to external stimuli.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11642607/pdf/",
"has_pmc": true
},
{
"pmid": "41954041",
"title": "Investigating Emotional Reactivity in Experienced Users of Psychedelics: A Cross-Sectional fMRI Study.",
"journal": "Human brain mapping",
"year": "2026",
"authors": [
"P Orłowski",
"A Domagalik",
"M Bola"
],
"doi": "10.1016/j.neuropharm.2017.12.041",
"pmc_id": "PMC3815955",
"abstract": "Classic psychedelics profoundly alter emotional states, inducing intense acute experiences lasting hours, followed by subtler, longer-lasting changes in emotional reactivity that can persist for weeks. While experimental and clinical studies document these prolonged effects, the highly context-dependent nature of psychedelic experiences leaves open the question of whether naturalistic, nonclinical use similarly modulates emotional processing. To investigate this, we conducted a preregistered, cross-sectional fMRI study comparing experienced psychedelic users (≥ 10 lifetime uses; N = 33) with closely matched nonusers (N = 34). Participants performed an emotional face recognition task, and we examined behavioral performance and neural responses to angry, happy, and fearful facial expressions. Behavioral results revealed that psychedelic users recognized angry expressions more quickly and accurately, indicating enhanced processing efficiency for threat-related stimuli. Consistent with this, whole-brain fMRI analyses showed reduced activation to anger in key limbic and salience network regions. Psychedelic users also exhibited heightened responses to happy expressions in parietal and sensorimotor cortices-aligning with prior clinical observations-as well as increased precuneus activation to fearful expressions. Region-of-interest analyses further demonstrated reduced differentiation between emotional categories in two default mode network nodes: the frontal medial cortex and parahippocampal gyrus. These findings provide a nuanced characterization of neurofunctional changes in emotional processing linked to repeated naturalistic psychedelic use. By bridging clinical and real-world contexts, this work deepens our understanding of the potential long-term consequences of psychedelics and complements existing evidence from controlled therapeutic settings.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3815955/pdf/",
"has_pmc": true
},
{
"pmid": "41635619",
"title": "Context modulates brain state dynamics and behavioral responses during narrative comprehension.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2026",
"authors": [
"Y Chen",
"Z Zada",
"SA Nastase"
],
"doi": "10.1037/0033-2909.123.2.162",
"pmc_id": "PMC12224434",
"abstract": "Narrative comprehension is inherently context-sensitive, yet the brain and cognitive mechanisms by which brief contextual priming shapes story interpretation remain unclear. Using hidden Markov modeling (HMM) of fMRI data, we identified dynamic brain states as participants listened to an ambiguous spoken story under two distinct narrative contexts (affair vs. paranoia). We identified recurrent states involving auditory, language, and default mode network (DMN) regions that were expressed across both groups, as well as additional states characterized by recruitment of multiple-demand network (MDN) systems, including control, dorsal attention, and salience networks. Bayesian mixed-effects modeling revealed that contextual framing modulated how specific linguistic and character-related features influenced the probability of occupying these states. Complementary behavioral data showed parallel context-sensitive modulation of participants' moment-to-moment interpretive judgments. Together, these findings suggest that contextual priming influences narrative comprehension through subtle, feature-dependent adjustments in the engagement of DMN- and MDN-related brain states during naturalistic story listening.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12224434/pdf/",
"has_pmc": true
},
{
"pmid": "41680159",
"title": "Geometry of neural dynamics along the cortical attractor landscape reflects changes in attention.",
"journal": "Nature communications",
"year": "2026",
"authors": [
"H Song",
"R Chen",
"TL Botch"
],
"doi": "10.1016/j.neuron.2018.07.003",
"pmc_id": "PMC13009207",
"abstract": "Large-scale brain activity reflects changes in attention. To understand how, we tested a hypothesis that the geometry of neural dynamics on the cortical attractor landscape, or movement along its \"hills and valleys\", reflects attentional states. A dynamical systems model separating intrinsic dynamics from stimulus-driven influences was fit to fMRI data collected during rest, tasks, and movie-watching. Model simulations revealed a set of attractors aligned with canonical functional brain networks. The speed and direction of neural trajectories toward these attractors varied systematically with attentional states over time and across contexts. When participants were paying attention to effortful tasks, neural dynamics converged fast and directly toward a task-relevant attractor. In contrast, when participants were engaged in sitcom episodes, neural dynamics occupied a flatter region of the landscape, directed away from attractors. These findings demonstrate that while attractor locations are largely determined by cortical organization, the geometry of neural dynamics changes systematically across attentional states and contexts.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC13009207/pdf/",
"has_pmc": true
},
{
"pmid": "41485418",
"title": "Measuring brain sensitivity to semantic distance in spoken narrative comprehension.",
"journal": "Cortex; a journal devoted to the study of the nervous system and behavior",
"year": "2026",
"authors": [
"H Mechtenberg",
"J Reilly",
"JE Peelle"
],
"doi": "10.1121/1.2935783",
"pmc_id": "PMC3174820",
"abstract": "Discourse comprehension requires simultaneous integration of local and global constituents. When hearing a narrative, for example, listeners must link the meaning of each incoming word to the preceding word (local context) while also assimilating its meaning into the broader gist of a story (global context). Thus, the brain simultaneously constructs meaning at different time scales and with different levels of granularity. Our understanding of the brain's division of labor in processing local versus global semantic distance relationships is limited. In this study we ask specifically how the semantic distance between a word and its prior context drives activity in the brain during naturalistic listening. We used fMRI data collected while participants (n = 79) listened to a podcast interview. Using a novel method for estimating semantic distance between a word and prior contexts computed at multiple grain sizes, we conducted an amplitude-modulated regression to identify brain regions that were sensitive to semantic distance. Results show that semantic distance drives activation in a broad frontotemporal network including the left and right superior and middle temporal gyrus and left inferior frontal gyrus, as well as the bilateral cerebellum. The right anterior superior temporal gyrus was particularly sensitive to the increase in context window size, consistent with a right hemisphere specialization for gist processing and for the anterior temporal lobes' purported role in semantic integration. This study demonstrates a promising method for investigating neural sensitivity to semantic movement in naturalistic language.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3174820/pdf/",
"has_pmc": true
},
{
"pmid": "39467639",
"title": "Early Neural Development of Social Interaction Perception: Evidence from Voxel-Wise Encoding in Young Children and Adults.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"EJ Im",
"A Shirahatti",
"L Isik"
],
"doi": "10.1523/JNEUROSCI.1717-16.2016",
"pmc_id": "PMC6596756",
"abstract": "From a young age, children have advanced social perceptual and reasoning abilities. However, the neural development of these abilities is still poorly understood. To address this gap, we used fMRI data collected while 122 3-12-year-old children (64 females) and 33 adults (20 females) watched an engaging and socially rich movie to investigate how the cortical basis of social processing changes throughout development. We labeled the movie with visual and social features, including motion energy, presence of a face and a social interaction, theory of mind (ToM) events, valence, and arousal. Using a voxel-wise encoding model trained on these features, we found that models based on visual (motion energy) and social (faces, social interaction, ToM, valence, and arousal) features can both predict brain activity in children as young as 3 years old across the cortex, with particularly high predictivity in motion-selective middle temporal region and the superior temporal sulcus (STS). Furthermore, models based on individual social features showed that while there may be some development throughout childhood, social interaction information in the STS is present in children as young as 3 years old and appears adult-like by age 7. The current study, for the first time, links neural activity in children to predefined social features in a narrative movie and suggests social interaction perception is supported by early developing neural responses in the STS.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6596756/pdf/",
"has_pmc": true
},
{
"pmid": "41142951",
"title": "Characterizing dynamic functional connectivity subnetwork contributions in narrative classification with Shapley values.",
"journal": "Network neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"A Rossi",
"Y Aeschlimann",
"E Natale"
],
"doi": "10.1016/j.neuroimage.2004.12.013",
"pmc_id": "PMC4107817",
"abstract": "Functional connectivity derived from functional magnetic resonance imaging (fMRI) data has been increasingly used to study brain activity. In this study, we model brain dynamic functional connectivity during narrative tasks as a temporal brain network and employ a machine learning model to classify in a supervised setting the modality (audio, movie), the content (airport, restaurant situations) of narratives, and both combined. Leveraging Shapley values, we analyze subnetwork contributions within Yeo parcellations (7- and 17-subnetworks) to explore their involvement in narrative modality and comprehension. This work represents the first application of this approach to functional aspects of the brain, validated by existing literature, and provides novel insights at the whole-brain level. Our findings suggest that schematic representations in narratives may not depend solely on preexisting knowledge of the top-down process to guide perception and understanding, but may also emerge from a bottom-up process driven by the temporal parietal subnetwork. This study investigates how different brain subnetworks contribute to processing narratives. We used a machine learning model to analyze fMRI data from participants listening to or watching narratives that varied in modality (audio or movie) and thematic content (airport or restaurant). Our model accurately classified these different narrative aspects, and by using Shapley values, we identified the subnetworks most crucial for each classification. Consistent with existing neuroscience knowledge, our findings highlight the distinct roles of these subnetworks in narrative comprehension. This study provides a powerful approach for investigating brain function across various domains.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4107817/pdf/",
"has_pmc": true
},
{
"pmid": "40386868",
"title": "Neural state changes during movie watching relate to episodic memory in younger and older adults.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"SE Henderson",
"D Oetringer",
"L Geerligs"
],
"doi": "10.1037/0278-7393.22.5.1196",
"pmc_id": "PMC8966433",
"abstract": "Event segmentation is a key feature underlying the ability to remember real-life occurrences. At the neural level, event boundaries have been shown to align with boundaries between neural states-stable patterns of brain activity maintained over time. These neural states provide a valuable window into the neural underpinnings of event perception. To investigate how neural state boundaries relate to memory across the lifespan, we used the data-driven Greedy State Boundary Search method to implicitly identify neural state changes in younger and older adults' electroencephalography data during movie watching. Memory for the movie was tested and related to (1) neural state correspondence across individuals and (2) the degree to which the pattern of activity changes at boundaries. Neural state boundaries significantly aligned across people, but did not differ with age nor relate to memory. The degree of change at neural state boundaries also did not differ with age, but was positively related to memory for the movie. These findings suggest that age differences in the perception of naturalistic events may be less pronounced than previously thought, at least when measured implicitly, and that greater distinction between successive neural states relates to better memory for one's experiences regardless of age.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8966433/pdf/",
"has_pmc": true
},
{
"pmid": "39896129",
"title": "No effect of apolipoprotein E polymorphism on MRI brain activity during movie watching.",
"journal": "Brain and neuroscience advances",
"year": "2025",
"authors": [
"PP Raykov",
"J Daly",
"SE Fisher"
],
"doi": "10.1101/2023.04.18.23288690",
"pmc_id": "PMC2852534",
"abstract": "Apolipoprotein E ε4 is a major genetic risk factor for Alzheimer's disease, and some apolipoprotein E ε4 carriers show Alzheimer's disease-related neuropathology many years before cognitive changes are apparent. Therefore, studying healthy apolipoprotein E genotyped individuals offers an opportunity to investigate the earliest changes in brain measures that may signal the presence of disease-related processes. For example, subtle changes in functional magnetic resonance imaging functional connectivity, particularly within the default mode network, have been described when comparing healthy ε4 carriers to ε3 carriers. Similarly, very mild impairments of episodic memory have also been documented in healthy apolipoprotein E ε4 carriers. Here, we use a naturalistic activity (movie watching), and a marker of episodic memory encoding (transient changes in functional magnetic resonance imaging activity and functional connectivity around so-called 'event boundaries'), to investigate potential phenotype differences associated with the apolipoprotein E ε4 genotype in a large sample of healthy adults. Using Bayes factor analyses, we found strong evidence against existence of differences associated with apolipoprotein E allelic status. Similarly, we did not find apolipoprotein E-associated differences when we ran exploratory analyses examining: functional system segregation across the whole brain, and connectivity within the default mode network. We conclude that apolipoprotein E genotype has little or no effect on how ongoing experiences are processed in healthy adults. The mild phenotype differences observed in some studies may reflect early effects of Alzheimer's disease-related pathology in apolipoprotein E ε4 carriers.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC2852534/pdf/",
"has_pmc": true
},
{
"pmid": "40800968",
"title": "Cerebral topographies of perceived and felt emotions.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"H Saarimäki",
"L Nummenmaa",
"S Volynets"
],
"doi": "10.1177/1754073917749880",
"pmc_id": "PMC7543934",
"abstract": "Emotions modulate behavioral priorities based on exteroceptive and interoceptive inputs, and the related central and peripheral changes may be experienced subjectively. Yet, it remains unresolved whether the perceptual and subjectively felt components of the emotion processes rely on shared brain mechanisms. We applied functional magnetic resonance imaging, a rich set of emotional movies, and high-dimensional, continuous ratings of perceived and felt emotions in the movies to investigate their cerebral organization. Emotions evoked during natural movie scene perception were represented in the brain across numerous spatial scales and patterns. Perceived and felt emotions generalized both between individuals and between different stimuli depicting the same emotions. The neural affective space demonstrated an anatomical gradient from emotion-general responses in polysensory areas and default mode regions to more emotion-specific discrete processing in subcortical regions. Differences in brain activation during felt and perceived emotions suggest that temporoparietal areas and precuneus have a key role in evaluating the affective value of the sensory input, and subjective emotional state generation is associated with further and significantly stronger recruitment of the temporoparietal junction, anterior prefrontal cortices, cerebellum, and thalamus. These data reveal the similarities and differences of domain-general and emotion-specific affect networks in the brain during a wide range of perceived and felt emotions.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7543934/pdf/",
"has_pmc": true
},
{
"pmid": "39809735",
"title": "Coordinated representations for naturalistic memory encoding and retrieval in hippocampal neural subspaces.",
"journal": "Nature communications",
"year": "2025",
"authors": [
"D Kwon",
"J Kim",
"SBM Yoo"
],
"doi": "10.1038/s41597-020-00735-4",
"pmc_id": "PMC4961028",
"abstract": "Our naturalistic experiences are organized into memories through multiple processes, including novelty encoding, memory formation, and retrieval. However, the neural mechanisms coordinating these processes remain elusive. Using fMRI data acquired during movie viewing and subsequent narrative recall, we examine hippocampal neural subspaces associated with distinct memory processes and characterized their relationships. We quantify novelty in character co-occurrences and the valence of relationships and estimate event memorability. Within the hippocampus, the novelty subspaces encoding each type exhibit partial overlap, and these overlapping novelty subspaces align with the subspace involved in memorability. Notably, following event boundaries, hippocampal states within these subspaces align inversely along a shared coding axis, predicting subsequent recall performance. This novelty-memorability alignment is selectively observed during encoding but not during retrieval. Finally, the identified functional subspaces reflect the intrinsic functional organization of the hippocampus. Our findings offer insights into how the hippocampus dynamically coordinates representations underlying memory encoding and retrieval at the population level to transform ongoing experiences into enduring memories.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4961028/pdf/",
"has_pmc": true
},
{
"pmid": "41137740",
"title": "From Speech Semantics to Brain Activity-Timescales Are Key in Their Information Transfer.",
"journal": "Human brain mapping",
"year": "2025",
"authors": [
"S Kumar",
"P Klar",
"Y Çatal"
],
"doi": "10.1016/j.neuroimage.2020.117579",
"pmc_id": "PMC10070246",
"abstract": "Fluctuating timescales are present in nature and are commonly observed in music, movies, brain activity, and speech. In human speech, semantic timescales span from single words to complete sentences and vary throughout conversation. Similarly, the brain's intrinsic neuronal timescales (INT), reflected in temporally correlated activity, carry information across time. How are these semantic and neuronal timescales related? Our combined semantic input and functional magnetic resonance imaging (fMRI) study using the 7 Tesla Human Connectome Project movie-watching dataset reveals information transfer from speech's semantic timescales to the brain's INT. We extracted two semantic time-series, sentence similarity and word depth, using Sentence-BERT (SBERT) and WordNet, respectively. The timescales of both semantic signals and the brain's activity were quantified using the autocorrelation window (ACW), with a dynamic, time-varying analysis approach. This allows testing for information transfer from the simultaneously varying semantic timescales to the brain's varying timescales via Transfer Entropy (TE). We report three main findings: (1) Sentence similarity and word depth time-series exhibit high and systematic fluctuations over time. (2) Dynamic ACW analysis captures the dominant timescales in both semantic input (sentence similarity and word depth) and the brain's continuously varying INT. (3) Significant TE from the varying semantic timescales to the brain's simultaneously varying INT. We also demonstrate that the information transfer only emerges on the level of timescales, and is absent when comparing the two raw semantic input time-series with the BOLD signal, respectively. Conclusively, we demonstrate the key role of timescales in the information transfer from semantic inputs to the brain's neural activity.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10070246/pdf/",
"has_pmc": true
},
{
"pmid": "40481037",
"title": "Functional recruitment and connectivity of the cerebellum is associated with the emergence of Theory of Mind in early childhood.",
"journal": "Nature communications",
"year": "2025",
"authors": [
"A Manoli",
"F Van Overwalle",
"C Grosse Wiesmann"
],
"doi": "10.1038/srep06240",
"pmc_id": "PMC4150124",
"abstract": "There is accumulating evidence that the human cerebellum is heavily implicated in adult social cognition. Yet, its involvement in the development of Theory of Mind (ToM), a hallmark of social cognition, remains elusive. Using openly available functional MRI data of children with emerging ToM abilities (N = 41, age range: 3-12 years) and adults (N = 78), we show that children who pass a false-belief assessment of ToM abilities activate cerebellar Crus I-II in response to ToM events during a movie-watching task, similar to adults. This activation is not statistically significant in children who do not pass the ToM assessment. Functional connectivity profiles between cerebellar and cerebral ToM regions differ as a function of children's ToM abilities. Notably, task-driven connectivity shifts from upstream to downstream connections between cerebellar and cerebral ToM regions from childhood to adulthood. Greater dependence on connections emerging from the cerebellum early in life suggests an important role of the cerebellum in establishing the cognitive processes underlying ToM in childhood and thus for the undisrupted development of social cognition.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4150124/pdf/",
"has_pmc": true
},
{
"pmid": "40800935",
"title": "The neural basis of event segmentation: Stable features in the environment are reflected by neural states.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"D Oetringer",
"D Gözükara",
"U Güçlü"
],
"doi": "10.1111/j.1467-9280.1995.tb00513.x",
"pmc_id": "PMC6057550",
"abstract": "Our senses receive a continuous stream of complex information. Parsing this information into meaningful events allows us to extract relevant information, remember it, and act upon it. Previous research has related these events to so-called neural states: temporally and regionally specific stable patterns of brain activity, which tend to coincide with events in the stimulus. Neural states show a temporal cortical hierarchy: short states are present in early sensory areas, while longer states can be found in higher-level areas. Here we investigated what these neural states represent. We hypothesized that states at different levels of the cortical hierarchy are shaped by aspects of the stimulus to which these brain areas are responsive. To test this hypothesis, we analyzed fMRI data of participants watching a movie, using a data-driven method to identify the neural states. We found support for the aforementioned hypothesis: specifically the parahippocampal place area and retrosplenial cortex, known to be sensitive to places, showed an alignment between neural state boundaries and moments in the movie with a change in location, independent of changes in visual features and other covariates. These findings suggest that neural states reflect stable features in the (internal model of) the external environment, and that the cortical temporal hierarchy partly reflects the temporal scales at which representations of the environment evolve.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6057550/pdf/",
"has_pmc": true
},
{
"pmid": "41105838",
"title": "Temporal propagation of neural state boundaries in naturalistic context.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"D Oetringer",
"S Henderson",
"D Gözükara"
],
"doi": "10.1111/j.1467-9280.1995.tb00513.x",
"pmc_id": "PMC8145286",
"abstract": "Our senses receive a continuous stream of complex information, which we segment into discrete events. Previous research has related such events to neural states: temporally and regionally specific stable patterns of brain activity. The aim of this paper was to investigate whether there was evidence for top-down or bottom-up propagation of neural state boundaries. To do so, we used intracranial measurements with high temporal resolution while subjects were watching a movie. As this is the first study of neural states in intracranial data in the context of event segmentation, we also investigated whether known properties of neural states could be replicated. The neural state boundaries indeed aligned with stimulus features and between brain areas. Importantly, we found evidence for top-down propagation of neural state boundaries at the onsets and offsets of clauses. Interestingly, we did not observe a consistent top-down or bottom-up propagation in general across all timepoints, suggesting that neural state boundaries could propagate in both a top-down and bottom-up manner, with the direction depending on the stimulus input at that moment. Taken together, our findings provide new insights on how neural state boundaries are shared across brain regions and strengthen the foundation of studying neural states in electrophysiology.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8145286/pdf/",
"has_pmc": true
},
{
"pmid": "39878229",
"title": "Pattern Separation and Pattern Completion Within the Hippocampal Circuit During Naturalistic Stimuli.",
"journal": "Human brain mapping",
"year": "2025",
"authors": [
"L Sun",
"S Li",
"P Ren"
],
"doi": "10.1002/hbm.70150",
"pmc_id": "PMC2852534",
"abstract": "Pattern separation and pattern completion in the hippocampus play a critical role in episodic learning and memory. However, there is limited empirical evidence supporting the role of the hippocampal circuit in these processes during complex continuous experiences. In this study, we analyzed high-resolution fMRI data from the \"Forrest Gump\" open-access dataset (16 participants) using a sliding-window temporal autocorrelation approach to investigate whether the canonical hippocampal circuit (DG-CA3-CA1-SUB) shows evidence consistent with the occurrence of pattern separation or pattern completion during a naturalistic audio movie task. Our results revealed that when processing continuous naturalistic stimuli, the DG-CA3 pair exhibited evidence consistent with the occurrence of the pattern separation process, whereas both the CA3-CA1 and CA1-SUB pairs showed evidence consistent with pattern completion. Moreover, during the latter half of the audio movie, we observed evidence consistent with a reduction in pattern completion in the CA3-CA1 pair and an increase in pattern completion in the CA1-SUB pair. Overall, these findings improve our understanding of the evidence related to the occurrence of pattern separation and pattern completion processes during natural experiences.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC2852534/pdf/",
"has_pmc": true
},
{
"pmid": "40800800",
"title": "Structure-function coupling and decoupling during movie watching and resting state: Novel insights bridging EEG and structural imaging.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"V Subramani",
"G Lioi",
"K Jerbi"
],
"doi": "10.3389/fncom.2022.919215",
"pmc_id": "PMC9301328",
"abstract": "The intricate structural and functional architecture of the brain enables a wide range of cognitive processes ranging from perception and action to higher order abstract thinking. Despite important progress, the relationship between the brain's structural and functional properties is not yet fully established. In particular, the way the brain's anatomy shapes its electrophysiological dynamics remains elusive. The electroencephalography (EEG) activity recorded during naturalistic tasks is thought to exhibit patterns of coupling with the underlying brain structure that vary as a function of behavior. Yet these patterns have not yet been sufficiently quantified. We address this gap by jointly examining individual Diffusion-Weighted Imaging (DWI) scans and continuous EEG recorded during video watching and resting state, using a Graph Signal Processing (GSP) framework. By decomposing the structural graph into eigenmodes and expressing the EEG activity as an extension of anatomy, GSP provides a way to quantify the structure-function coupling. We elucidate how the structure shapes function during naturalistic tasks such as movie watching and how this association is modulated by tasks. We quantify the coupling relationship in a region-, time-, and frequency-resolved manner. First of all, our findings indicate that the EEG activity in the sensorimotor cortex is strongly coupled with brain structure, while the activity in higher order systems is less constrained by anatomy, that is, shows more flexibility. In addition, we found that watching videos was associated with stronger structure-function coupling in the sensorimotor cortex, as compared with resting-state data. Second, time-resolved analysis revealed that the unimodal systems undergo minimal temporal fluctuation in structure-function association, and the transmodal system displays the highest temporal fluctuations, with the exception of PCC seeing low fluctuations. Lastly, our frequency-resolved analysis revealed a consistent topography across different EEG rhythms, suggesting a similar relationship with the anatomical structure across frequency bands. Together, this unprecedented characterization of the link between structure and function using continuous EEG during naturalistic behavior underscores the role of anatomy in shaping ongoing cognitive processes. Taken together, by combining the temporal and spectral resolution of EEG and the methodological advantages of GSP, our work sheds new light on the anatomo-functional organization of the brain.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9301328/pdf/",
"has_pmc": true
},
{
"pmid": "40472031",
"title": "Shared disbelief and shared belief: Belief and disbelief as drivers of interpersonal neural synchronization during narrative processing.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"year": "2025",
"authors": [
"G Braun",
"Y Yeshurun",
"E Shetreet"
],
"doi": "10.1016/j.neubiorev.2013.06.002",
"pmc_id": "PMC7959490",
"abstract": "Despite living in an era where the mere concept of truth is increasingly contested, the cognitive processes underlying the processing of information we believe or disbelieve remain largely unexplored. In this fMRI study, we investigated how belief modulates narrative processing through belief context-the initial information indicating the speaker's credibility-and actual belief-the truth value ultimately assigned by the listener. Across two experiments, participants listened to narratives preceded by contexts explicitly stating whether the speaker was lying or telling the truth. Then, after listening to the narratives, they were asked to rate their actual belief. To investigate the effects of (dis)belief on narrative processing, we analyzed neural synchronization using inter-subject-correlation analysis and inter-subject representational similarity analysis. In both experiments, we successfully differentiated (dis)belief contexts by modeling neural synchronization patterns, despite an actual \"belief-bias\" at the behavioral level. This indicates a unique neural pattern related to each belief context. Furthermore, our results revealed a dissociation between belief and disbelief in both contextual and actual (dis)belief. Per each narrative, belief and disbelief were associated with increased synchrony within the default mode network, but in distinguishable parcels. These findings highlight the influence of (dis)belief on narrative processing at both behavioral and neural levels. Behaviorally, the observed belief-bias supports the notion of belief as a cognitive default. Neurally, we suggest that belief and disbelief can be understood as fostering qualitatively distinct processing or interpretation of the same narrative, which are then reflected in shared neural responses among individuals who hold similar belief states.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7959490/pdf/",
"has_pmc": true
},
{
"pmid": "40924465",
"title": "Brain activation for language and its relationship to cognitive and linguistic measures.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"I Balboni",
"A Rampinini",
"O Kepinska"
],
"doi": "10.1016/j.neuron.2012.03.004",
"pmc_id": "PMC3361461",
"abstract": "Language learning and use relies on domain-specific, domain-general cognitive and sensory-motor functions. Using fMRI during story listening and behavioral tests, we investigated brain-behavior associations between linguistic and non-linguistic measures in individuals with varied multilingual experience and reading skills, including typical reading participants (TRs) and dyslexic readers (DRs). Partial Least Square Correlation revealed a main component linking cognitive, linguistic, and phonological measures to amodal/associative brain areas. A second analysis only in TRs revealed a stronger association between cognitive, linguistic, literacy and phonological skills within the same brain network as in the full sample, suggesting better speech-print convergence in TRs. In this sample, an additional component involving speed, automatization, and lexical access was associated with less involvement in unimodal, lower-level auditory, and motor brain areas. The complementarity between the two components likely reflects TRs' reduced reliance on lower-level sensorimotor regions and greater engagement of higher-level cortices and skills. Overall, our work suggests convergence between behavioral measures of linguistic, domain-general cognitive and domain-specific non-linguistic skill, and between these behavioral measures and neural processing of language. This convergence is greater in TRs, suggesting more integrated processing in this group. Our work advocates a comprehensive, multimodal approach to understanding individual differences in language abilities and experience.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3361461/pdf/",
"has_pmc": true
},
{
"pmid": "40886590",
"title": "Advanced neuroimaging techniques to decipher brain connectivity networks in patients with disorder of consciousness: a narrative review.",
"journal": "NeuroImage. Clinical",
"year": "2025",
"authors": [
"S Zhu",
"T Cao",
"Q He"
],
"doi": "10.3389/fnsys.2019.00008",
"pmc_id": "PMC6399132",
"abstract": "Advanced neuroimaging techniques have revolutionized our ability to decode brain networks in patients with disorders of consciousness (DoC), offering unprecedented insights into the structural and functional underpinnings of consciousness impairment. This review systematically examines and summarizes the clinical applications of modern neuroimaging methodologies-specifically functional MRI and diffusion MRI- for DoC patients from three key perspectives: (1) pathogenic mechanism and theory evolution, (2) accurate diagnosis and prognosis assessment, and (3) treatment strategy and efficacy evaluation. By integrating network neuroscience with clinical insights, we highlight the transformative role of neuroimaging in unraveling network-level damage, refining clinical assessments, and guiding therapeutic innovations. We further outline the potential applicational challenges associated with leveraging neuroimaging techniques to advance both scientific research on consciousness networks and clinical practice in DoC management, hoping to better address these complex conditions.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6399132/pdf/",
"has_pmc": true
},
{
"pmid": "40155709",
"title": "Neural dynamics of semantic control underlying generative storytelling.",
"journal": "Communications biology",
"year": "2025",
"authors": [
"C Rastelli",
"A Greco",
"C Finocchiaro"
],
"doi": "10.1038/s42003-025-07913-3",
"pmc_id": "PMC11484927",
"abstract": "Storytelling has been pivotal for the transmission of knowledge across human history, yet the role of semantic control and its associated neural dynamics has been poorly investigated. Here, human participants generated stories that were either appropriate (ordinary), novel (random), or balanced (creative), while recording functional magnetic resonance imaging (fMRI). Deep language models confirmed participants adherence to task instructions. At the neural level, linguistic and visual areas exhibited neural synchrony across participants regardless of the semantic control level, with parietal and frontal regions being more synchronized during random ideation. Importantly, creative stories were differentiated by a multivariate pattern of neural activity in frontal and fronto-temporo-parietal cortices compared to ordinary and random stories. Crucially, similar brain regions were also encoding the features that distinguished the stories. Moreover, we found specific spatial frequency patterns underlying the modulation of semantic control during story generation, while functional coupling in default, salience, and control networks differentiated creative stories with their controls. Remarkably, the temporal irreversibility between visual and high-level areas was higher during creative ideation, suggesting the enhanced hierarchical structure of causal interactions as a neural signature of creative storytelling. Together, our findings highlight the neural mechanisms underlying the regulation of semantic exploration during narrative ideation.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11484927/pdf/",
"has_pmc": true
},
{
"pmid": "40800764",
"title": "The Voxelwise Encoding Model framework: A tutorial introduction to fitting encoding models to fMRI data.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"T Dupré la Tour",
"M Visconti di Oleggio Castello",
"JL Gallant"
],
"doi": "10.1177/1745691617693393",
"pmc_id": "PMC6603289",
"abstract": "The Voxelwise Encoding Model framework (VEM) is a powerful approach for functional brain mapping. In the VEM framework, features are extracted from the stimulus (or task) and used in an encoding model to predict brain activity. If the encoding model is able to predict brain activity in some part of the brain, then one may conclude that some information represented in the features is also encoded in the brain. In VEM, a separate encoding model is fitted on each spatial sample (i.e., each voxel). VEM has many benefits compared to other methods for analyzing and modeling neuroimaging data. Most importantly, VEM can use large numbers of features simultaneously, which enables the analysis of complex naturalistic stimuli and tasks. Therefore, VEM can produce high-dimensional functional maps that reflect the selectivity of each voxel to large numbers of features. Moreover, because model performance is estimated on a separate test dataset not used during fitting, VEM minimizes overfitting and inflated Type I error confounds that plague other approaches, and the results of VEM generalize to new subjects and new stimuli. Despite these benefits, VEM is still not widely used in neuroimaging, partly because no tutorials on this method are available currently. To demystify the VEM framework and ease its dissemination, this paper presents a series of hands-on tutorials accessible to novice practitioners. The VEM tutorials are based on free open-source tools and public datasets, and reproduce the analysis presented in previously published work.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6603289/pdf/",
"has_pmc": true
},
{
"pmid": "40659530",
"title": "Neural Synchrony and Consumer Behavior: Predicting Friends' Behavior in Real-World Social Networks.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"Y Hu",
"B Ma",
"J Jin"
],
"doi": "10.1016/j.elerap.2022.101219",
"pmc_id": "PMC3288461",
"abstract": "The endogenous aspect of social influence, reflected in the spontaneous alignment of behaviors within close social relationships, plays a crucial role in understanding human social behavior. In two studies involving 222 human subjects (Study 1: n = 175, 106 females; Study 2: n = 47, 33 females), we used a longitudinal behavioral study and a naturalistic stimuli neuroimaging study to investigate the endogenous consumer behavior similarities and their neural basis in real-world social networks. The findings reveal that friends, compared with nonfriends, exhibit higher similarity in product evaluation, which undergoes dynamic changes as the structure of social networks changes. Both neuroimaging and meta-analytic decoding results indicate that friends exhibit heightened neural synchrony, which is linked to cognitive functions such as object perception, attention, memory, social judgment, and reward processing. Stacking machine learning-based predictive models demonstrate that the functional connectivity maps of brain activity can predict the purchase intention of their friends or their own rather than strangers. Based on the significant neural similarity which exists among individuals in close relationships within authentic social networks, the current study reveals the predictive capacity of neural activity in predicting the behavior of friends.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3288461/pdf/",
"has_pmc": true
},
{
"pmid": "39960115",
"title": "Stimulus Selection Influences Prediction of Individual Phenotypes in Naturalistic Conditions.",
"journal": "Human brain mapping",
"year": "2025",
"authors": [
"X Li",
"SB Eickhoff",
"S Weis"
],
"doi": "10.1002/hbm.23950",
"pmc_id": "PMC6866578",
"abstract": "While the use of naturalistic stimuli such as movie clips for understanding individual differences and brain-behaviour relationships attracts increasing interest, the influence of stimulus selection remains largely unclear. By using machine learning to predict individual traits (phenotypes) from brain activity evoked during various movie clips, we show that different movie stimuli can result in distinct prediction performances. In brain regions related to lower-level processing of the stimulus, prediction to a certain degree benefits from stronger synchronisation of brain activity across subjects. By contrast, better predictions in frontoparietal brain regions are mainly associated with larger inter-subject variability. Furthermore, we demonstrate that while movie clips with rich social content in general achieve better predictions, the importance of specific movie features for prediction highly depends on the phenotype under investigation. Overall, our findings underscore the importance of careful stimulus selection and provide novel insights into stimulus selection for phenotype prediction in naturalistic conditions, opening new avenues for future research.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6866578/pdf/",
"has_pmc": true
},
{
"pmid": "41026824",
"title": "Mapping macaque to human cortex with natural scene responses.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"year": "2025",
"authors": [
"K Vinken",
"S Sharma",
"MS Livingstone"
],
"doi": "10.1073/pnas.2512619122",
"pmc_id": "PMC5495573",
"abstract": "Neuroscience has long relied on macaque studies to infer human brain function, yet identifying functionally corresponding brain regions across species and measurement modalities remains a fundamental challenge. This is especially true for the higher-order cortex, where functional interpretations are constrained by narrow hypotheses and anatomical landmarks are often nonhomologous. We present a data-driven approach for mapping functional correspondence across species using rich, naturalistic stimuli. By directly comparing macaque electrophysiology with human fMRI responses to 700 natural scenes, we identify fine-grained alignment based on response pattern similarity, without relying on predefined tuning concepts or hand-picked stimuli. As a test case, we examine the ventral face patch system, a well-studied but contested domain in cross-species alignment. Our approach resolves a long-standing ambiguity by supporting a correspondence between macaque ML and human FFA and between AL and more anterior temporal cortex in humans. This result is consistent with full-brain anatomical warping but inconsistent with prior studies limited by narrow functional hypotheses. These findings show that natural image-evoked response patterns provide a robust foundation for cross-species functional alignment, supporting scalable comparisons as large-scale primate recordings become more widespread.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC5495573/pdf/",
"has_pmc": true
},
{
"pmid": "40800842",
"title": "Similar trajectories of psychological states predict marital satisfaction.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"L Li",
"X Huang",
"Q Zheng"
],
"doi": "10.1002/hbm.24059",
"pmc_id": "PMC6866636",
"abstract": "Modern mate selection theories suggest that people are more likely to marrysomeone similar to themselves in terms of numerous attributes. Recent researchhas demonstrated a positive relationship between marital satisfaction andinter-subject correlation (ISC) of neural responses while viewing movies inmarried couples. Nevertheless, conventional ISC methods solely captureinformation about similarity in the temporal evolution of region-averaged neuralresponses, disregarding nuanced spatially distributed response topographies.Here, we integrated ISC and multi-voxel pattern (MVP) analysis to capitalizeinter-subject trajectory similarity (ISTS) of MVP. We demonstrated that marriedcouples showed significantly higher ISTS than randomly selected pairs, duringmovie viewing and resting state. The ISTS was particularly positively associatedwith marital satisfaction in married couples while viewing movies. In order toinvestigate latent \"psychological states\" characterized byrelatively stable patterns of MVP, a hidden Markov model was used to segment theneural events in married couples during viewing movies. We found the ISTS withinmanually defined events was a strong predictor of marital satisfaction. Theseresults suggest that married couples with high-level marital satisfaction mayexperience similar trajectories of mental states when exposed to a commonmarital-related stimulus, and extend our understanding of the neurobiologicalsignatures of intimate relationship.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6866636/pdf/",
"has_pmc": true
},
{
"pmid": "39530592",
"title": "Shared orbitofrontal dynamics to a drug-themed movie track craving and recovery in heroin addiction.",
"journal": "Brain : a journal of neurology",
"year": "2025",
"authors": [
"G Kronberg",
"AO Ceceli",
"Y Huang"
],
"doi": "10.1093/brain/awae369",
"pmc_id": "PMC7536385",
"abstract": "Movies captivate groups of individuals (the audience), especially if they contain themes of common motivational interest to the group. In drug addiction, a key mechanism is maladaptive motivational salience attribution whereby drug cues outcompete other reinforcers within the same environment or context. We predicted that while watching a drug-themed movie, where cues for drugs and other stimuli share a continuous narrative context, functional MRI responses in individuals with heroin use disorder (iHUD) will preferentially synchronize during drug scenes. Thirty inpatient iHUD (24 male) and 25 healthy controls (16 male) watched a drug-themed movie at baseline and at follow-up after 15 weeks. Results revealed such drug-biased synchronization in the orbitofrontal cortex (OFC), ventromedial and ventrolateral prefrontal cortex, and insula. After 15 weeks during ongoing inpatient treatment, there was a significant reduction in this drug-biased shared response in the OFC, which correlated with a concomitant reduction in dynamically-measured craving, suggesting synchronized OFC responses to a drug-themed movie as a neural marker of craving and recovery in iHUD.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7536385/pdf/",
"has_pmc": true
},
{
"pmid": "41115795",
"title": "Hippocampal-Cortical Networks Predict Conceptual versus Perceptually Guided Narrative Memory.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"C Ferris",
"R Scheurich",
"C Palmer"
],
"doi": "10.1109/42.906424",
"pmc_id": "PMC7233541",
"abstract": "Current theories of event memory propose distinct connections between the hippocampus and neocortical regions, particularly those within the default mode network (DMN) subsystems, to support processing different types of content in memory. It has been established that hippocampal connectivity supports integrating this disparate content into unified event memories, suggesting that changing the way that an event is described could change the underlying hippocampal neural network. To address this knowledge gap, we developed event narratives that described the same core story (e.g., grocery shopping) with identical central story details described with additional descriptive details that were conceptually or perceptually related to the story. Using fMRI, we established hippocampal connectivity patterns as a group of human participants (N = 35, of any sex) encoded these narratives and then related these patterns to later memory for the narrative details. Consistent with prior work, we found that the conceptual narratives were associated with stronger anterior hippocampal connectivity to regions within the core and dorsomedial DMN subsystems, and a portion of this connectivity pattern predicted memory for the core story of the narrative. The perceptual narratives were selectively associated with anterior hippocampal connectivity to parietal and lateral temporal regions and regions outside the standard DMN, in relation to memory performance. These results provide new insights into hippocampal and DMN functional organization and how distinct neural components contribute differently to event memory.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7233541/pdf/",
"has_pmc": true
},
{
"pmid": "40800749",
"title": "Comparing reliability-based measures of functional connectivity between movie and rest: An ROI-based approach.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"H Shearer",
"J Eilbott",
"F Vila-Rodriguez"
],
"doi": "10.1016/j.neubiorev.2014.05.009",
"pmc_id": "PMC2955413",
"abstract": "Functional connectivity (FC) has shown promising utility in the field of precision psychiatry. However, to translate from research to clinical use, FC reliability and sensitivity to individual differences still require improvement. Movie watching as an acquisition state offers advantages at the whole-brain level that align with the requirements of FC for individualized measures. However, it is unclear whether these advantages hold in specific brain regions important for precision psychiatry. Here, we compared univariate and multivariate reliability-based measures of movie-watching and resting-state FC data in three psychiatrically relevant brain regions. We found that the reliability of movie-watching FC was comparable with resting-state FC in the dorsolateral prefrontal cortex and presupplementary motor area, and movie-watching FC was more discriminable than resting-state FC in the temporoparietal junction. Rest had higher reliabilities at lower data amounts (e.g., under 5 minutes of scan time). We then expanded this approach to all brain regions and showed that for image intraclass correlation coefficients (I2C2), no parcels were significantly different between movie and rest. For discriminability, 25% (94/379) of parcels were better for movie than for rest, and zero parcels were better for rest. For fingerprinting, 59 parcels were better for movie (mainly in visual and temporal regions, mean improvement in accuracy = 23%) and 4 parcels were better for rest. For researchers interested in cross-state differences in FC reliability, we provide an interactive visualization tool that displays the results for all measures and for all regions in both movie and rest. These findings suggest that movie watching as an acquisition state-even when using different movies across scans-may provide a useful alternative to resting state in research studies that require optimization of FC discriminability.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC2955413/pdf/",
"has_pmc": true
},
{
"pmid": "40800829",
"title": "Revealing the co-existence of written and spoken language coding neural populations in the visual word form area.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"S Wang",
"AS Dubarry",
"V Chanoine"
],
"doi": "10.1126/sciadv.adf6140",
"pmc_id": "PMC10075963",
"abstract": "Reading relies on the ability to map written symbols with speech sounds. A specific part of the left ventral occipitotemporal cortex, known as the Visual Word Form Area (VWFA), plays a crucial role in this process. Through the automatization of the mapping ability, this area progressively becomes specialized in written word recognition. Yet, despite its key role in reading, the area also responds to speech. This observation raises questions about the actual nature of neural representations encoded in the VWFA and, therefore, the underlying mechanism of the cross-modal responses. Here, we addressed this issue by applying fine-grained analyses of within- and cross-modal repetition suppression effects (RSEs) and Multi-Voxel Pattern Analyses in fMRI and sEEG experiments. Convergent evidence across analysis methods and protocols showed significant RSEs and successful decoding in both within-modal visual and auditory conditions, suggesting that populations of neurons within the VWFA distinctively encode written and spoken language. This functional organization of neural populations enables the area to respond to both written and spoken inputs. The finding opens further discussions on how the human brain may be prepared and adapted for an acquisition of a complex ability such as reading.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10075963/pdf/",
"has_pmc": true
},
{
"pmid": "41424246",
"title": "Human EEG and artificial neural networks reveal disentangled representations and processing timelines of object real-world size and depth in natural images.",
"journal": "eLife",
"year": "2025",
"authors": [
"Z Lu",
"J Golomb"
],
"doi": "10.1038/nn.4244",
"pmc_id": "PMC4060707",
"abstract": "Remarkably, human brains have the ability to accurately perceive and process the real-world size of objects, despite vast differences in distance and perspective. While previous studies have delved into this phenomenon, distinguishing the processing of real-world size from other visual properties, like depth, has been challenging. Using the THINGS EEG2 dataset with human EEG recordings and more ecologically valid naturalistic stimuli, our study combines human EEG and representational similarity analysis to disentangle neural representations of object real-world size from retinal size and perceived depth, leveraging recent datasets and modeling approaches to address challenges not fully resolved in previous work. We report a representational timeline of visual object processing: object real-world depth processed first, then retinal size, and finally, real-world size. Additionally, we input both these naturalistic images and object-only images without natural background into artificial neural networks. Consistent with the human EEG findings, we also successfully disentangled representation of object real-world size from retinal size and real-world depth in all three types of artificial neural networks (visual-only ResNet, visual-language CLIP, and language-only Word2Vec). Moreover, our multi-modal representational comparison framework across human EEG and artificial neural networks reveals real-world size as a stable and higher-level dimension in object space incorporating both visual and semantic information. Our research provides a temporally resolved characterization of how certain key object properties - such as object real-world size, depth, and retinal size - are represented in the brain, which offers further advances and insights into our understanding of object space and the construction of more brain-like visual models.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4060707/pdf/",
"has_pmc": true
},
{
"pmid": "40800942",
"title": "Hierarchical surprise signals in naturalistic violation of expectations.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"V Plikat",
"PR Grassi",
"J Frack"
],
"doi": "10.1523/JNEUROSCI.23-22-08092.2003",
"pmc_id": "PMC6740503",
"abstract": "Surprise responses signal both high-level cognitive alerts that information is missing, and increasingly specific back-propagating error signals that allow updates in processing nodes. Studying surprise is, hence, central for cognitive neuroscience to understand internal world representations and learning. Yet, only few prior studies used naturalistic stimuli targeting our high-level understanding of the world. Here, we use magic tricks in an fMRI experiment to investigate neural responses to violations of core assumptions held by humans about the world. We showed participants naturalistic videos of three types of magic tricks, involving objects appearing, changing color, or disappearing, along with control videos without any violation of expectation. Importantly, the same videos were presented with and without prior knowledge about the tricks' explanation. Results revealed generic responses in frontal and parietal areas, together with responses specific to each of the three trick types in posterior sensory areas. A subset of these regions, the midline areas of the default mode network (DMN), showed surprise activity that depended on prior knowledge. Equally, sensory regions showed sensitivity to prior knowledge, reflected in differing decoding accuracies. These results suggest a hierarchy of surprise signals involving generic processing of violation of expectations in frontal and parietal areas with concurrent surprise signals in sensory regions that are specific to the processed features.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6740503/pdf/",
"has_pmc": true
},
{
"pmid": "39792001",
"title": "Mapping patterns of thought onto brain activity during movie-watching.",
"journal": "eLife",
"year": "2025",
"authors": [
"RS Wallace",
"B Mckeown",
"I Goodall-Halliwell"
],
"doi": "10.7554/eLife.74011",
"pmc_id": "PMC8937216",
"abstract": "Movie-watching is a central aspect of our lives and an important paradigm for understanding the brain mechanisms behind cognition as it occurs in daily life. Contemporary views of ongoing thought argue that the ability to make sense of events in the 'here and now' depend on the neural processing of incoming sensory information by auditory and visual cortex, which are kept in check by systems in association cortex. However, we currently lack an understanding of how patterns of ongoing thoughts map onto the different brain systems when we watch a film, partly because methods of sampling experience disrupt the dynamics of brain activity and the experience of movie-watching. Our study established a novel method for mapping thought patterns onto the brain activity that occurs at different moments of a film, which does not disrupt the time course of brain activity or the movie-watching experience. We found moments when experience sampling highlighted engagement with multi-sensory features of the film or highlighted thoughts with episodic features, regions of sensory cortex were more active and subsequent memory for events in the movie was better-on the other hand, periods of intrusive distraction emerged when activity in regions of association cortex within the frontoparietal system was reduced. These results highlight the critical role sensory systems play in the multi-modal experience of movie-watching and provide evidence for the role of association cortex in reducing distraction when we watch films.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8937216/pdf/",
"has_pmc": true
},
{
"pmid": "40800785",
"title": "An embodied perspective: Angular gyrus and precuneus decode selfhood in memories of naturalistic events.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"HM Iriye",
"PL St Jacques"
],
"doi": "10.1016/j.brs.2017.02.011",
"pmc_id": "PMC5434245",
"abstract": "While we often assume that memory encoding occurs from an in-body (first-person) perspective, out-of-body experiences demonstrate that we can form memories from a third-person perspective. This phenomenon provides a distinctive opportunity to examine the interaction between embodiment and visual perspective during encoding, and how this interplay shapes the recall of past events. Participants formed memories for naturalistic events following a manipulation of their sense of embodiment from in-body and out-of-body perspectives and recalled them during functional scanning. Region of interest multivariate analyses examined how the angular gyrus, precuneus, and hippocampus reflected visual perspective, embodiment, and their interaction during remembering. Patterns of activity during retrieval in the left angular gyrus and bilateral precuneus predicted embodiment on its own separated from visual perspective. In contrast, we observed only inconclusive evidence that these posterior parietal regions predicted visual perspective independent of embodiment. While the left angular gyrus distinguished between in-body and out-of-body perspectives during the retrieval of events associated with both strong and weak embodiment, decoding accuracy predicting visual perspective was only above chance for events encoded with strong embodiment in the precuneus bilaterally. Our results suggest that the contribution of posterior parietal regions in establishing visual perspectives within memories is tightly interconnected with embodiment. Encoding events from an embodied in-body perspective compared with embodied out-of-body perspective led to higher memory accuracy following repeated retrieval. These results elucidate how fundamental feelings of being located in and experiencing the world from our own body's perspective are integrated within memory.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC5434245/pdf/",
"has_pmc": true
},
{
"pmid": "40593277",
"title": "Functional connectivity of sensory and executive function networks during a story listening task is related to parent/child interaction during joint reading: a functional MRI diffusion map study.",
"journal": "Brain imaging and behavior",
"year": "2025",
"authors": [
"TH Kraus",
"M Bebar",
"A Jacobson"
],
"doi": "10.1177/00131640021970466",
"pmc_id": "PMC2763568",
"abstract": "The quality of parent-child interaction during shared reading (\"shared reading quality\") is strongly linked to cognitive and relational benefits. However, the relationship between shared reading quality and activation and synchronization of reading-related brain networks has not yet been characterized. The current study involved 22 4-year-old girls who completed functional MRI including a validated stories listening task, and a primary parent. Prior to MRI, video observation of the parent and child reading together was conducted and later coded using a standardized scoring form quantifying parent-child verbal and nonverbal interaction. Behavioral measures included demographics and a maternal depression scale. To achieve this goal, fMRI stories-listening data was utilized to create a diffusion maps algorithm and then to classify the level of parent-child interaction during the shared reading observation. The algorithm clustered children with higher parent-child engagement scores with fMRI diffusion patterns in regions of the brain known to support reading. This study establishes proof-of-concept that applying this diffusion maps algorithm to brain functional connectivity data can reliably predict parent-child interaction during shared book reading. It also suggests that an algorithmic approach may be a novel, data-driven means to quantify parent-child interaction in different contexts (e.g., reading, play) and populations.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC2763568/pdf/",
"has_pmc": true
},
{
"pmid": "41189416",
"title": "Functional connectivity of semantic and default mode networks during narrative comprehension.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"M Thye",
"J Ding",
"P Hoffman"
],
"doi": "10.1037/0033-2909.123.2.162",
"pmc_id": "PMC8653780",
"abstract": "Understanding narratives requires at least transient access to the semantic system, to decode incoming content, and prolonged access to the default mode network to maintain and manipulate the narrative model. Subregions within the integrative semantic hubs in bilateral anterior temporal lobe appear differentially sensitive to the need to rapidly decode external input (exogenous processing) versus reflecting on context stored in the narrative model (endogenous processing). The latter is most consistently reported in the middle temporal gyrus portion of the hub, suggesting that this region serves as a critical hinge point, dynamically interacting with the default mode network to facilitate endogenous processing. The present study investigated this by characterizing the functional connectivity profiles of anterior temporal lobe subregions during movie-viewing and examining content-evoked changes in these profiles. Compared to other anterior temporal lobe subregions, middle temporal gyrus was more functionally connected to the default mode network, and these connections were strengthened during moments with limited incoming information, providing viewers with a chance to reflect on the content. Rather than being functionally distinct networks, the semantic and default mode systems dynamically interact to facilitate reflection or endogenous semantic processing. Future work should further characterize how neural systems dynamically shift from integrated to segregated states in response to everyday processing demands.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8653780/pdf/",
"has_pmc": true
},
{
"pmid": "39592236",
"title": "Optimal Estimation of Local Motion-in-Depth with Naturalistic Stimuli.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"D Herrera-Esposito",
"J Burge"
],
"doi": "10.1113/jphysiol.1974.sp010736",
"pmc_id": "PMC1330664",
"abstract": "Estimating the motion of objects in depth is important for behavior and is strongly supported by binocular visual cues. To understand both how the brain should estimate motion in depth and how natural constraints shape and limit performance in two local 3D motion tasks, we develop image-computable ideal observers from a large number of binocular video clips created from a dataset of natural images. The observers spatiotemporally filter the videos and nonlinearly decode 3D motion from the filter responses. The optimal filters and decoder are dictated by the task-relevant image statistics and are specific to each task. Multiple findings emerge. First, two distinct filter subpopulations are spontaneously learned for each task. For 3D speed estimation, filters emerge for processing either changing disparities over time or interocular velocity differences, cues that are used by humans. For 3D direction estimation, filters emerge for discriminating either left-right or toward-away motion. Second, the filter responses, conditioned on the latent variable, are well-described as jointly Gaussian, and the covariance of the filter responses carries the information about the task-relevant latent variable. Quadratic combination is thus necessary for optimal decoding, which can be implemented by biologically plausible neural computations. Finally, the ideal observer yields nonobvious-and in some cases counterintuitive-patterns of performance like those exhibited by humans. Important characteristics of human 3D motion processing and estimation may therefore result from optimal information processing in the early visual system.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC1330664/pdf/",
"has_pmc": true
},
{
"pmid": "40632275",
"title": "The effects of sex and age on movie-watching functional connectivity and movie clip classification.",
"journal": "Brain structure & function",
"year": "2025",
"authors": [
"C Yang",
"BB Biswal",
"P Wang"
],
"doi": "10.1016/j.tics.2016.10.005",
"pmc_id": "PMC8933248",
"abstract": "Functional connectivity (FC) is a key tool for understanding the complex interactions within the human brain, highlighting connections between various regions. This study delves into the multifaceted influences shaping functional magnetic resonance imaging FC patterns during movie watching, focusing on the effects of sex, age, and movie clip. Leveraging the Human Connectome Project dataset, we systematically examine FC patterns elicited during movie watching. Notably, sex-specific variations in FC are observed, with females exhibiting heightened FC within visual, limbic, and default mode networks, while males display predominant intra-network connectivity within somatomotor and attention networks. Age-related variations further manifest, revealing FC increases with age in early adulthood (21-35 years old) within some specific networks. Moreover, our investigation unveils the profound influence of movie clips on FC patterns, with significant interactions observed between clips, sex, and age. Feature selection using the Average Cross-Session Correlation method highlights FC as distinct fingerprints of clips, and the Support Vector Machine classifier shows high accuracy (Accuracy > 0.9) when using these features. Our findings underscore the importance of considering individual demographic factors and external stimuli in understanding neural connectivity dynamics during movie-watching, with implications for both basic neuroscience research and clinical neuroimaging applications.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8933248/pdf/",
"has_pmc": true
},
{
"pmid": "40042099",
"title": "The Relations Among Anxiety, Movie-Watching, and in-Scanner Motion.",
"journal": "Human brain mapping",
"year": "2025",
"authors": [
"PA Kirk",
"P Qamar",
"A Zugman"
],
"doi": "10.1093/jmt/47.4.335",
"pmc_id": "PMC11544371",
"abstract": "Movie-watching fMRI has emerged as a theoretically viable platform for studying neurobiological substrates of affective states and emotional disorders such as pathological anxiety. However, using anxiety-inducing movie clips to probe relevant states impacted by psychopathology could risk exacerbating in-scanner movement, decreasing signal quality/quantity and thus statistical power. This could be especially problematic in target populations such as children who typically move more in the scanner. Consequently, we assessed: (1) the extent to which an anxiety-inducing movie clip altered in-scanner data quality (movement, censoring, and DVARS) in a pediatric sample with and without anxiety disorders (n = 78); and (2) investigated interactions between anxiety symptoms and movie-attenuated motion in a highly powered, transdiagnostic pediatric sample (n = 2058). Our results suggest anxiogenic movie-watching in fact reduces in-scanner movement compared to resting-state, increasing the quantity/quality of data. In one measure, pathological anxiety appeared to impact movie-attenuated motion, but the effect was small. Given potential boosts to data quality, future developmental neuroimaging studies of anxiety may benefit from the use of movie paradigms.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11544371/pdf/",
"has_pmc": true
},
{
"pmid": "41004228",
"title": "Oxytocin and vasopressin enhance social pain empathy via common and distinct of neural expressions, genetic pathways, and networks.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"year": "2025",
"authors": [
"X Zhang",
"Q Liu",
"C Liu"
],
"doi": "10.6084/m9.figshare.27860538.v1",
"pmc_id": "PMC3516702",
"abstract": "Witnessing social distress of others evokes social pain empathy, a complex process engaging cognitive, affective, and motivational dimensions. Although hypothalamic neuropeptides oxytocin (OXT) and arginine vasopressin (AVP) are known to modulate social function, their respective contributions to the process of social pain empathy have not been systematically characterized. To address this, we employed a multimethod approach, combining naturalistic fMRI, functional decoding, gene expression analysis, and pharmacological modulation using intranasal administration of OXT (24 IU) or AVP (20 IU) in a cohort of 163 participants. Our findings indicated that both OXT and AVP significantly enhanced pain empathy compared to placebo, with overlapping yet distinct neurofunctional and genetic modulation patterns. Specially, both neuropeptides engaged a shared perception-cognition-emotion network, including frontal regions, the insula, superior temporal sulcus, and parahippocampal gyrus. Crucially, they exhibited divergent mechanistic profiles: OXT preferentially influenced resting-state connectivity and perceptional-visual processing areas, while AVP exerted stronger modulation on perceptional-execution circuits. These differential effects aligned with their unique receptor expression patterns and interactions with distinct genetic systems. By delineating how OXT and AVP shape the multidimensional nature of social pain empathy, our findings provide a neurobiological framework for understanding these processes and offer potential pathways for targeted interventions in social cognition disorders.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3516702/pdf/",
"has_pmc": true
},
{
"pmid": "41413049",
"title": "Motion-corrected eye tracking improves gaze accuracy during visual fMRI experiments.",
"journal": "Nature communications",
"year": "2025",
"authors": [
"J Park",
"JY Jeon",
"R Kim"
],
"doi": "10.1093/cercor/bhu217",
"pmc_id": "PMC12848023",
"abstract": "Human eye movements are essential for understanding cognition, yet achieving high-precision eye tracking in functional Magnetic Resonance Imaging (fMRI) remains challenging. Even slight head shifts from the initial calibration position can introduce drift in eye tracking data, leading to substantial gaze inaccuracies. To address this, we present Motion-Corrected Eye Tracking (MoCET), which corrects drift using head motion parameters derived from fMRI preprocessing. MoCET requires no additional hardware and can be applied retrospectively to existing datasets. We show that it outperforms conventional detrending methods with respect to accuracy of gaze estimation and offers higher spatial and temporal precision compared to magnetic resonance-based eye tracking approaches. By overcoming a key limitation in integrating eye tracking with fMRI, MoCET enables precise investigations of naturalistic vision and cognition in fMRI research.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12848023/pdf/",
"has_pmc": true
},
{
"pmid": "40474503",
"title": "Functional reconfiguration between rest and movie watching relates to theory-of-mind performance among young and older adults.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"C Hughes",
"RC French",
"R Betzel"
],
"doi": "10.1007/s11357-023-01008-9",
"pmc_id": "PMC10828367",
"abstract": "Functional connectivity among macroscale brain networks is minimally modified across rest and task states, suggesting a shared functional architecture supporting efficient neural processing. The extent of reconfiguration (ie change between states), moreover, shows individual variation, with less reconfiguration generally being associated with better task performance. Older adults reconfigure more than young adults when completing goal-directed tasks with known age deficits. Less is known about task states that more closely mirror the complexity of daily life. Thus, we examined reconfiguration between rest and passive viewing of a mockumentary television show, involving richly contextualized social interactions, among young (18 to 35 years; N = 101) and older (61 to 92 years; N = 83) adults. Then, we related reconfiguration to participants' accurate understanding of those social interactions (theory of mind) on a novel task conducted outside of the scanner. Consistent with prior work, older adults exhibited greater cortical reconfiguration and worse theory-of-mind performance compared to young adults. Greater reconfiguration related to worse theory-of-mind performance, and the default and frontoparietal networks most strongly contributed to this association. These findings provide greater insight into how reduced neural specializations with age disrupt social cognition even in the absence of an explicit task.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10828367/pdf/",
"has_pmc": true
},
{
"pmid": "40623840",
"title": "Conceptual Knowledge Shapes the Neural Representations of Learned Faces in Non-Visual Regions of the Brain.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"KN Noad",
"DM Watson",
"TJ Andrews"
],
"doi": "10.1177/0963721416688114",
"pmc_id": "PMC7233541",
"abstract": "When we encounter people in real life, increased visual experience with their face is accompanied by an accumulation of conceptual knowledge about them. This conceptual knowledge has been shown to play an important role in face recognition. However, the extent to which conceptual knowledge influences neural responses to faces in visual or non-visual regions of the brain is not clear. To address this question, participants (male and female) learned faces in a naturalistic viewing paradigm in which conceptual information was modulated by presenting a movie to participants in either its original sequence or a scrambled sequence. Although participants in both groups had the same overall perceptual experience, this manipulation had a significant effect on the conceptual understanding of events. After a delay, participants viewed a new movie featuring the previously learned faces while neural activity was measured using fMRI. No significant differences were observed between the Original and Scrambled groups in core face-selective regions of the visual brain. This aligns with the fact that overall exposure to faces was consistent across groups, ensuring that our manipulation did not impact visual processing of faces. In contrast, differences between the groups were evident within a network of regions that are typically associated with processing person knowledge. This network of regions was also able to discriminate the identity of the key characters based on the response to the faces. These findings provide important insights into the level of neural processing at which conceptual knowledge influences familiar face recognition during natural viewing.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7233541/pdf/",
"has_pmc": true
},
{
"pmid": "41062767",
"title": "Associations between fMRI signal amplitude, hemispheric asymmetry, and task performance.",
"journal": "Communications biology",
"year": "2025",
"authors": [
"D Tomasi",
"ND Volkow"
],
"doi": "10.1016/j.neuroimage.2013.05.039",
"pmc_id": "PMC3720828",
"abstract": "Interhemispheric asymmetry is a core feature of human brain organization, yet its functional relevance across cognitive tasks remains incompletely understood. Using data from 989 healthy adults, we examined patterns of functional asymmetry and their relationship to bilateral fMRI signal amplitude and task performance across seven tasks: motor, language, social cognition, relational processing, working memory, gambling, and emotion. An fMRI-derived asymmetry index was computed across 17 task epochs and mapped onto the cortical surface. Here we show that both fMRI signal amplitude and asymmetry were positively associated with task accuracy across multiple networks and tasks epochs. These associations were strongest in language, frontoparietal, and dorsal attention networks during high-demand tasks, such as story comprehension, relational processing, and working memory. Partial least squares regression revealed that amplitude was a more robust predictor of task accuracy than asymmetry. These findings suggest that greater neural activation drives stronger hemispheric differentiation and supports cognitive performance.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC3720828/pdf/",
"has_pmc": true
},
{
"pmid": "41402333",
"title": "Processing of natural scenes in the human pulvinar.",
"journal": "Nature communications",
"year": "2025",
"authors": [
"DR Guest",
"EJ Allen",
"KN Kay"
],
"doi": "10.1093/cercor/bhu277",
"pmc_id": "PMC4585523",
"abstract": "Theories of high-level visual processing and object recognition have typically focused on ventral visual cortex, often overlooking potential contributions of subcortical structures. The pulvinar, via extensive connections with visual cortex, is well-positioned to play a role in high-level vision. Here, we investigated how the pulvinar represents visual information using a high-resolution 7 T fMRI dataset of responses to tens of thousands of natural scenes. Encoding models targeting different stimulus features revealed a pulvinar region selective for bodies and faces presented in the contralateral visual hemifield. Complementary model-free analyses demonstrated that this region is co-active with body- and face-selective cortical areas during natural scene viewing. These findings challenge cortico-centric models of object vision by demonstrating that principles of cortical organization, including functional clustering and hierarchical organization, also manifest in subcortex. Moreover, they highlight the value of using naturalistic stimuli to probe visual function.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4585523/pdf/",
"has_pmc": true
},
{
"pmid": "40550920",
"title": "Hippocampal systems for event encoding and sequencing during ongoing narrative comprehension.",
"journal": "Communications biology",
"year": "2025",
"authors": [
"J Park",
"H Song",
"WM Shim"
],
"doi": "10.5281/zenodo.15597906",
"pmc_id": "PMC6095216",
"abstract": "Narrative comprehension requires encoding individual events and sequencing them into coherent structures. This study demonstrates how the hippocampus contributes to these processes during ongoing narrative processing. Participants viewed a temporally scrambled movie and subsequently recounted its inferred original story during functional magnetic resonance imaging (fMRI) scans. Content encoding and event sequencing abilities were assessed by comparing semantic similarity and temporal order between movie annotations and recall. Functional connectivity between the hippocampus and ventromedial prefrontal cortex (vmPFC) predicted sequencing ability during moments when past and present information are integrated, identified through pre-defined narrative structures and data-driven language models. Conversely, hippocampus-posterior medial cortex (PMC) connectivity predicted content encoding abilities following event boundaries. These findings reveal two distinct hippocampus-centered memory systems in narrative processing: the hippocampus-PMC system for event encoding and the hippocampus-vmPFC system for their integration into coherent narratives.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6095216/pdf/",
"has_pmc": true
},
{
"pmid": "40843025",
"title": "How much is \"enough\"? Considerations for functional connectivity reliability in pediatric naturalistic fMRI.",
"journal": "Imaging neuroscience (Cambridge, Mass.)",
"year": "2025",
"authors": [
"S Rai",
"KJ Godfrey",
"K Graff"
],
"doi": "10.1002/hbm.25736",
"pmc_id": "PMC8837589",
"abstract": "Reliable functional connectivity (FC) measurements are important for robust neuroimaging findings, yet pediatric functional magnetic resonance imaging (fMRI) faces unique challenges due to head motion and bias toward shorter scans. Passive viewing conditions during fMRI offer advantages for scanning pediatric populations, but FC reliability under these conditions remains underexplored. Here, we used precision fMRI data collected across three passive viewing conditions to directly compare FC reliability profiles between 25 pre-adolescent children and 25 adults, with each participant providing over 2.8 hours of data over 4 sessions. We found that FC test-retest correlations increased asymptotically with scan length, with children requiring nearly twice the post-censored scan time (24.6 minutes) compared with adults (14.4 minutes) to achieve comparable reliability, and that this effect was only partly attributable to head motion. Reliability differences between lower-motion adults and higher-motion children were spatially non-uniform and largest in ventral anterior temporal and frontal regions. While averaging features within functional networks improved intraclass correlation coefficient (ICC) reliability, values for higher-motion children remained in the poor-to-fair ICC range even with 24 minutes of data. Of note, we observed substantial increases in edge-wise ICC between 24 and 54 minutes of data. Viewing conditions with greater engagement reduced head motion in children but had lower FC reliability than less engaging \"low-demand\" videos, suggesting complex state- or condition-related trade-offs. These findings have important implications for developmental neuroimaging study design, particularly for higher motion pediatric populations.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8837589/pdf/",
"has_pmc": true
},
{
"pmid": "40497019",
"title": "Closing the diagnostic gap: A narrative review of recent advances in functional MRI diagnostics in spinal cord injury.",
"journal": "Brain & spine",
"year": "2025",
"authors": [
"CJ Entenmann",
"K Kersting",
"P Vajkoczy"
],
"doi": "10.1016/j.bas.2025.104283",
"pmc_id": "PMC4359126",
"abstract": "INTRODUCTION: Conventional MRI (T1 and T2-weighted sequences) is the standard for diagnosing spinal cord injuries but often lacks specificity, showing limited correlation with microstructural changes and function. This creates a diagnostic gap, especially in patients with mild or ambiguous symptoms, delaying early intervention. RESEARCH QUESTION: Can advanced MRI techniques-such as quantitative MRI (qMRI), functional MRI (fMRI), Magnetic Resonance Spectroscopy (MRS), and Transmagnetic Stimulation (TMS)-address the limitations of conventional MRI by providing enhanced diagnostic metrics and biomarkers of spinal cord integrity? MATERIAL AND METHODS: This study reviews advanced MRI modalities and their potential to provide quantifiable insights into spinal cord microstructure and function. It also explores the role of artificial intelligence (AI) in analyzing complex datasets to support more comprehensive diagnostics. RESULTS: Advanced MRI techniques show promise in improving diagnostic accuracy and enabling individualized prognostic assessments. Parameters specific to each modality could serve as biomarkers for injury extent and neurological recovery, supporting their potential as clinical endpoints in therapy trials. DISCUSSION AND CONCLUSION: These advanced imaging techniques, combined with AI for data integration, offer a transformative potential for personalized diagnostics in spinal cord injury. Yet, significant technical and validation challenges remain, requiring large, multicenter studies to confirm their effectiveness and enable clinical application. Successfully addressing these challenges could close the diagnostic gap, optimize patient outcomes, and redefine spinal cord injury management.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC4359126/pdf/",
"has_pmc": true
},
{
"pmid": "41250621",
"title": "Mother-child dyadic interactions shape the developing social brain and Theory of Mind in young children.",
"journal": "eLife",
"year": "2025",
"authors": [
"L Li",
"J Xiao",
"W Zhao"
],
"doi": "10.3724/SP.J.1041.2008.00571",
"pmc_id": "PMC5521249",
"abstract": "Social cognition develops through a complex interplay between neural maturation and environmental factors, yet the neurobehavioral mechanisms underlying this process remain unclear. Using a naturalistic fMRI paradigm, we investigated the effects of age and parental caregiving on social brain development and Theory of Mind (ToM) in 34 mother-child dyads. The functional maturity of social brain networks was positively associated with age, while mother-child neural synchronization during movie viewing was related to dyadic relationship quality. Crucially, parenting and child factors interactively shaped social cognition outcomes, mediated by ToM abilities. Our findings demonstrate the dynamic interplay of neurocognitive development and interpersonal synchrony in early childhood social cognition, and provide novel evidence for neurodevelopmental plasticity and reciprocal determinism. This integrative approach, bridging brain, behavior, and parenting environment, advances our understanding of the complex mechanisms shaping social cognition. The insights gained can inform personalized interventions promoting social competence, emphasizing the critical importance of nurturing parental relationships in facilitating healthy social development.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC5521249/pdf/",
"has_pmc": true
},
{
"pmid": "39835965",
"title": "Tripartite organization of brain state dynamics underlying spoken narrative comprehension.",
"journal": "eLife",
"year": "2025",
"authors": [
"L Liu",
"J Jiang",
"H Li"
],
"doi": "10.1007/s11357-023-01008-9",
"pmc_id": "PMC10828367",
"abstract": "Speech comprehension involves the dynamic interplay of multiple cognitive processes, from basic sound perception, to linguistic encoding, and finally to complex semantic-conceptual interpretations. How the brain handles the diverse streams of information processing remains poorly understood. Applying Hidden Markov Modeling to fMRI data obtained during spoken narrative comprehension, we reveal that the whole brain networks predominantly oscillate within a tripartite latent state space. These states are, respectively, characterized by high activities in the sensory-motor (State #1), bilateral temporal (State #2), and default mode networks (DMN; State #3) regions, with State #2 acting as a transitional hub. The three states are selectively modulated by the acoustic, word-level semantic, and clause-level semantic properties of the narrative. Moreover, the alignment with both the best performer and the group-mean in brain state expression can predict participants' narrative comprehension scores measured from the post-scan recall. These results are reproducible with different brain network atlas and generalizable to two datasets consisting of young and older adults. Our study suggests that the brain underlies narrative comprehension by switching through a tripartite state space, with each state probably dedicated to a specific component of language faculty, and effective narrative comprehension relies on engaging those states in a timely manner.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10828367/pdf/",
"has_pmc": true
},
{
"pmid": "40046341",
"title": "The neural characteristics influencing literacy outcome in children with cochlear implants.",
"journal": "Brain communications",
"year": "2025",
"authors": [
"N Koirala",
"J Manning",
"S Neumann"
],
"doi": "10.1093/braincomms/fcaf086",
"pmc_id": "PMC11154148",
"abstract": "Early hearing intervention in children with congenital hearing loss is critical for improving auditory development, speech recognition and both expressive and receptive language, which translates into better educational outcomes and quality of life. In children receiving hearing aids or cochlear implants, both adaptive and potentially maladaptive neural reorganization can mitigate higher-level functions that impact reading. The focus of the present study was to dissect the neural underpinnings of the reading networks in children with cochlear implants and assess how these networks mediate the reading ability in children with cochlear implants. Cortical activity was obtained using naturalistic stimuli from 75 children (50 cochlear implant recipients, aged 7-17, and 25 age-matched children with typical hearing) using functional near-infrared spectroscopy. Assessment of basic reading skill was completed using the Reading Inventory and Scholastic Evaluation. We computed directed functional connectivity of the haemodynamic activity in reading-associated anterior and posterior brain regions using the time-frequency causality estimation method known as temporal partial directed coherence. The influence of the cochlear implant-related clinical measures on reading outcome and the extent to which neural connectivity mediated these effects were examined using structural equation modelling. Our findings reveal that the timing of intervention (e.g. age of first cochlear implants, age of first hearing aid) in children with cochlear implants significantly influenced their reading ability. Furthermore, reading-related processes (word recognition and decoding, vocabulary, morphology and sentence processing) were substantially mediated by the directed functional connectivity within reading-related neural circuits. Notably, the impact of these effects differed across various reading skills. Hearing age, defined as the age at which a participant received adequate access to sound, and age of initial implantation emerged as robust predictors of reading proficiency. The current study is one of the first to identify the influence of neural characteristics on reading outcomes for children with cochlear implants. The findings emphasize the importance of the duration of deafness and early intervention for enhancing outcomes and strengthening neural network connections. However, the neural evidence further suggested that such positive influences cannot fully offset the detrimental impact of early auditory deprivation. Consequently, additional, perhaps more specialized, interventions might be necessary to maximize the benefits of early prosthetic hearing intervention.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11154148/pdf/",
"has_pmc": true
},
{
"pmid": "40047799",
"title": "Movies reveal the fine-grained organization of infant visual cortex.",
"journal": "eLife",
"year": "2025",
"authors": [
"CT Ellis",
"TS Yates",
"MJ Arcaro"
],
"doi": "10.1093/cercor/bhad327",
"pmc_id": "PMC9618143",
"abstract": "Studying infant minds with movies is a promising way to increase engagement relative to traditional tasks. However, the spatial specificity and functional significance of movie-evoked activity in infants remains unclear. Here, we investigated what movies can reveal about the organization of the infant visual system. We collected fMRI data from 15 awake infants and toddlers aged 5-23 months who attentively watched a movie. The activity evoked by the movie reflected the functional profile of visual areas. Namely, homotopic areas from the two hemispheres responded similarly to the movie, whereas distinct areas responded dissimilarly, especially across dorsal and ventral visual cortex. Moreover, visual maps that typically require time-intensive and complicated retinotopic mapping could be predicted, albeit imprecisely, from movie-evoked activity in both data-driven analyses (i.e. independent component analysis) at the individual level and by using functional alignment into a common low-dimensional embedding to generalize across participants. These results suggest that the infant visual system is already structured to process dynamic, naturalistic information and that fine-grained cortical organization can be discovered from movie data. How babies see the world is a mystery. They cannot share their experiences, and adults cannot recall this time. Clever experimental methods are needed to understand sensory processing in babies' brains and how variations from adults could cause them to have different experiences. However, finding ways to study infant brain structure and function has challenged scientists. Babies cannot complete many cognitive tasks used to assess adult brain activity. It can also be difficult to use imaging tools like magnetic resonance imaging (MRI) that require individuals to lay still for extended periods, which can be challenging for infants who are often wiggly and have short attention spans. As a result, many questions remain unanswered about infant brain organization and function. Recent technological advances have made it easier to study infant brain activity. Scientists have developed approaches allowing infants to watch a movie while being comfortably positioned in an MRI machine. Infants and toddlers will often happily watch a film for minutes at a time, enabling scientists to observe how their brains respond to what they see on the screen. Ellis et al. used this approach to assess the organization of the visual system in the brains of 15 infants while they watched movies during functional MRI. The researchers compared the infant scans with scans of adult brains who watched the same film, which revealed that babies’ brain activity is surprisingly structured and similar to that of adults. Moreover, the organization of the adult brain could predict the organization of the infant brain. Ellis et al. show that scanning infants while they watch movies can be a valuable way to study their brain activity. The experiments reveal important similarities in adult and infant visual processing, helping to identify the foundation on which visual development rests. The movie-watching experiments may also provide a model for scientists to study other types of infant perception and cognition. Movies can help scientists compare brain activity in typically developing infants to those with neurodevelopmental conditions, which could one day help clinicians create new avenues for diagnosis or treatment.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9618143/pdf/",
"has_pmc": true
},
{
"pmid": "39592232",
"title": "Multivariate Pattern Analysis of EEG Reveals Neural Mechanism of Naturalistic Target Processing in Attentional Blink.",
"journal": "The Journal of neuroscience : the official journal of the Society for Neuroscience",
"year": "2025",
"authors": [
"M Jahanian",
"MF Joanisse",
"B Wang"
],
"doi": "10.3758/s13423-021-01973-2",
"pmc_id": "PMC6397950",
"abstract": "The human brain has inherent limitations in consciously processing visual information. When individuals monitor a rapid sequence of images for detecting two targets, they often miss the second target (T2) if it appears within a short time frame of 200-500 ms after the first target (T1), a phenomenon known as the attentional blink (AB). The neural mechanism behind the AB remains unclear, largely due to the use of simplistic visual items such as letters and digits in conventional AB experiments, which differ significantly from naturalistic vision. This study employs advanced multivariate pattern analysis (MVPA) of human electroencephalography (EEG) data (including 17 females and 18 males) to explore the neural representations associated with target processing within a naturalistic paradigm under conditions where AB does or does not occur. Our MVPA analysis successfully decoded the identity of target images from EEG data. Moreover, in the AB condition, characterized by a limited time between targets, T1 processing coincided with T2 processing, resulting in the suppression of late representational markers of both T1 and T2. Conversely, in the condition with longer inter-target interval, neural representations endured for a longer duration. These findings suggest that the AB can be attributed to the suppression of neural representations in the later stages of target processing.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6397950/pdf/",
"has_pmc": true
},
{
"pmid": "40607906",
"title": "Intrinsic dynamic shapes responses to external stimulation in the human brain.",
"journal": "eLife",
"year": "2025",
"authors": [
"M Nentwich",
"M Leszczynski",
"CE Schroeder"
],
"doi": "10.1038/s41583-020-0262-x",
"pmc_id": "PMC7334830",
"abstract": "Sensory stimulation of the brain reverberates in its recurrent neural networks. However, current computational models of brain activity do not separate immediate sensory responses from this intrinsic dynamic. We apply a vector-autoregressive model with external input (VARX), combining the concepts of 'functional connectivity' and 'encoding models', to intracranial recordings in humans. This model captures the extrinsic effect of the stimulus and separates that from the intrinsic effect of the recurrent brain dynamic. We find that the intrinsic dynamic enhances and prolongs the neural responses to scene cuts, eye movements, and sounds. Failing to account for these extrinsic inputs leads to spurious recurrent connections that govern the intrinsic dynamic. We also find that the recurrent connectivity during rest is reduced during movie watching. The model shows that an external stimulus can reduce intrinsic noise. It also shows that sensory areas have mostly outward, whereas higher-order brain areas have mostly incoming connections. We conclude that the response to an external audiovisual stimulus can largely be attributed to the intrinsic dynamic of the brain, already observed during rest.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7334830/pdf/",
"has_pmc": true
},
{
"pmid": "39422490",
"title": "Extending insights from LeDoux: using movies to study subjective, clinically meaningful experiences in neuroscience.",
"journal": "Cerebral cortex (New York, N.Y. : 1991)",
"year": "2025",
"authors": [
"PA Kirk",
"DS Pine",
"K Kircanski"
],
"doi": "10.1002/(SICI)1099-0992(199607)26:4<557::AID-EJSP769>3.0.CO;2-4",
"pmc_id": "PMC6969259",
"abstract": "Neuroscience research with public health relevance to emotional disorders examines brain-behavior relations. Joe LeDoux's legacy advances these efforts in ways that remain truly unique. While recognized for his basic science research, he also inspires applied researchers, guiding an agenda for clinical scientists: understanding the pathophysiology of altered subjective experiences in emotional disorders. For brain imaging, movie-watching approaches help clinicians realize this agenda due to movies' relative strength in evoking rich, meaningful subjective experiences. Here, we describe methodological advances in movie-watching paradigms that might sustain LeDoux's impact by facilitating the discovery of neural mechanisms generating complex emotional responses. Of note, while linking subjective emotion to pathophysiology is a first step, innovations in movie-watching designs, especially involving therapeutic techniques for emotional disorders, can boost clinical application. Leveraging research on pathophysiology to generate novel therapy reflects the clinical legacy sustained through Joe LeDoux's rousing career.",
"pdf_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC6969259/pdf/",
"has_pmc": true
},
{
"pmid": "40998765",
"title": "Fragmentation and multithreading of experience in the default-mode network.",
"journal": "Nature communications",
"year": "2025",
"authors": [
"F Yazin",
"G Majumdar",
"N Bramley"
],
"doi": "10.1038/s41467-019-08519-0",
"pmc_id": "PMC6355898",