-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpapers_missed_web.json
More file actions
1410 lines (1410 loc) · 53.8 KB
/
papers_missed_web.json
File metadata and controls
1410 lines (1410 loc) · 53.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Between-movie variability severely limits generalizability of naturalistic neuroimaging",
"authors": null,
"year": "2024",
"venue": "bioRxiv",
"doi": "10.1101/2024.12.03.626542",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2024.12.03.626542v2",
"abstract_snippet": "fMRI from 112 subjects watching eight animated movies; ISC varies across movies and regions; highest ISC in regions with greatest between-movie variability.",
"source_hop": 1,
"relevance_reason": "Critical methodology paper on ISC generalizability across different naturalistic movies",
"priority": "high"
},
{
"title": "Timing Is Everything: Temporal Dynamics of BOLD Responses to Naturalistic Features in Movie Watching",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.11.07.687226",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.11.07.687226v1",
"abstract_snippet": "Three movie-watching datasets; cross-correlation of visual luminance/contrast, pitch, pupil, theory-of-mind ratings with BOLD.",
"source_hop": 1,
"relevance_reason": "Temporal dynamics of BOLD during naturalistic movie features",
"priority": "high"
},
{
"title": "Brain-AI Alignment in Naturalistic Movies",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.64898/2025.12.03.692164",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2025.12.03.692164v1",
"abstract_snippet": "Multimodal LLM (Gemini) as automated semantic annotator; HCP movie dataset, 293 clips, 360 parcels; prediction accuracy linked to fluid intelligence.",
"source_hop": 1,
"relevance_reason": "Novel brain-AI alignment using LLM annotations of naturalistic movies",
"priority": "high"
},
{
"title": "View, engage, predict: enhancing brain-behavior mapping with naturalistic movie-watching fMRI",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.07.28.666907",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.07.28.666907v1",
"abstract_snippet": "DNN framework predicting cognitive scores/sex from FC during movies; prediction accuracy linked to ISC and face/voice duration.",
"source_hop": 1,
"relevance_reason": "Brain-behavior prediction from naturalistic movie fMRI using deep learning",
"priority": "high"
},
{
"title": "A neuroimaging database combining movie-watching, eye-tracking, sensorimotor mapping, and cognitive tasks",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.09.25.678556",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.09.25.678556v2.full",
"abstract_snippet": "High-quality 3T fMRI from 40 participants; full-length movies + synchronized eye-tracking + physiology.",
"source_hop": 1,
"relevance_reason": "Multimodal naturalistic neuroimaging database",
"priority": "high"
},
{
"title": "Frontoparietal functional dedifferentiation during naturalistic movie watching among older adults at risk of emotional vulnerability",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.05.12.653474",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.05.12.653474v1.full",
"abstract_snippet": "Age-related frontoparietal dedifferentiation during naturalistic movie watching; emotional vulnerability in older adults.",
"source_hop": 1,
"relevance_reason": "Aging brain + naturalistic fMRI + emotion",
"priority": "medium"
},
{
"title": "Reduced inter-subject functional connectivity during movies in autism: Replicability across cross-national fMRI datasets",
"authors": null,
"year": "2025",
"venue": "bioRxiv / Molecular Autism",
"doi": "10.1101/2025.02.04.636405",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.02.04.636405v2",
"abstract_snippet": "Cross-national ISFC replication in autism; Germany and Finland datasets; 273 regions; reduced ISFC in visual, sensorimotor, subcortical networks.",
"source_hop": 1,
"relevance_reason": "Cross-national replication of reduced ISFC in autism during movies",
"priority": "high"
},
{
"title": "Visual semantic tuning across the cortex shifts between tasks",
"authors": null,
"year": "2026",
"venue": "bioRxiv",
"doi": "10.64898/2026.02.19.706797",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2026.02.19.706797v1.full",
"abstract_snippet": "Gallant lab: voxelwise encoding compares semantic tuning when watching movies vs navigating virtual city.",
"source_hop": 1,
"relevance_reason": "Task-dependent semantic tuning from Gallant lab",
"priority": "high"
},
{
"title": "Preregistered movie-fMRI analyses reveal altered visual feature encoding in autism in pSTS",
"authors": null,
"year": "2026",
"venue": "bioRxiv",
"doi": "10.64898/2026.03.23.713749",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2026.03.23.713749v1.full",
"abstract_snippet": "Preregistered movie-fMRI analyses; altered visual feature encoding in autism within pSTS.",
"source_hop": 1,
"relevance_reason": "Preregistered autism movie fMRI study",
"priority": "high"
},
{
"title": "Patterns of intersubject correlations parallel organizational hierarchies",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.10.19.683222",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.10.19.683222v1.full.pdf",
"abstract_snippet": "ISC patterns parallel cortical organizational hierarchies; gradient-ISC correlations across HCP movie clips.",
"source_hop": 1,
"relevance_reason": "ISC and cortical hierarchy",
"priority": "medium"
},
{
"title": "Key moments in naturalistic events synchronize neural activity patterns and dominate memory reinstatement",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.08.30.673233",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.08.30.673233v1.full",
"abstract_snippet": "Storyboard paradigm; key moments synchronize default network; memory reinstatement in posterior-medial cortex.",
"source_hop": 1,
"relevance_reason": "Naturalistic events + DMN + episodic memory",
"priority": "high"
},
{
"title": "Comprehensive Neural Representations of Naturalistic Stimuli (through Multimodal Deep Learning)",
"authors": null,
"year": "2025",
"venue": "eLife reviewed preprint",
"doi": "10.1101/2025.04.15.646250",
"pmid": null,
"url": "https://elifesciences.org/reviewed-preprints/107607",
"abstract_snippet": "Video-text alignment DNN (VALOR) predicts HCP movie responses; multimodal > unimodal features; predictive coding gradients link to fluid IQ.",
"source_hop": 1,
"relevance_reason": "Video-text DNN encoding of naturalistic HCP movie data; links to cognition",
"priority": "high"
},
{
"title": "A multimodal fMRI dataset unifying naturalistic processes with a rich array of experimental tasks (Spacetop)",
"authors": null,
"year": "2025",
"venue": "Scientific Data / bioRxiv",
"doi": "10.1038/s41597-025-05154-x",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-025-05154-x",
"abstract_snippet": "Spacetop: N=101 participants, 6h scanning each, 6 functional tasks + 2h naturalistic movies + diffusion + anatomy.",
"source_hop": 1,
"relevance_reason": "Large multimodal open naturalistic fMRI dataset",
"priority": "high"
},
{
"title": "Le Petit Prince (LPP) Multi-talker: Naturalistic 7T fMRI and EEG Dataset",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.04.03.646958",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.04.03.646958v2",
"abstract_snippet": "7T naturalistic fMRI + EEG dataset with multi-talker Le Petit Prince.",
"source_hop": 1,
"relevance_reason": "7T naturalistic fMRI+EEG multi-talker dataset",
"priority": "high"
},
{
"title": "BABA: Naturalistic fMRI and MEG recordings during viewing of a reality TV show",
"authors": null,
"year": "2025",
"venue": "Scientific Data",
"doi": "10.1038/s41597-025-06110-5",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-025-06110-5",
"abstract_snippet": "Two cohorts N=30 each, fMRI and MEG; 25-min Chinese reality TV show; 11 speakers, overlapping speech, father-child dyads.",
"source_hop": 1,
"relevance_reason": "Multi-modal naturalistic fMRI+MEG reality TV dataset (Chinese language)",
"priority": "high"
},
{
"title": "Multiple event segmentation mechanisms in the human brain",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.07.07.663487",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.07.07.663487v1.full",
"abstract_snippet": "Multiple event segmentation mechanisms: prediction error vs uncertainty; fMRI + computational modeling; temporal sequence of pattern shifts.",
"source_hop": 1,
"relevance_reason": "Competing mechanisms for event segmentation",
"priority": "high"
},
{
"title": "Natural language processing captures memory content associated with shared neural patterns at encoding",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.09.02.672707",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.09.02.672707v1.full",
"abstract_snippet": "NLP captures memory content linked to shared neural patterns during naturalistic encoding.",
"source_hop": 1,
"relevance_reason": "NLP methods + naturalistic memory encoding",
"priority": "high"
},
{
"title": "Harry Potter meets Markov: Neural event representation in the reading network during narrative processing",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.10.13.682063",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.10.13.682063v1.full",
"abstract_snippet": "Neural event representation in reading network during Harry Potter; Markov models.",
"source_hop": 1,
"relevance_reason": "Reading-based naturalistic fMRI + HMM events",
"priority": "medium"
},
{
"title": "Hyperface: a naturalistic fMRI dataset for investigating human face processing",
"authors": null,
"year": "2026",
"venue": "bioRxiv",
"doi": "10.64898/2026.03.11.711073",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2026.03.11.711073v1",
"abstract_snippet": "Dense naturalistic fMRI dataset for face processing.",
"source_hop": 1,
"relevance_reason": "New naturalistic face processing dataset",
"priority": "high"
},
{
"title": "Structured Neural Variability from Repeated Naturalistic Video Watching Experiences",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.11.07.687258",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.11.07.687258v1.full",
"abstract_snippet": "20 participants, 24 videos across 5 sessions; between-subject correlations decrease with repeated viewing.",
"source_hop": 1,
"relevance_reason": "Repetition effects on naturalistic neural variability",
"priority": "high"
},
{
"title": "Dynamic fMRI networks of emotion",
"authors": null,
"year": "2025",
"venue": "eLife reviewed preprint / bioRxiv",
"doi": "10.1101/2025.02.05.636581",
"pmid": null,
"url": "https://elifesciences.org/reviewed-preprints/106070",
"abstract_snippet": "Studyforrest dynamic emotion networks during full-length Forrest Gump viewing.",
"source_hop": 1,
"relevance_reason": "Dynamic emotion networks in naturalistic fMRI",
"priority": "high"
},
{
"title": "Boosting Hyperalignment Performance with Age-specific Templates",
"authors": null,
"year": "2025",
"venue": "bioRxiv",
"doi": "10.1101/2025.02.19.639148",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.1101/2025.02.19.639148v1",
"abstract_snippet": "Age-specific functional templates for hyperalignment; Cam-CAN data 18-87yo.",
"source_hop": 1,
"relevance_reason": "Improving hyperalignment across lifespan",
"priority": "medium"
},
{
"title": "The Neural Code of Neuroticism",
"authors": null,
"year": "2026",
"venue": "bioRxiv",
"doi": "10.64898/2026.01.19.700296",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2026.01.19.700296v1.full",
"abstract_snippet": "IS-RSA on 174 HCP participants; neuroticism similarity vs brain similarity during movie watching.",
"source_hop": 1,
"relevance_reason": "IS-RSA neuroticism during naturalistic movies",
"priority": "medium"
},
{
"title": "fMRI-Based Prediction of Eye Gaze During Naturalistic Movie Viewing Reveals Eye-Movement-Related Brain Activity",
"authors": null,
"year": "2026",
"venue": "bioRxiv",
"doi": "10.64898/2026.01.10.698820",
"pmid": null,
"url": "https://www.biorxiv.org/content/10.64898/2026.01.10.698820v2",
"abstract_snippet": "Predicting eye gaze from fMRI during movie viewing.",
"source_hop": 1,
"relevance_reason": "Linking eye movements to naturalistic fMRI",
"priority": "medium"
},
{
"title": "A Unified Acoustic-to-Speech-to-Language Embedding Space Captures the Neural Basis of Natural Language Processing in Everyday Conversations",
"authors": [
"Ariel Goldstein",
"et al."
],
"year": "2025",
"venue": "Nature Human Behaviour",
"doi": null,
"pmid": null,
"url": "https://hassonlab.princeton.edu/publications",
"abstract_snippet": "Goldstein/Hasson lab: unified acoustic-speech-language embedding neural basis for natural conversations.",
"source_hop": 2,
"relevance_reason": "Hasson lab naturalistic conversation neural basis",
"priority": "high"
},
{
"title": "Incremental Accumulation of Linguistic Context in Artificial and Biological Neural Networks",
"authors": [
"Refael Tikochinski",
"et al."
],
"year": "2025",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://hassonlab.princeton.edu/publications",
"abstract_snippet": "Hasson lab: incremental context accumulation parallels between LLMs and brain.",
"source_hop": 2,
"relevance_reason": "LLM-brain alignment for naturalistic linguistic context",
"priority": "high"
},
{
"title": "Uncovering a Timescale Hierarchy by Studying the Brain in a Natural Context",
"authors": [
"Uri Hasson"
],
"year": "2025",
"venue": "Journal of Neuroscience",
"doi": null,
"pmid": null,
"url": "https://hassonlab.princeton.edu/publications",
"abstract_snippet": "Timescale hierarchy of cortex revealed by naturalistic context studies.",
"source_hop": 2,
"relevance_reason": "Timescale hierarchy review from Hasson",
"priority": "high"
},
{
"title": "How a Speaker Herds the Audience: Multibrain Neural Convergence over Time During Naturalistic Storytelling",
"authors": [
"Claire Chang",
"et al."
],
"year": "2024",
"venue": "Social Cognitive and Affective Neuroscience",
"doi": "10.1093/scan/nsae059",
"pmid": null,
"url": "https://academic.oup.com/scan/article/19/1/nsae059/7748009",
"abstract_snippet": "Listener-listener coupling vs speaker-listener coupling during storytelling; multibrain convergence.",
"source_hop": 2,
"relevance_reason": "Hasson lab naturalistic storytelling multibrain coupling",
"priority": "high"
},
{
"title": "Music-evoked reactivation during continuous perception is associated with enhanced subsequent recall of naturalistic events",
"authors": [
"Caitlin Williams",
"E Margulis",
"Chris Baldassano",
"Uri Hasson",
"Janice Chen",
"Ken Norman"
],
"year": "2025",
"venue": "bioRxiv",
"doi": null,
"pmid": null,
"url": "https://www.biorxiv.org/",
"abstract_snippet": "Eternal Sunshine of the Spotless Mind; musical-theme-evoked reactivation in DMN linked to next-day recall.",
"source_hop": 2,
"relevance_reason": "Music-induced event reactivation during naturalistic film",
"priority": "high"
},
{
"title": "Large language models can segment narrative events similarly to humans",
"authors": [
"Sebastian Michelmann",
"Manoj Kumar",
"Ken Norman",
"Mariya Toneva"
],
"year": "2025",
"venue": "Behavior Research Methods",
"doi": null,
"pmid": null,
"url": "https://link.springer.com/",
"abstract_snippet": "LLM-based segmentation of narrative events matches human judgments.",
"source_hop": 2,
"relevance_reason": "LLM-driven event segmentation for naturalistic stimuli",
"priority": "high"
},
{
"title": "Neural dynamics of spontaneous memory recall and future thinking in the continuous flow of thoughts",
"authors": [
"H Su",
"X Li",
"S Born",
"C Honey",
"J Chen",
"H Lee"
],
"year": "2025",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/ncomms/",
"abstract_snippet": "Continuous-thought framework; spontaneous memory and future thinking during naturalistic experience.",
"source_hop": 2,
"relevance_reason": "Spontaneous cognition during naturalistic paradigm",
"priority": "high"
},
{
"title": "Neural and behavioral reinstatement jointly reflect retrieval of narrative events",
"authors": [
"M Nau",
"A Greene",
"H Tarder-Stoll",
"J Lossio-Ventura",
"F Pereira",
"J Chen",
"C Baldassano",
"C Baker"
],
"year": "2025",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/ncomms/",
"abstract_snippet": "Joint neural/behavioral reinstatement reflects narrative event retrieval.",
"source_hop": 2,
"relevance_reason": "Naturalistic narrative memory retrieval",
"priority": "high"
},
{
"title": "Hippocampal mechanisms resolve competition in memory and perception",
"authors": [
"Aly Lab"
],
"year": "2025",
"venue": "(lab publication)",
"doi": null,
"pmid": null,
"url": "https://www.alylab.org/publications",
"abstract_snippet": "Hippocampal competition resolution in naturalistic memory/perception.",
"source_hop": 2,
"relevance_reason": "Aly lab naturalistic memory/perception",
"priority": "medium"
},
{
"title": "The brain hierarchically represents the past and future during multistep anticipation",
"authors": [
"H Tarder-Stoll",
"C Baldassano",
"M Aly"
],
"year": "2024",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/ncomms/",
"abstract_snippet": "Hierarchical representations of past and future; multistep anticipation in naturalistic sequences.",
"source_hop": 2,
"relevance_reason": "Naturalistic multistep anticipation",
"priority": "high"
},
{
"title": "Shared functional specialization in transformer-based language models and the human brain",
"authors": [
"Mariya Kumar",
"et al."
],
"year": "2024",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/ncomms/",
"abstract_snippet": "Transformer LM functional specialization maps to brain during naturalistic listening.",
"source_hop": 2,
"relevance_reason": "LLM-brain alignment during natural language",
"priority": "high"
},
{
"title": "Occipital-temporal cortical tuning to semantic and affective features of natural images predicts associated behavioral responses",
"authors": [
"Huth lab"
],
"year": "2024",
"venue": "Nature Communications",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/ncomms/",
"abstract_snippet": "Semantic+affective tuning of occipitotemporal cortex to natural images.",
"source_hop": 2,
"relevance_reason": "Huth lab natural image cortical tuning",
"priority": "high"
},
{
"title": "Crafting Interpretable Embeddings for Language Neuroscience by Asking LLMs Questions",
"authors": [
"Huth lab"
],
"year": "2024",
"venue": "NeurIPS",
"doi": null,
"pmid": null,
"url": "https://openreview.net/",
"abstract_snippet": "Interpretable embeddings via QA from LLMs; predicts fMRI and ECoG.",
"source_hop": 2,
"relevance_reason": "Novel interpretable encoding of naturalistic language",
"priority": "high"
},
{
"title": "The language network reliably tracks naturalistic meaningful non-verbal stimuli",
"authors": [
"Sueoka",
"Paunov",
"Blank",
"Tanner",
"Ivanova",
"Fedorenko"
],
"year": "2024",
"venue": "(Fedorenko lab)",
"doi": null,
"pmid": null,
"url": "https://www.evlab.mit.edu/papers",
"abstract_snippet": "Language network tracks meaningful non-verbal stimuli during naturalistic paradigms.",
"source_hop": 2,
"relevance_reason": "Fedorenko lab naturalistic language/non-verbal tracking",
"priority": "high"
},
{
"title": "Altered neural response to social awkwardness in schizophrenia spectrum disorders",
"authors": null,
"year": "2024",
"venue": "Social Cognitive and Affective Neuroscience",
"doi": "10.1093/scan/nsae094",
"pmid": null,
"url": "https://academic.oup.com/scan/article/19/1/nsae094/7919253",
"abstract_snippet": "The Office clips; mPFC tracks awkwardness less in SSD; reduced ToM network FC linked to psychotic experiences.",
"source_hop": 2,
"relevance_reason": "Naturalistic social cognition fMRI in schizophrenia",
"priority": "high"
},
{
"title": "Movie-watching evokes ripple-like activity within events and at event boundaries",
"authors": [
"Silva",
"Wu",
"Sabio",
"Baldassano",
"et al."
],
"year": "2025",
"venue": "Nature Communications",
"doi": "10.1038/s41467-025-60788-0",
"pmid": null,
"url": "https://www.nature.com/articles/s41467-025-60788-0",
"abstract_snippet": "Ten epilepsy patients iEEG during movie; hippocampal ripples at event boundaries; cortical ripples within events predict memory.",
"source_hop": 3,
"relevance_reason": "iEEG ripples during movie watching",
"priority": "high"
},
{
"title": "Autonomic physiological coupling of the global fMRI signal",
"authors": null,
"year": "2025",
"venue": "Nature Neuroscience",
"doi": "10.1038/s41593-025-01945-y",
"pmid": null,
"url": "https://www.nature.com/articles/s41593-025-01945-y",
"abstract_snippet": "Global fMRI signal coupling with autonomic physiology.",
"source_hop": 3,
"relevance_reason": "Important for naturalistic fMRI interpretation",
"priority": "medium"
},
{
"title": "Emergence of a temporal processing gradient from naturalistic inputs and network connectivity",
"authors": null,
"year": "2025",
"venue": "PNAS",
"doi": "10.1073/pnas.2420105122",
"pmid": null,
"url": "https://www.pnas.org/doi/10.1073/pnas.2420105122",
"abstract_snippet": "Temporal processing gradient in networks during naturalistic narratives; matches human brain dynamics.",
"source_hop": 3,
"relevance_reason": "Naturalistic temporal processing modeling",
"priority": "high"
},
{
"title": "Naturalistic acute pain states decoded from neural and facial dynamics",
"authors": null,
"year": "2025",
"venue": "Nature Communications",
"doi": "10.1038/s41467-025-59756-5",
"pmid": null,
"url": "https://www.nature.com/articles/s41467-025-59756-5",
"abstract_snippet": "Twelve epilepsy patients; iEEG+facial decoding of naturalistic pain; mesolimbic, thalamic, temporoparietal cortex.",
"source_hop": 3,
"relevance_reason": "Naturalistic pain decoding",
"priority": "high"
},
{
"title": "Basic stimulus processing alterations from top-down cognitive control in depression drive independent temporal components of multi-echo naturalistic fMRI data",
"authors": null,
"year": "2025",
"venue": "Translational Psychiatry",
"doi": "10.1038/s41398-025-03386-4",
"pmid": null,
"url": "https://www.nature.com/articles/s41398-025-03386-4",
"abstract_snippet": "Multi-echo naturalistic fMRI; depression effects on stimulus processing and top-down control.",
"source_hop": 3,
"relevance_reason": "Depression x naturalistic fMRI multi-echo",
"priority": "high"
},
{
"title": "An fMRI-informed EEG model of the amygdala is associated with salience network dynamics during naturalistic emotional stimulation",
"authors": null,
"year": "2025",
"venue": "Molecular Psychiatry",
"doi": "10.1038/s41380-025-03418-x",
"pmid": null,
"url": "https://www.nature.com/articles/s41380-025-03418-x",
"abstract_snippet": "EEG-fMRI in 71 participants during emotional video/music; amygdala-derived EEG signature tracks salience network.",
"source_hop": 3,
"relevance_reason": "Simultaneous EEG-fMRI naturalistic emotion",
"priority": "high"
},
{
"title": "Emo-FilM: A multimodal dataset for affective neuroscience using naturalistic stimuli",
"authors": null,
"year": "2025",
"venue": "Scientific Data",
"doi": "10.1038/s41597-025-04803-5",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-025-04803-5",
"abstract_snippet": "14 short films, 2.5h total; 44 raters; fMRI + physiology from 30; 50 emotion annotations.",
"source_hop": 3,
"relevance_reason": "Rich affective naturalistic neuroimaging dataset",
"priority": "high"
},
{
"title": "Lights, Camera, Emotion: REELMO 1060 Hours of Affective Reports to Explore Emotions in Naturalistic Contexts",
"authors": null,
"year": "2025",
"venue": "(PMC article)",
"doi": null,
"pmid": null,
"url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12081935/",
"abstract_snippet": "1060h of affective reports from 161 viewers; 60 full-length movies; 20 affective states.",
"source_hop": 3,
"relevance_reason": "Large affective naturalistic behavioral dataset complementing fMRI",
"priority": "medium"
},
{
"title": "Dynamic brain connectivity predicts emotional arousal during naturalistic movie-watching",
"authors": null,
"year": "2024",
"venue": "PLOS Computational Biology",
"doi": "10.1371/journal.pcbi.1012994",
"pmid": null,
"url": "https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1012994",
"abstract_snippet": "Dynamic FC predicts emotional arousal during movies; generalizes across datasets.",
"source_hop": 3,
"relevance_reason": "Emotional arousal from dynamic FC in naturalistic movies",
"priority": "high"
},
{
"title": "Multimodal single-neuron, intracranial EEG, and fMRI brain responses during movie watching in human patients",
"authors": null,
"year": "2024",
"venue": "Scientific Data",
"doi": "10.1038/s41597-024-03029-1",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-024-03029-1",
"abstract_snippet": "Single-neuron + iEEG + fMRI during movie watching in patients.",
"source_hop": 3,
"relevance_reason": "Unique multimodal naturalistic movie dataset",
"priority": "high"
},
{
"title": "Dense Amygdala: Extensive Complex-valued Functional MRI of the Ventral and Medial Temporal Lobe during Passive Movie Watching in Three Individuals",
"authors": null,
"year": "2026",
"venue": "Scientific Data",
"doi": "10.1038/s41597-026-07065-x",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-026-07065-x",
"abstract_snippet": "Dense complex-valued fMRI of MTL during passive movie watching; three individuals.",
"source_hop": 3,
"relevance_reason": "Ultra-dense MTL naturalistic fMRI dataset",
"priority": "high"
},
{
"title": "The biological role of local and global fMRI BOLD signal variability in multiscale human brain organization",
"authors": null,
"year": "2026",
"venue": "Nature Communications",
"doi": "10.1038/s41467-026-68700-0",
"pmid": null,
"url": "https://www.nature.com/articles/s41467-026-68700-0",
"abstract_snippet": "Local/global BOLD variability in multiscale brain organization; naturalistic stimulation context.",
"source_hop": 3,
"relevance_reason": "BOLD variability during naturalistic stimulation",
"priority": "medium"
},
{
"title": "CNeuroMod-THINGS, a densely-sampled fMRI dataset for visual neuroscience",
"authors": [
"Courtois NeuroMod consortium"
],
"year": "2026",
"venue": "Scientific Data",
"doi": "10.1038/s41597-026-06591-y",
"pmid": null,
"url": "https://www.nature.com/articles/s41597-026-06591-y",
"abstract_snippet": "Dense fMRI THINGS dataset from Courtois NeuroMod project.",
"source_hop": 3,
"relevance_reason": "Courtois NeuroMod dense visual naturalistic fMRI",
"priority": "high"
},
{
"title": "Integrating EEG and fMRI in naturalistic paradigms: Advances in understanding mental disorders-a decade study in review (2014-2024)",
"authors": null,
"year": "2025",
"venue": "International Review of Psychiatry",
"doi": "10.1080/19585969.2025.2579280",
"pmid": null,
"url": "https://www.tandfonline.com/doi/full/10.1080/19585969.2025.2579280",
"abstract_snippet": "Decade review of naturalistic EEG+fMRI for mental disorders.",
"source_hop": 3,
"relevance_reason": "Important recent review of naturalistic EEG+fMRI",
"priority": "high"
},
{
"title": "Taking consciousness for real: Increasing the ecological validity of the study of conscious vs. unconscious processes",
"authors": [
"Liad Mudrik"
],
"year": "2024",
"venue": "Neuron",
"doi": null,
"pmid": "38653247",
"url": "https://pubmed.ncbi.nlm.nih.gov/38653247/",
"abstract_snippet": "Mudrik call for ecologically valid consciousness studies including naturalistic movies in DOC patients.",
"source_hop": 4,
"relevance_reason": "Naturalistic paradigms in consciousness research",
"priority": "high"
},
{
"title": "Adversarial testing of global neuronal workspace and integrated information theories of consciousness",
"authors": [
"Mudrik consortium"
],
"year": "2025",
"venue": "Nature",
"doi": null,
"pmid": null,
"url": "https://www.nature.com/",
"abstract_snippet": "Cogitate collaboration adversarial test of GNW vs IIT.",
"source_hop": 4,
"relevance_reason": "Consciousness theory testing with naturalistic stimuli",
"priority": "medium"
},
{
"title": "Functional neuroimaging in disorders of consciousness: towards clinical implementation",
"authors": null,
"year": "2025",
"venue": "Brain",
"doi": "10.1093/brain/awaf036",
"pmid": "39997570",
"url": "https://academic.oup.com/brain/article/148/7/2283/8042105",
"abstract_snippet": "Clinical implementation review of naturalistic paradigms for DOC patients.",
"source_hop": 4,
"relevance_reason": "Clinical naturalistic neuroimaging for DOC",
"priority": "high"
},
{
"title": "Improving Multimodal Brain Encoding Model with Dynamic Subject-awareness Routing (AFIRE/MIND)",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2510.04670",
"abstract_snippet": "AFIRE framework with MIND MoE decoder; subject-aware dynamic gating; whole-brain prediction.",
"source_hop": 5,
"relevance_reason": "Multimodal naturalistic fMRI encoding with MoE",
"priority": "high"
},
{
"title": "Deep Neural Encoder-Decoder Model to Relate fMRI Brain Activity with Naturalistic Stimuli",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2507.12009",
"abstract_snippet": "End-to-end encoder-decoder with temporal conv; naturalistic stimuli.",
"source_hop": 5,
"relevance_reason": "Naturalistic fMRI encoder-decoder DL",
"priority": "high"
},
{
"title": "A Multimodal Seq2Seq Transformer for Predicting Brain Responses to Naturalistic Stimuli",
"authors": [
"He",
"Leong"
],
"year": "2025",
"venue": "arXiv (Algonauts 2025)",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2507.18104",
"abstract_snippet": "Algonauts 2025 seq2seq transformer; visual+auditory+language autoregressive fMRI prediction.",
"source_hop": 5,
"relevance_reason": "Algonauts 2025 submission naturalistic fMRI",
"priority": "high"
},
{
"title": "TRIBE: TRImodal Brain Encoder for whole-brain fMRI response prediction",
"authors": [
"Stéphane d'Ascoli",
"Meta FAIR team"
],
"year": "2025",
"venue": "arXiv (Algonauts 2025 winner)",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2507.22229",
"abstract_snippet": "1st place Algonauts 2025 (263 teams); trimodal encoder text+audio+video; Courtois NeuroMod 80h training.",
"source_hop": 5,
"relevance_reason": "Algonauts 2025 winner for naturalistic fMRI prediction",
"priority": "high"
},
{
"title": "VIBE: Video-Input Brain Encoder for fMRI Response Modeling",
"authors": [
"NCG team",
"MPI CBS"
],
"year": "2025",
"venue": "arXiv (Algonauts 2025 2nd place)",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2507.17958",
"abstract_snippet": "2nd place Algonauts 2025; modality fusion transformer + prediction transformer.",
"source_hop": 5,
"relevance_reason": "Algonauts 2025 2nd place naturalistic fMRI",
"priority": "high"
},
{
"title": "Multimodal Recurrent Ensembles for Predicting Brain Responses to Naturalistic Movies (Algonauts 2025)",
"authors": [
"Eren",
"et al."
],
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2507.17897",
"abstract_snippet": "3rd place Algonauts 2025; hierarchical multimodal recurrent ensemble; Pearson r=0.2094.",
"source_hop": 5,
"relevance_reason": "Algonauts 2025 3rd place naturalistic fMRI",
"priority": "high"
},
{
"title": "Insights from the Algonauts 2025 Winners",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2508.10784",
"abstract_snippet": "Summary paper reviewing winning methods and insights from Algonauts 2025 challenge.",
"source_hop": 5,
"relevance_reason": "Overview of Algonauts 2025 methods",
"priority": "high"
},
{
"title": "The ISLab Solution to the Algonauts Challenge 2025: A Multimodal Deep Learning Approach",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2508.06499",
"abstract_snippet": "ISLab multimodal DL approach for Algonauts 2025 brain response prediction.",
"source_hop": 5,
"relevance_reason": "Algonauts 2025 submission",
"priority": "medium"
},
{
"title": "Multi-modal brain encoding models for multi-modal stimuli",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2505.20027",
"abstract_snippet": "Multi-modal encoding for multi-modal naturalistic stimuli.",
"source_hop": 5,
"relevance_reason": "Multimodal naturalistic encoding",
"priority": "medium"
},
{
"title": "BrainVista: Modeling Naturalistic Brain Dynamics as Multimodal Next-Token Prediction",
"authors": null,
"year": "2026",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2602.04512",
"abstract_snippet": "Multimodal autoregressive brain dynamics; Network-wise Tokenizers; Stimulus-to-Brain masking.",
"source_hop": 5,
"relevance_reason": "Novel naturalistic brain dynamics model",
"priority": "high"
},
{
"title": "Estimating Brain Activity with High Spatial and Temporal Resolution using a Naturalistic MEG-fMRI Encoding Model",
"authors": null,
"year": "2025",
"venue": "arXiv / NeurIPS 2025",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2510.09415",
"abstract_snippet": "Joint MEG-fMRI naturalistic encoding with sliding-window self-attention.",
"source_hop": 5,
"relevance_reason": "High spatiotemporal-resolution naturalistic encoding",
"priority": "high"
},
{
"title": "CineBrain: A Large-Scale Multi-Modal Brain Dataset During Naturalistic Audiovisual Narrative Processing",
"authors": null,
"year": "2025",
"venue": "arXiv",
"doi": null,
"pmid": null,
"url": "https://arxiv.org/abs/2503.06940",
"abstract_snippet": "Simultaneous EEG+fMRI during The Big Bang Theory viewing; ~6h per participant, 6 participants.",
"source_hop": 5,
"relevance_reason": "First large-scale simultaneous EEG+fMRI naturalistic narrative dataset",
"priority": "high"
},
{
"title": "Brain Treebank: Large-scale intracranial recordings from naturalistic language stimuli",
"authors": null,
"year": "2024",
"venue": "NeurIPS 2024 Datasets and Benchmarks",
"doi": null,
"pmid": null,
"url": "https://proceedings.neurips.cc/paper_files/paper/2024/file/aefa2385b3f33abf1526ae4e2c208cd9-Paper-Datasets_and_Benchmarks_Track.pdf",
"abstract_snippet": "10 subjects, 223,068 annotated words while watching Hollywood films; 1,688 electrodes.",
"source_hop": 5,
"relevance_reason": "Large iEEG dataset with naturalistic movies",
"priority": "high"
},
{
"title": "fMRI predictors based on language models of increasing complexity recover brain left lateralization",
"authors": null,
"year": "2024",
"venue": "NeurIPS 2024 poster",
"doi": null,
"pmid": null,
"url": "https://neurips.cc/virtual/2024/poster/94784",
"abstract_snippet": "28 pretrained LLMs from 124M to 14.2B parameters; fMRI left-lateralization analysis.",
"source_hop": 5,
"relevance_reason": "LLM scaling effects on brain encoding",
"priority": "high"
},
{
"title": "Brain-Inspired fMRI-to-Text Decoding via Incremental and Wrap-Up Language Modeling",
"authors": null,
"year": "2025",
"venue": "NeurIPS 2025 poster",
"doi": null,