-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdf_metadata.json
More file actions
5578 lines (5578 loc) · 277 KB
/
Copy pathpdf_metadata.json
File metadata and controls
5578 lines (5578 loc) · 277 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
{
"Read/A synthetic human 3D in vitro lymphoid model.pdf": {
"pdf_title": "A synthetic human 3D in vitro lymphoid model enhancing B-cell survival and functional differentiation",
"pdf_author": "Maaike V.J. Braham",
"arxiv": "",
"doi": "10.1016/j.isci.2022.105741",
"first_lines": [
"iScience",
"ll",
"OPEN ACCESS",
"Article",
"A synthetic human 3D in vitro lymphoid model",
"enhancing B-cell survival and functional",
"differentiation",
"Maaike V.J.",
"Braham, Rob S.",
"van Binnendijk,",
"Anne-Marie M.",
"Buisman, Reina E.",
"Mebius, Jelle de",
"Wit, Cécile A.C.M.",
"van Els"
]
},
"Read/A transfer learning nomogram for predicting prostate cancer and benign conditions on MRI.pdf": {
"pdf_title": "A transfer learning nomogram for predicting prostate cancer and benign conditions on MRI",
"pdf_author": "Junhao Chen",
"arxiv": "",
"doi": "10.1186/s12880-023-01163-7",
"first_lines": [
"(2023) 23:200",
"Chen et al. BMC Medical Imaging",
"https://doi.org/10.1186/s12880-023-01163-7",
"BMC Medical Imaging",
"Open Access",
"RESEARCH",
"A transfer learning nomogram for predicting",
"prostate cancer and benign conditions on MRI",
"Junhao Chen1,2†, Bao Feng2,3†, Maoqing Hu2, Feidong Huang4, Yehang Chen3, Xilun Ma5 and",
"Wansheng Long1,2,6*",
"Abstract",
"Background Deep learning has been used to detect or characterize prostate cancer (PCa) on medical images. The",
"present study was designed to develop an integrated transfer learning nomogram (TLN) for the prediction of PCa",
"and benign conditions (BCs) on magnetic resonance imaging (MRI).",
"Methods In this retrospective study, a total of 709 patients with pathologically confirmed PCa and BCs from two"
]
},
"Read/AFNO_Adaptive Fourier Neural Operator_Effective token mixer for Transformers_Guibas 2022.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2111.13587v2",
"doi": "",
"first_lines": [
"Published as a conference paper at ICLR 2022",
"A DAPTIVE F OURIER N EURAL O PERATORS : E FFICIENT",
"T OKEN M IXERS FOR T RANSFORMERS",
"arXiv:2111.13587v2 [cs.CV] 27 Mar 2022",
"John Guibas3∗ , Morteza Mardani1∗ , Zongyi Li1,2 , Andrew Tao1 ,",
"Anima Aanandkumar1,2 , Bryan Catanzaro1",
"NVIDIA1 , California Institute of Technology2 , Stanford University3",
"jtguibas@stanford.edu,",
"{mmardani,zongyil,atao,bcatanzaro,aanandkumar}@nvidia.com",
"A BSTRACT",
"Vision transformers have delivered tremendous success in representation learning.",
"This is primarily due to effective token mixing through self-attention. However,",
"this scales quadratically with the number of pixels, which becomes infeasible for",
"high-resolution inputs. To cope with this challenge, we propose Adaptive Fourier",
"Neural Operator (AFNO) as an efficient token mixer that learns to mix in the"
]
},
"Read/Alignment and translation model_Dzmitry Bahdanau_2017.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1409.0473v7",
"doi": "",
"first_lines": [
"Published as a conference paper at ICLR 2015",
"N EURAL M ACHINE T RANSLATION",
"BY J OINTLY L EARNING TO A LIGN AND T RANSLATE",
"Dzmitry Bahdanau",
"Jacobs University Bremen, Germany",
"arXiv:1409.0473v7 [cs.CL] 19 May 2016",
"KyungHyun Cho",
"Yoshua Bengio∗",
"Université de Montréal",
"A BSTRACT",
"Neural machine translation is a recently proposed approach to machine translation. Unlike the traditional statistical machine translation, the neural machine",
"translation aims at building a single neural network that can be jointly tuned to",
"maximize the translation performance. The models proposed recently for neural machine translation often belong to a family of encoder–decoders and encode",
"a source sentence into a fixed-length vector from which a decoder generates a",
"translation. In this paper, we conjecture that the use of a fixed-length vector is a"
]
},
"Read/Amyloidogenic Nanoplaques.pdf": {
"pdf_title": "Keywords:",
"pdf_author": "Creator: DVIPSONE 2.2.2 http://www.YandY.com",
"arxiv": "",
"doi": "10.3233/JAD-200237",
"first_lines": [
"Journal of Alzheimer’s Disease 77 (2020) 831–842",
"DOI 10.3233/JAD-200237",
"IOS Press",
"831",
"Amyloidogenic Nanoplaques in",
"Cerebrospinal Fluid: Relationship",
"to Amyloid Brain Uptake and Clinical",
"Alzheimer’s Disease in a Memory",
"Clinic Cohort",
"Mari Aksnesa,b,∗ , Ebba Gløersen Müllerb,c , Ann Tiimand , Trine Holt Edwinb,e,f ,",
"Lars Tereniusd , Mona-Elisabeth Revheimb,c , Vladana Vukojevićd , Nenad Bogdanovića,b,g",
"and Anne-Brita Knapskoge",
"a Department of Geriatric Medicine, University of Oslo, Oslo, Norway",
"b Institute of Clinical Medicine, University of Oslo, Oslo, Norway",
"c Department of Nuclear Medicine, Division of Radiology and Nuclear Medicine, Oslo University Hospital,"
]
},
"Read/An Enhanced Conditional Variational Autoencoder-Based_Normative model for neuroimaging analysis_Mai Ho 2025.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Phuong Ho",
"arxiv": "",
"doi": "10.1101/2025.01.05.631276",
"first_lines": [
"bioRxiv preprint doi: https://doi.org/10.1101/2025.01.05.631276; this version posted January 5, 2025. The copyright holder for this preprint",
"(which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is",
"made available under aCC-BY-NC-ND 4.0 International license.",
"An Enhanced Conditional Variational Autoencoder-Based",
"Normative Model for Neuroimaging Analysis",
"Mai P. Ho1, Yang Song, PhD3, Perminder S. Sachdev, MD, PhD1,2, Jiyang Jiang, PhD1, Wei Wen,",
"PhD1,2",
"*Corresponding authors: Mai Ho, mai.ho@unsw.edu.au, Wei Wen, w.wen@unsw.edu.au",
"Affiliations:",
"1. Centre for Healthy Brain Aging (CHeBA), School of Psychiatry, University of New South",
"Wales (UNSW), Kensington, New South Wales 2052, Australia",
"2. Neuropsychiatric Institute (NPI), Euroa Centre, Prince of Wales Hospital, Randwick, New",
"South Wales 2031, Australia",
"3. School of Computer Science and Engineering, University of New South Wales (UNSW),",
"Kensington, New South Wales 2052, Australia"
]
},
"Read/An overview of deep learning in medical imaging focusing on.pdf": {
"pdf_title": "An overview of deep learning in medical imaging focusing on MRI",
"pdf_author": "Alexander Selvikvåg Lundervold",
"arxiv": "",
"doi": "10.1016/j.zemedi.2018.11.002",
"first_lines": [
"REVIEW",
"An overview of deep learning in medical imaging focusing on",
"MRI",
"Alexander Selvikvåg Lundervold a,b,∗ , Arvid Lundervold a,c,d",
"a",
"Mohn Medical Imaging and Visualization Centre (MMIV), Haukeland University Hospital, Norway",
"Department of Computing, Mathematics and Physics, Western Norway University of Applied Sciences, Norway",
"c",
"Neuroinformatics and Image Analysis Laboratory, Department of Biomedicine, University of Bergen, Norway",
"d",
"Department of Health and Functioning, Western Norway University of Applied Sciences, Norway",
"b",
"Received 2 October 2018; accepted 21 November 2018",
"Abstract",
"What has happened in machine learning lately, and what does it mean for the future of medical image analysis? Machine"
]
},
"Read/AnoDDPM_Anomaly_Detection_With_Denoising_Diffusion_Probabilistic_Models_Using_Simplex_Julian Wyatt_2022.pdf": {
"pdf_title": "AnoDDPM: Anomaly Detection With Denoising Diffusion Probabilistic Models Using Simplex Noise",
"pdf_author": "Julian Wyatt; Adam Leach; Sebastian M. Schmon; Chris G. Willcocks",
"arxiv": "",
"doi": "",
"first_lines": [
"The model is trained solely on normal (healthy) data to reconstruct what's considered standard normal version of data. At inference, it is fed an anomalous",
"image and then we measure the difference between the healthy version generated by the model and the real anomalous original input. It is based",
"on how much the input deviates from what's considered normal by the model.",
"The problem is, the input is compared with a fictive version of itself generated by the model, and thus is based solely on the ability of the model to",
"capture important features of a standard healthy dataset, not on its discriminative ability.",
"The distance between the fictive version and the original data contains both the deviation of the outlier from the standard and the uncertainty about the model's",
"ability to faithfully reconstruct a healthy original input.",
"This might be effective for obvious deviation, but might fail to detect legion that lies close to normal tissue?",
"AnoDDPM: Anomaly Detection with Denoising Diffusion",
"Probabilistic Models using Simplex Noise",
"Julian Wyatt1",
"Adam Leach1",
"Sebastian M. Schmon2",
"Chris G. Willcocks1",
"1"
]
},
"Read/Ardekani,B.A.,Bachman,A.H.,Figarsky,K.,andSidtis,J.J.(2014).Corpus callosum shape changes in early Alzheimer’s disease an MRI study using the OASISbraindatabase.pdf": {
"pdf_title": "",
"pdf_author": "",
"arxiv": "",
"doi": "10.1007/s00429-013-0503-0",
"first_lines": [
"See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/234142326",
"Corpus callosum shape changes in early Alzheimer's disease: An MRI study",
"using the OASIS brain database",
"Article in Brain Structure and Function · January 2013",
"DOI: 10.1007/s00429-013-0503-0 · Source: PubMed",
"CITATIONS",
"READS",
"71",
"317",
"4 authors, including:",
"John J Sidtis",
"Nathan Kline Institute",
"358 PUBLICATIONS 11,275 CITATIONS",
"SEE PROFILE",
"All content following this page was uploaded by John J Sidtis on 27 May 2016."
]
},
"Read/Attention Is All You Need.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "1706.03762v7",
"doi": "",
"first_lines": [
"Provided proper attribution is provided, Google hereby grants permission to",
"reproduce the tables and figures in this paper solely for use in journalistic or",
"scholarly works.",
"arXiv:1706.03762v7 [cs.CL] 2 Aug 2023",
"Attention Is All You Need",
"Ashish Vaswani∗",
"Google Brain",
"avaswani@google.com",
"Llion Jones∗",
"Google Research",
"llion@google.com",
"Noam Shazeer∗",
"Google Brain",
"noam@google.com",
"Niki Parmar∗"
]
},
"Read/Attention-based Neural Machine Translation_ThangLuong2015.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1508.04025v5",
"doi": "",
"first_lines": [
"Effective Approaches to Attention-based Neural Machine Translation",
"Minh-Thang Luong",
"Hieu Pham",
"Christopher D. Manning",
"Computer Science Department, Stanford University, Stanford, CA 94305",
"{lmthang,hyhieu,manning}@stanford.edu",
"arXiv:1508.04025v5 [cs.CL] 20 Sep 2015",
"Abstract",
"An attentional mechanism has lately been",
"used to improve neural machine translation (NMT) by selectively focusing on",
"parts of the source sentence during translation. However, there has been little",
"work exploring useful architectures for",
"attention-based NMT. This paper examines two simple and effective classes of attentional mechanism: a global approach",
"which always attends to all source words",
"and a local one that only looks at a subset"
]
},
"Read/Automatic Chemical Design_Gomez-Bombarelli 2017.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1610.02415v3",
"doi": "",
"first_lines": [
"Automatic Chemical Design Using a Data-Driven",
"arXiv:1610.02415v3 [cs.LG] 5 Dec 2017",
"Continuous Representation of Molecules",
"Rafael Gómez-Bombarelli,†,# Jennifer N. Wei,‡,# David Duvenaud,¶,# José",
"Miguel Hernández-Lobato,§,# Benjamín Sánchez-Lengeling,‡ Dennis Sheberla,‡",
"Jorge Aguilera-Iparraguirre,† Timothy D. Hirzel,† Ryan P. Adams,k and Alán",
"Aspuru-Guzik∗,‡,⊥",
"†Kyulux North America Inc.",
"‡Department of Chemistry and Chemical Biology, Harvard University, Cambridge MA 02138,",
"USA",
"¶Department of Computer Science, University of Toronto",
"§Department of Engineering, University of Cambridge Trumpington Street, Cambridge CB2",
"1PZ, UK",
"kGoogle Brain and Princeton University",
"⊥Canadian Institute for Advanced Research (CIFAR), Biologically-Inspired Solar Energy"
]
},
"Read/Automatic Differentiation Variational Inference_DustinTran2016.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1603.00788v1",
"doi": "",
"first_lines": [
"Automatic Differentiation Variational Inference",
"Alp Kucukelbir",
"Data Science Institute, Department of Computer Science",
"Columbia University",
"arXiv:1603.00788v1 [stat.ML] 2 Mar 2016",
"Dustin Tran",
"Department of Computer Science",
"Columbia University",
"Rajesh Ranganath",
"Department of Computer Science",
"Princeton University",
"Andrew Gelman",
"Data Science Institute, Departments of Political Science and Statistics",
"Columbia University",
"David M. Blei"
]
},
"Read/Bayesian Data Analysis_AndrewGelman.pdf": {
"pdf_title": "",
"pdf_author": "Andrew Gelman",
"arxiv": "",
"doi": "",
"first_lines": [
"This electronic edition is for non-commercial purposes only.",
"Bayesian Data Analysis",
"Third edition",
"(with errors fixed as of 20 February 2025)",
"Andrew Gelman",
"Columbia University",
"John B. Carlin",
"University of Melbourne",
"Hal S. Stern",
"University of California, Irvine",
"David B. Dunson",
"Duke University",
"Aki Vehtari",
"Aalto University",
"Donald B. Rubin"
]
},
"Read/Brain Tumor Segmentation with Deep Neural Networks.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1505.03540v3",
"doi": "",
"first_lines": [
"Brain Tumor Segmentation with Deep Neural NetworksI",
"Mohammad Havaeia,1 , Axel Davyb , David Warde-Farleyc , Antoine Biardc,d , Aaron Courvillec , Yoshua Bengioc , Chris Palc,e ,",
"Pierre-Marc Jodoina , Hugo Larochellea,f",
"a Université de Sherbrooke, Sherbrooke, Qc, Canada",
"b École Normale supérieure, Paris, France",
"c Université de Montréal, Montréal, Canada",
"d École polytechnique, Palaiseau, France",
"e École Polytechnique de Montréal , Canada",
"arXiv:1505.03540v3 [cs.CV] 20 May 2016",
"f Twitter, USA",
"Abstract",
"In this paper, we present a fully automatic brain tumor segmentation method based on Deep Neural Networks (DNNs). The",
"proposed networks are tailored to glioblastomas (both low and high grade) pictured in MR images. By their very nature, these",
"tumors can appear anywhere in the brain and have almost any kind of shape, size, and contrast. These reasons motivate our",
"exploration of a machine learning solution that exploits a flexible, high capacity DNN while being extremely efficient. Here, we"
]
},
"Read/Continuous-Time Modeling of Counterfactual Outcomes Using Neural Controlled Differential Equations_Seedat 2022.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2206.08311v1",
"doi": "",
"first_lines": [
"Continuous-Time Modeling of Counterfactual Outcomes Using Neural",
"Controlled Differential Equations",
"Nabeel Seedat * 1 Fergus Imrie * 2 Alexis Bellot 3 Zhaozhi Qian 1 Mihaela van der Schaar 1 2 4",
"arXiv:2206.08311v1 [cs.LG] 16 Jun 2022",
"Abstract",
"Estimating counterfactual outcomes over time has",
"the potential to unlock personalized healthcare",
"by assisting decision-makers to answer “what-if”",
"questions. Existing causal inference approaches",
"typically consider regular, discrete-time intervals",
"between observations and treatment decisions and",
"hence are unable to naturally model irregularly",
"sampled data, which is the common setting in",
"practice. To handle arbitrary observation patterns,",
"we interpret the data as samples from an underlying continuous-time process and propose to model"
]
},
"Read/DENSITY ESTIMATION USING REAL NVP_Dinh & Dickstein 2017.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1605.08803v3",
"doi": "",
"first_lines": [
"Published as a conference paper at ICLR 2017",
"D ENSITY ESTIMATION USING R EAL NVP",
"Laurent Dinh∗",
"Montreal Institute for Learning Algorithms",
"University of Montreal",
"Montreal, QC H3T1J4",
"arXiv:1605.08803v3 [cs.LG] 27 Feb 2017",
"Jascha Sohl-Dickstein",
"Google Brain",
"Samy Bengio",
"Google Brain",
"A BSTRACT",
"Unsupervised learning of probabilistic models is a central yet challenging problem",
"in machine learning. Specifically, designing models with tractable learning, sampling, inference and evaluation is crucial in solving this task. We extend the space",
"of such models using real-valued non-volume preserving (real NVP) transformations, a set of powerful, stably invertible, and learnable transformations, resulting"
]
},
"Read/Decoding the complexity of Alzheimer's disease _ ScienceDaily.pdf": {
"pdf_title": "Decoding the complexity of Alzheimer's disease | ScienceDaily",
"pdf_author": "",
"arxiv": "",
"doi": "",
"first_lines": [
"7/2/24, 3:25 AM",
"Decoding the complexity of Alzheimer's disease | ScienceDaily",
"Skip to main content",
"(/)",
"Your source for the latest research news",
"New! Sign up for our free email newsletter (https://sciencedaily.substack.com/#).",
"Science News",
"from research organizations",
"Decoding the complexity of Alzheimer's",
"disease",
"Date:",
"September 28, 2023",
"Source:",
"Massachusetts Institute of Technology",
"Summary:"
]
},
"Read/Deep Langevin Ensemble_Wild 2023.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2305.15027v2",
"doi": "",
"first_lines": [
"Provide theoretical prove for convergence by sampling with Deep Repulsive Langevin Ensemble (section 4.3), whilst other deep ensemble methods and MCMC fail to guarantee",
"convergence for non convex problem space.",
"A Rigorous Link between Deep Ensembles and",
"(Variational) Bayesian Methods",
"arXiv:2305.15027v2 [stat.ML] 22 Oct 2023",
"Veit D. Wild∗",
"University of Oxford",
"Sahra Ghalebikesabi",
"University of Oxford",
"Dino Sejdinovic",
"University of Adelaide",
"Jeremias Knoblauch",
"University College London",
"Abstract",
"We establish the first mathematically rigorous link between Bayesian, variational"
]
},
"Read/Deep Learning Applications in Magnetic Resonance Imaging.pdf": {
"pdf_title": "Deep Learning Applications in Magnetic Resonance Imaging: Has the Future Become Present?",
"pdf_author": "Sebastian Gassenmaier, Thomas Küstner, Dominik Nickel, Judith Herrmann, Rüdiger Hoffmann, Haidara Almansour, Saif Afat, Konstantin Nikolaou and Ahmed E. Othman",
"arxiv": "",
"doi": "10.3390/diagnostics11122181",
"first_lines": [
"diagnostics",
"Review",
"Deep Learning Applications in Magnetic Resonance Imaging:",
"Has the Future Become Present?",
"Sebastian Gassenmaier 1 , Thomas Küstner 2 , Dominik Nickel 3 , Judith Herrmann 1 , Rüdiger Hoffmann 1 ,",
"Haidara Almansour 1 , Saif Afat 1 , Konstantin Nikolaou 1 and Ahmed E. Othman 1,4, *",
"1",
"2",
"3",
"4",
"*",
"\u0001\u0002\u0003\u0001\u0004\u0005\u0006\u0007\b\u0001",
"\u0001\u0002\u0003\u0004\u0005\u0006\u0007",
"Citation: Gassenmaier, S.;",
"Küstner, T.; Nickel, D.; Herrmann, J.;"
]
},
"Read/Deep Learning Enables Automatic Detection and Segmentation.pdf": {
"pdf_title": "Deep Learning Enables Automatic Detection and Segmentation of Brain Metastases on Multisequence MRI",
"pdf_author": "Endre Grøvik, Darvin Yi, Michael Iv, Elizabeth Tong, Daniel Rubin, Greg Zaharchuk",
"arxiv": "",
"doi": "10.1002/jmri.26766",
"first_lines": [
"HHS Public Access",
"Author manuscript",
"Author Manuscript",
"J Magn Reson Imaging. Author manuscript; available in PMC 2020 May 05.",
"Published in final edited form as:",
"J Magn Reson Imaging. 2020 January ; 51(1): 175–182. doi:10.1002/jmri.26766.",
"Deep Learning Enables Automatic Detection and Segmentation",
"of Brain Metastases on Multisequence MRI",
"Endre Grøvik, PhD1,2, Darvin Yi, MS3, Michael Iv, MD1, Elizabeth Tong, MD1, Daniel Rubin,",
"PhD#3, Greg Zaharchuk, MD, PhD#1,*",
"1Department of Radiology, Stanford University, Stanford, California, USA",
"Author Manuscript",
"2Department for Diagnostic Physics, Oslo University Hospital, Oslo, Norway",
"3Department of Biomedical Data Science, Stanford University, Stanford, California, USA",
"# These authors contributed equally to this work."
]
},
"Read/Deep Learning in MR Image Processing.pdf": {
"pdf_title": "",
"pdf_author": "",
"arxiv": "",
"doi": "10.13104/imri.2019.23.2.81",
"first_lines": [
"pISSN 2384-1095",
"eISSN 2384-1109",
"iMRI 2019;23:81-99",
"https://doi.org/10.13104/imri.2019.23.2.81",
"Deep Learning in MR Image Processing",
"Doohee Lee1, Jingu Lee1, Jingyu Ko1, Jaeyeon Yoon1, Kanghyun Ryu2,",
"Yoonho Nam3",
"1",
"Laboratory for Imaging Science and Technology, Department of Electrical and Computer",
"Engineering, Institute of Engineering Research, Seoul National University, Seoul, Korea",
"2",
"Department of Electrical and Electronic Engineering, Yonsei University, Seoul, Korea",
"3",
"Department of Radiology, Seoul St. Mary’s Hospital, College of Medicine, The Catholic University of",
"Korea, Seoul, Korea"
]
},
"Read/Deep Residual Learning for Image Recognition.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref package",
"arxiv": "1512.03385v1",
"doi": "",
"first_lines": [
"Deep Residual Learning for Image Recognition",
"Kaiming He",
"Xiangyu Zhang",
"Shaoqing Ren",
"Microsoft Research",
"Jian Sun",
"Deeper neural networks are more difficult to train. We",
"present a residual learning framework to ease the training",
"of networks that are substantially deeper than those used",
"previously. We explicitly reformulate the layers as learning residual functions with reference to the layer inputs, instead of learning unreferenced functions. We provide comprehensive empirical evidence showing that these residual",
"networks are easier to optimize, and can gain accuracy from",
"considerably increased depth. On the ImageNet dataset we",
"evaluate residual nets with a depth of up to 152 layers—8×",
"deeper than VGG nets [41] but still having lower complexity. An ensemble of these residual nets achieves 3.57% error",
"on the ImageNet test set. This result won the 1st place on the"
]
},
"Read/Deep learning for the classification of psychiatric disorders using neuroimaging data_Meta review_Quaak 2021.pdf": {
"pdf_title": "Deep learning applications for the classification of psychiatric disorders using neuroimaging data: Systematic review and meta-analysis",
"pdf_author": "Mirjam Quaak",
"arxiv": "",
"doi": "10.1016/j.nicl.2021.102584",
"first_lines": [
"NeuroImage: Clinical 30 (2021) 102584",
"Contents lists available at ScienceDirect",
"NeuroImage: Clinical",
"journal homepage: www.elsevier.com/locate/ynicl",
"Deep learning applications for the classification of psychiatric disorders",
"using neuroimaging data: Systematic review and meta-analysis",
"Mirjam Quaak, Laurens van de Mortel, Rajat Mani Thomas, Guido van Wingen *",
"Amsterdam UMC, University of Amsterdam, Department of Psychiatry, Meibergdreef 5, 1105 AZ Amsterdam, The Netherlands",
"A R T I C L E I N F O",
"A B S T R A C T",
"Keywords:",
"Deep learning",
"Machine learning",
"Psychiatry",
"Neuroimaging"
]
},
"Read/Deep learning for fully automatic detection, segmentation, and Gleason grade estimation of prostate cance.pdf": {
"pdf_title": "Deep learning for fully automatic detection, segmentation, and Gleason grade estimation of prostate cancer in multiparametric magnetic resonance images",
"pdf_author": "Oscar J. Pellicer-Valero",
"arxiv": "",
"doi": "10.1038/s41598-022-06730-6",
"first_lines": [
"www.nature.com/scientificreports",
"OPEN",
"Deep learning for fully",
"automatic detection,",
"segmentation, and Gleason grade",
"estimation of prostate cancer",
"in multiparametric magnetic",
"resonance images",
"Oscar J. Pellicer‑Valero1*, José L. Marenco Jiménez2, Victor Gonzalez‑Perez3,",
"Juan Luis Casanova Ramón‑Borja2, Isabel Martín García4, María Barrios Benito4,",
"Paula Pelechano Gómez4, José Rubio‑Briones2, María José Rupérez5 &",
"José D. Martín‑Guerrero1",
"Although the emergence of multi-parametric magnetic resonance imaging (mpMRI) has had a",
"profound impact on the diagnosis of prostate cancers (PCa), analyzing these images remains still",
"complex even for experts. This paper proposes a fully automatic system based on Deep Learning that"
]
},
"Read/Deep learning of joint myelin and T1w MRI features in normal-appearing.pdf": {
"pdf_title": "Deep learning of joint myelin and T1w MRI features in normal-appearing brain tissue to distinguish between multiple sclerosis patients and healthy controls",
"pdf_author": "Youngjin Yoo",
"arxiv": "",
"doi": "10.1016/j.nicl.2017.10.015",
"first_lines": [
"NeuroImage: Clinical 17 (2018) 169–178",
"Contents lists available at ScienceDirect",
"NeuroImage: Clinical",
"journal homepage: www.elsevier.com/locate/ynicl",
"Deep learning of joint myelin and T1w MRI features in normal-appearing",
"brain tissue to distinguish between multiple sclerosis patients and healthy",
"controls",
"T",
"Youngjin Yooa,b,e,*, Lisa Y.W. Tangc,e, Tom Broscha,b,e, David K.B. Lic,e, Shannon Kolindc,d,e,g,",
"Irene Vavasourc, Alexander Rauscherf, Alex L. MacKayc,g, Anthony Traboulseed,e,",
"Roger C. Tamb,c,e",
"a",
"Department of Electrical and Computer Engineering, University of British Columbia, Vancouver, BC, Canada",
"Biomedical Engineering Program, University of British Columbia, Vancouver, BC, Canada",
"Department of Radiology, University of British Columbia, Vancouver, BC, Canada"
]
},
"Read/DeepSeek-V3 Technical Report.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2412.19437v2",
"doi": "",
"first_lines": [
"DeepSeek-V3 Technical Report",
"DeepSeek-AI",
"research@deepseek.com",
"We present DeepSeek-V3, a strong Mixture-of-Experts (MoE) language model with 671B total",
"parameters with 37B activated for each token. To achieve efficient inference and cost-effective",
"training, DeepSeek-V3 adopts Multi-head Latent Attention (MLA) and DeepSeekMoE architectures, which were thoroughly validated in DeepSeek-V2. Furthermore, DeepSeek-V3 pioneers",
"an auxiliary-loss-free strategy for load balancing and sets a multi-token prediction training",
"objective for stronger performance. We pre-train DeepSeek-V3 on 14.8 trillion diverse and",
"high-quality tokens, followed by Supervised Fine-Tuning and Reinforcement Learning stages to",
"fully harness its capabilities. Comprehensive evaluations reveal that DeepSeek-V3 outperforms",
"other open-source models and achieves performance comparable to leading closed-source",
"models. Despite its excellent performance, DeepSeek-V3 requires only 2.788M H800 GPU hours",
"for its full training. In addition, its training process is remarkably stable. Throughout the entire",
"training process, we did not experience any irrecoverable loss spikes or perform any rollbacks.",
"The model checkpoints are available at https://github.com/deepseek-ai/DeepSeek-V3."
]
},
"Read/DeepSeek_R1.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "",
"doi": "",
"first_lines": [
"DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via",
"Reinforcement Learning",
"DeepSeek-AI",
"research@deepseek.com",
"Abstract",
"We introduce our first-generation reasoning models, DeepSeek-R1-Zero and DeepSeek-R1.",
"DeepSeek-R1-Zero, a model trained via large-scale reinforcement learning (RL) without supervised fine-tuning (SFT) as a preliminary step, demonstrates remarkable reasoning capabilities.",
"Through RL, DeepSeek-R1-Zero naturally emerges with numerous powerful and intriguing",
"reasoning behaviors. However, it encounters challenges such as poor readability, and language",
"mixing. To address these issues and further enhance reasoning performance, we introduce",
"DeepSeek-R1, which incorporates multi-stage training and cold-start data before RL. DeepSeekR1 achieves performance comparable to OpenAI-o1-1217 on reasoning tasks. To support the",
"research community, we open-source DeepSeek-R1-Zero, DeepSeek-R1, and six dense models",
"(1.5B, 7B, 8B, 14B, 32B, 70B) distilled from DeepSeek-R1 based on Qwen and Llama.",
"DeepSeek-R1",
"100"
]
},
"Read/Denoising diffusion model_JonHo_2020.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2006.11239v2",
"doi": "",
"first_lines": [
"Denoising Diffusion Probabilistic Models",
"arXiv:2006.11239v2 [cs.LG] 16 Dec 2020",
"Jonathan Ho",
"UC Berkeley",
"jonathanho@berkeley.edu",
"Ajay Jain",
"UC Berkeley",
"ajayj@berkeley.edu",
"Pieter Abbeel",
"UC Berkeley",
"pabbeel@cs.berkeley.edu",
"Abstract",
"We present high quality image synthesis results using diffusion probabilistic models,",
"a class of latent variable models inspired by considerations from nonequilibrium",
"thermodynamics. Our best results are obtained by training on a weighted variational"
]
},
"Read/Density estimation by dual ascent of log likelihood (invertible flows)_Tabak 2010.pdf": {
"pdf_title": "",
"pdf_author": "",
"arxiv": "",
"doi": "",
"first_lines": [
"c 2010 International Press",
"COMMUN. MATH. SCI.",
"Vol. 8, No. 1, pp. 217–233",
"DENSITY ESTIMATION BY DUAL ASCENT OF THE",
"LOG-LIKELIHOOD∗",
"ESTEBAN G. TABAK† AND ERIC VANDEN-EIJNDEN‡",
"Dedicated to the sixtieth birthday of Professor Andrew Majda",
"Abstract. A methodology is developed to assign, from an observed sample, a joint-probability",
"distribution to a set of continuous variables. The algorithm proposed performs this assignment by",
"mapping the original variables onto a jointly-Gaussian set. The map is built iteratively, ascending",
"the log-likelihood of the observations, through a series of steps that move the marginal distributions",
"along a random set of orthogonal directions towards normality.",
"Key words. Density estimation, machine learning, maximum likelihood.",
"AMS subject classifications. 34A50, 65C30, 65L20, 60H35.",
"1. Introduction and problem setting"
]
},
"Read/Diffusion models_Hollistic Review_YANG 2024.pdf": {
"pdf_title": "Diffusion Models: A Comprehensive Survey of Methods and Applications",
"pdf_author": "",
"arxiv": "2209.00796v14",
"doi": "",
"first_lines": [
"arXiv:2209.00796v14 [cs.LG] 2 Dec 2024",
"Diffusion Models: A Comprehensive Survey of Methods and Applications",
"LING YANG, Peking University, China",
"ZHILONG ZHANG∗ , Peking University, China",
"YANG SONG, OpenAI, USA",
"SHENDA HONG, Peking University, China",
"RUNSHENG XU, University of California, Los Angeles, USA",
"YUE ZHAO, Carnegie Mellon University, USA",
"WENTAO ZHANG, Peking University, China",
"BIN CUI, Peking University, China",
"MING-HSUAN YANG† , University of California at Merced, USA",
"Diffusion models have emerged as a powerful new family of deep generative models with record-breaking performance in many",
"applications, including image synthesis, video generation, and molecule design. In this survey, we provide an overview of the rapidly",
"expanding body of work on diffusion models, categorizing the research into three key areas: efficient sampling, improved likelihood",
"estimation, and handling data with special structures. We also discuss the potential for combining diffusion models with other generative"
]
},
"Read/Eric Kandel - Functional Prions in the Brain.pdf": {
"pdf_title": "untitled",
"pdf_author": "",
"arxiv": "",
"doi": "10.1101/cshperspect.a023671",
"first_lines": [
"Functional Prions in the Brain",
"Joseph B. Rayman1 and Eric R. Kandel1,2,3,4,5",
"1",
"Department of Neuroscience, College of Physicians and Surgeons of Columbia University, New York,",
"New York 10032",
"2",
"Department of Psychiatry, College of Physicians and Surgeons of Columbia University, New York,",
"New York 10032",
"3",
"Howard Hughes Medical Institute, Chevy Chase, Maryland 20815-6789",
"4",
"Zuckerman Mind Brain Behavior Institute, New York, New York 10027",
"5",
"Kavli Institute for Brain Science, New York, New York 10032",
"Correspondence: erk5@columbia.edu"
]
},
"Read/Estimating Epistemic Uncertainty in Diffusion Models_Berry 2024.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2406.18580v1",
"doi": "",
"first_lines": [
"Shedding Light on Large Generative Networks:",
"Estimating Epistemic Uncertainty in Diffusion Models",
"Lucas Berry1,2",
"Axel Brando3",
"David Meger1,2",
"1",
"School of Computer Science, McGill University, Montreal, Quebec, Canada",
"Centre for Intelligent Machines, McGill University, Montreal, Quebec, Canada",
"3",
"Barcelona Supercomputing Center - Centro Nacional de Supercomputación (BSC-CNS), Spain",
"arXiv:2406.18580v1 [cs.CV] 5 Jun 2024",
"2",
"Abstract",
"Generative diffusion models, notable for their large",
"parameter count (exceeding 100 million) and operation within high-dimensional image spaces,"
]
},
"Read/Eur J Immunol - 2006 - Sioud - Single‐stranded small interfering RNA are more immunostimulatory than their double‐stranded.pdf": {
"pdf_title": "Single‐stranded small interfering RNA are more immunostimulatory than their double‐stranded counterparts: A central role for 2′‐hydroxyl uridines in immune responses",
"pdf_author": "",
"arxiv": "",
"doi": "10.1002/eji.200535708",
"first_lines": [
"1222",
"Mouldy Sioud",
"Eur. J. Immunol. 2006. 36: 1222–1230",
"Innate immunity",
"Single-stranded small interfering RNA are more",
"immunostimulatory than their double-stranded",
"counterparts: A central role for 20-hydroxyl uridines in",
"immune responses",
"Mouldy Sioud",
"The Norwegian Radium Hospital, Department of Immunology, Molecular Medicine",
"Group Montebello, Oslo, Norway",
"It has recently become apparent that certain small interfering RNA (siRNA) sequences",
"stimulate the innate immunity through endosomal Toll-like receptors (TLR),",
"particularly TLR7 and TLR8. However, it remains unclear whether siRNA duplexes",
"act as specific ligands for these receptors. To address this question and to overcome the"
]
},
"Read/Foundation of diffusion model_Deep unsupervised learning using Nonequilibrium Thermodynamics_Dickstein_Weiss_2015.pdf": {
"pdf_title": "Deep Unsupervised Learning using Nonequilibrium Thermodynamics",
"pdf_author": "Jascha Sohl-Dickstein, Eric A. Weiss, Niru Maheswaranathan, Surya Ganguli",
"arxiv": "1503.03585v8",
"doi": "",
"first_lines": [
"arXiv:1503.03585v8 [cs.LG] 18 Nov 2015",
"Deep Unsupervised Learning using",
"Nonequilibrium Thermodynamics",
"Jascha Sohl-Dickstein",
"Stanford University",
"JASCHA @ STANFORD . EDU",
"Eric A. Weiss",
"University of California, Berkeley",
"EAWEISS @ BERKELEY. EDU",
"Niru Maheswaranathan",
"Stanford University",
"NIRUM @ STANFORD . EDU",
"Surya Ganguli",
"Stanford University",
"SGANGULI @ STANFORD . EDU"
]
},
"Read/Gaussian Processes for Machine Learning_Rasmussen_Williams.pdf": {
"pdf_title": "Gaussian Processes for Machine Learning",
"pdf_author": "Carl Edward Rasmussen and Christopher K. I. Williams",
"arxiv": "",
"doi": "",
"first_lines": [
"C. E. Rasmussen & C. K. I. Williams, Gaussian Processes for Machine Learning, the MIT Press, 2006,",
"ISBN 026218253X. c 2006 Massachusetts Institute of Technology. www.GaussianProcess.org/gpml",
"Gaussian Processes for Machine Learning",
"C. E. Rasmussen & C. K. I. Williams, Gaussian Processes for Machine Learning, the MIT Press, 2006,",
"ISBN 026218253X. c 2006 Massachusetts Institute of Technology. www.GaussianProcess.org/gpml",
"Adaptive Computation and Machine Learning",
"Thomas Dietterich, Editor",
"Christopher Bishop, David Heckerman, Michael Jordan, and Michael Kearns, Associate Editors",
"Bioinformatics: The Machine Learning Approach,",
"Pierre Baldi and Søren Brunak",
"Reinforcement Learning: An Introduction,",
"Richard S. Sutton and Andrew G. Barto",
"Graphical Models for Machine Learning and Digital Communication,",
"Brendan J. Frey",
"Learning in Graphical Models,"
]
},
"Read/Gaussian process-based prediction and detection of gray matter abnormalities_Alzheimer_Ziegler 2014.pdf": {
"pdf_title": "Individualized Gaussian process-based prediction and detection of local and global gray matter abnormalities in elderly subjects",
"pdf_author": "",
"arxiv": "",
"doi": "10.1016/j.neuroimage.2014.04.018",
"first_lines": [
"NeuroImage 97 (2014) 333–348",
"Contents lists available at ScienceDirect",
"NeuroImage",
"journal homepage: www.elsevier.com/locate/ynimg",
"Individualized Gaussian process-based prediction and detection of local",
"and global gray matter abnormalities in elderly subjects",
"G. Ziegler a,b,⁎, G.R. Ridgway a, R. Dahnke b, C. Gaser b,c, for The Alzheimer's Disease Neuroimaging Initiative 1",
"a",
"b",
"c",
"Wellcome Trust Center for Neuroimaging, Institute of Neurology, London, UK",
"Department of Psychiatry, Jena University Hospital, Jena, Germany",
"Department of Neurology, Jena University Hospital, Jena, Germany",
"a r t i c l e",
"i n f o"
]
},
"Read/Human microglial state dynamics in AD progression.pdf": {
"pdf_title": "Human microglial state dynamics in Alzheimer's disease progression",
"pdf_author": "Na Sun",
"arxiv": "",
"doi": "10.1016/j.cell.2023.08.037",
"first_lines": [
"Article",
"Human microglial state dynamics in Alzheimer’s",
"disease progression",
"Graphical abstract",
"Authors",
"Na Sun, Matheus B. Victor,",
"Yongjin P. Park, ..., David A. Bennett,",
"Li-Huei Tsai, Manolis Kellis",
"Correspondence",
"lhtsai@mit.edu (L.-H.T.),",
"manoli@mit.edu (M.K.)",
"In brief",
"Highlights",
"d",
"Single-nucleus transcriptomes and epigenomes of human"
]
},
"Read/ImageNet_G Hinton.pdf": {
"pdf_title": "ImageNet Classification with Deep Convolutional Neural Networks",
"pdf_author": "Alex Krizhevsky, Ilya Sutskever, Geoffrey E. Hinton",
"arxiv": "",
"doi": "",
"first_lines": [
"ImageNet Classification with Deep Convolutional",
"Neural Networks",
"Alex Krizhevsky",
"University of Toronto",
"kriz@cs.utoronto.ca",
"Ilya Sutskever",
"University of Toronto",
"ilya@cs.utoronto.ca",
"Geoffrey E. Hinton",
"University of Toronto",
"hinton@cs.utoronto.ca",
"Abstract",
"We trained a large, deep convolutional neural network to classify the 1.2 million",
"high-resolution images in the ImageNet LSVRC-2010 contest into the 1000 different classes. On the test data, we achieved top-1 and top-5 error rates of 37.5%",
"and 17.0% which is considerably better than the previous state-of-the-art. The"
]
},
"Read/Inkjet-printed unclonable quantum dot fluorescent anti-counterfeiting label.pdf": {
"pdf_title": "Inkjet-printed unclonable quantum dot fluorescent anti-counterfeiting labels with artificial intelligence authentication",
"pdf_author": "Yang Liu",
"arxiv": "",
"doi": "10.1038/s41467-019-10406-7",
"first_lines": [
"ARTICLE",
"https://doi.org/10.1038/s41467-019-10406-7",
"OPEN",
"Inkjet-printed unclonable quantum dot fluorescent",
"anti-counterfeiting labels with artificial intelligence",
"authentication",
"1234567890():,;",
"Yang Liu1, Fei Han2, Fushan Li1, Yan Zhao1, Maosheng Chen1, Zhongwei Xu1, Xin Zheng1, Hailong Hu 1,",
"Jianmin Yao1, Tailiang Guo1, Wanzhen Lin2, Yuanhui Zheng 2, Baogui You3, Pai Liu3, Yang Li3 & Lei Qian4",
"An ideal anti-counterfeiting technique has to be inexpensive, mass-producible, nondestructive, unclonable and convenient for authentication. Although many anti-counterfeiting",
"technologies have been developed, very few of them fulfill all the above requirements. Here",
"we report a non-destructive, inkjet-printable, artificial intelligence (AI)-decodable and",
"unclonable security label. The stochastic pinning points at the three-phase contact line of the",
"ink droplets is crucial for the successful inkjet printing of the unclonable security labels. Upon",
"the solvent evaporation, the three-phase contact lines are pinned around the pinning points,"
]
},
"Read/Latent diffusion model_Robin_2022.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2112.10752v2",
"doi": "",
"first_lines": [
"High-Resolution Image Synthesis with Latent Diffusion Models",
"Robin Rombach1 *",
"1",
"Andreas Blattmann1 ∗",
"Dominik Lorenz1",
"Björn Ommer1",
"Patrick Esser",
"Ludwig Maximilian University of Munich & IWR, Heidelberg University, Germany",
"Runway ML",
"https://github.com/CompVis/latent-diffusion",
"arXiv:2112.10752v2 [cs.CV] 13 Apr 2022",
"Abstract",
"Input",
"By decomposing the image formation process into a sequential application of denoising autoencoders, diffusion",
"models (DMs) achieve state-of-the-art synthesis results on"
]
},
"Read/Longterm durability of immune response mRNA COvid vaccines.pdf": {
"pdf_title": "Long-term predictions of humoral immunity after two doses of BNT162b2 and mRNA-1273 vaccines based on dosage, age and sex",
"pdf_author": "Chapin S. Korosec1,2,*, Suzan Farhang-Sardroodi1,2, David W. Dick1,2, Samaneh Gholami1,2, Mohammad Sajjad Ghaemi3, Iain R. Moyles2, Morgan Craig4, Hsu Kiang Ooi3, and Jane M. Heffernan1,2,, , , 10 1. Modelling Infection and Immunity Lab, Mathematics Statistics, York University, Toronto, ON M3J 1P3, Canada, 2. Centre for Disease Modelling (CDM), Mathematics Statistics, York University, Toronto, ON M3J 1P3, Canada, 3. Digital Technologies Research Centre, National Research Council Canada, Toronto, ON C1A 4P3, Canada, 4. Sainte-Justine University Hospital Research Centre and Department of Mathematics and Statistics, Université de Montréal, Montreal, QC H3T 1J4, Canada, correspondence: *chapinSkorosec@gmail.com, jmheffer@yorku.ca ;",
"arxiv": "",
"doi": "10.1101/2021.10.13.21264957",
"first_lines": [
"medRxiv preprint doi: https://doi.org/10.1101/2021.10.13.21264957; this version posted October 18, 2021. The copyright holder for this preprint",
"(which was not certified by peer review) is the author/funder, who has granted medRxiv a license to display the preprint in perpetuity.",
"It is made available under a CC-BY-NC-ND 4.0 International license .",
"Long-term predictions of humoral immunity after two",
"doses of BNT162b2 and mRNA-1273 vaccines based on",
"dosage, age and sex",
"Chapin S. Korosec1,2,∗ , Suzan Farhang-Sardroodi1,2 , David W. Dick1,2 ,",
"Samaneh Gholami1,2 , Mohammad Sajjad Ghaemi3 , Iain R. Moyles2 ,",
"Morgan Craig4 , Hsu Kiang Ooi3 , and Jane M. Heffernan1,2,ψ",
"1. Modelling Infection and Immunity Lab, Mathematics Statistics, York",
"University, Toronto, ON M3J 1P3, Canada",
"2. Centre for Disease Modelling (CDM), Mathematics Statistics, York",
"University, Toronto, ON M3J 1P3, Canada",
"3. Digital Technologies Research Centre, National Research Council",
"Canada, Toronto, ON C1A 4P3, Canada"
]
},
"Read/Mitochondrial links between brain aging and Alzheimer’s disease.pdf": {
"pdf_title": "Mitochondrial links between brain aging and Alzheimer’s disease",
"pdf_author": "Heather M. Wilkins",
"arxiv": "",
"doi": "10.1186/s40035-021-00261-2",
"first_lines": [
"Wilkins and Swerdlow Transl Neurodegener",
"https://doi.org/10.1186/s40035-021-00261-2",
"(2021) 10:33",
"Open Access",
"REVIEW",
"Mitochondrial links between brain aging",
"and Alzheimer’s disease",
"Heather M. Wilkins1,2,3 and Russell H. Swerdlow1,2,3,4*",
"Abstract",
"Advancing age is a major risk factor for Alzheimer’s disease (AD). This raises the question of whether AD biology",
"mechanistically diverges from aging biology or alternatively represents exaggerated aging. Correlative and modeling",
"studies can inform this question, but without a firm grasp of what drives aging and AD it is difficult to definitively",
"resolve this quandary. This review speculates over the relevance of a particular hallmark of aging, mitochondrial",
"function, to AD, and further provides background information that is pertinent to and provides perspective on this",
"speculation."
]
},
"Read/Neural Controlled Differential Equations for Time Series_Kidger 2020.pdf": {
"pdf_title": "Subject:",
"pdf_author": "Creator: LaTeX with hyperref",
"arxiv": "2005.08926v2",
"doi": "",
"first_lines": [
"arXiv:2005.08926v2 [cs.LG] 5 Nov 2020",
"Neural Controlled Differential Equations for",
"Irregular Time Series",
"Patrick Kidger",