-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsources.json
More file actions
1085 lines (1085 loc) · 48.4 KB
/
sources.json
File metadata and controls
1085 lines (1085 loc) · 48.4 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
{
"libraries": {
"pytorch_2.9": {
"type": "sphinx",
"version": "2.9",
"doc_root": "https://pytorch.org/docs/stable/",
"inventory_url": "https://pytorch.org/docs/stable/objects.inv",
"selector": "div[role='main']"
},
"numpy_2.3": {
"type": "sphinx",
"version": "2.3",
"doc_root": "https://numpy.org/doc/stable/",
"inventory_url": "https://numpy.org/doc/stable/objects.inv",
"selector": "article[role='main']"
},
"scipy_1.15": {
"type": "sphinx",
"version": "1.15",
"doc_root": "https://docs.scipy.org/doc/scipy/",
"inventory_url": "https://docs.scipy.org/doc/scipy/objects.inv",
"selector": "article[role='main']"
},
"matplotlib_3.10": {
"type": "sphinx",
"version": "3.10",
"doc_root": "https://matplotlib.org/stable/",
"inventory_url": "https://matplotlib.org/stable/objects.inv",
"selector": "div[role='main']"
},
"pandas_2.3": {
"type": "sphinx",
"version": "2.3",
"doc_root": "https://pandas.pydata.org/docs/",
"inventory_url": "https://pandas.pydata.org/docs/objects.inv",
"selector": "article[role='main']"
},
"scikit-learn_1.8": {
"type": "sphinx",
"version": "1.8",
"doc_root": "https://scikit-learn.org/stable/",
"inventory_url": "https://scikit-learn.org/stable/objects.inv",
"selector": "div[role='main']"
},
"seaborn_0.13": {
"type": "sphinx",
"version": "0.13",
"doc_root": "https://seaborn.pydata.org/",
"inventory_url": "https://seaborn.pydata.org/objects.inv",
"selector": "article[role='main']"
},
"transformers_4.57": {
"type": "sphinx",
"version": "4.57",
"doc_root": "https://huggingface.co/docs/transformers/",
"inventory_url": "https://huggingface.co/docs/transformers/main/en/objects.inv",
"selector": "main"
},
"pillow_12.0": {
"type": "sphinx",
"version": "12.0",
"doc_root": "https://pillow.readthedocs.io/en/stable/",
"inventory_url": "https://pillow.readthedocs.io/en/stable/objects.inv",
"selector": "div[role='main']"
},
"opencv_4.12": {
"type": "doxygen",
"version": "4.12",
"doc_root": "https://docs.opencv.org/4.12.0/",
"index_pages": [
"annotated.html",
"index.html"
],
"selector": "div.contents"
}
},
"papers": {
"dl_architectures_optimization": {
"display_name": "DL Foundations & Architectures",
"description": "Core Building Blocks - CNN/Transformer architectures, optimization methods, normalization, and regularization techniques",
"items": {
"1512.03385": {
"title": "Deep Residual Learning for Image Recognition",
"arxiv_id": "1512.03385",
"authors": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun",
"year": "2015",
"source": "https://arxiv.org/abs/1512.03385"
},
"1409.1556": {
"title": "Very Deep Convolutional Networks for Large-Scale Image Recognition",
"arxiv_id": "1409.1556",
"authors": "Karen Simonyan, Andrew Zisserman",
"year": "2014",
"source": "https://arxiv.org/abs/1409.1556"
},
"1409.4842": {
"title": "Going Deeper with Convolutions",
"arxiv_id": "1409.4842",
"authors": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, Andrew Rabinovich",
"year": "2014",
"source": "https://arxiv.org/abs/1409.4842"
},
"1502.03167": {
"title": "Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift",
"arxiv_id": "1502.03167",
"authors": "Sergey Ioffe, Christian Szegedy",
"year": "2015",
"source": "https://arxiv.org/abs/1502.03167"
},
"1412.6980": {
"title": "Adam: A Method for Stochastic Optimization",
"arxiv_id": "1412.6980",
"authors": "Diederik P. Kingma, Jimmy Ba",
"year": "2014",
"source": "https://arxiv.org/abs/1412.6980"
},
"1704.04861": {
"title": "MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications",
"arxiv_id": "1704.04861",
"authors": "Andrew G. Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, Hartwig Adam",
"year": "2017",
"source": "https://arxiv.org/abs/1704.04861"
},
"1905.11946": {
"title": "EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks",
"arxiv_id": "1905.11946",
"authors": "Mingxing Tan, Quoc V. Le",
"year": "2019",
"source": "https://arxiv.org/abs/1905.11946"
},
"2201.03545": {
"title": "A ConvNet for the 2020s",
"arxiv_id": "2201.03545",
"authors": "Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, Saining Xie",
"year": "2022",
"source": "https://arxiv.org/abs/2201.03545"
},
"1706.03762": {
"title": "Attention Is All You Need",
"arxiv_id": "1706.03762",
"authors": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, Illia Polosukhin",
"year": "2017",
"source": "https://arxiv.org/abs/1706.03762"
},
"2010.11929": {
"title": "An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale",
"arxiv_id": "2010.11929",
"authors": "Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, Neil Houlsby",
"year": "2020",
"source": "https://arxiv.org/abs/2010.11929"
},
"1207.0580": {
"title": "Improving neural networks by preventing co-adaptation of feature detectors",
"arxiv_id": "1207.0580",
"authors": "Geoffrey E. Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, Ruslan R. Salakhutdinov",
"year": "2012",
"source": "https://arxiv.org/abs/1207.0580"
},
"1607.06450": {
"title": "Layer Normalization",
"arxiv_id": "1607.06450",
"authors": "Jimmy Lei Ba, Jamie Ryan Kiros, Geoffrey E. Hinton",
"year": "2016",
"source": "https://arxiv.org/abs/1607.06450"
},
"1606.08415": {
"title": "Gaussian Error Linear Units (GELUs)",
"arxiv_id": "1606.08415",
"authors": "Dan Hendrycks, Kevin Gimpel",
"year": "2016",
"source": "https://arxiv.org/abs/1606.08415"
},
"1612.08083": {
"title": "Language Modeling with Gated Convolutional Networks",
"arxiv_id": "1612.08083",
"authors": "Yann N. Dauphin, Angela Fan, Michael Auli, David Grangier",
"year": "2016",
"source": "https://arxiv.org/abs/1612.08083"
},
"2103.14030": {
"title": "Swin Transformer: Hierarchical Vision Transformer using Shifted Windows",
"arxiv_id": "2103.14030",
"authors": "Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, Baining Guo",
"year": "2021",
"source": "https://arxiv.org/abs/2103.14030"
},
"2111.06377": {
"title": "Masked Autoencoders Are Scalable Vision Learners",
"arxiv_id": "2111.06377",
"authors": "Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Doll\u00e1r, Ross Girshick",
"year": "2021",
"source": "https://arxiv.org/abs/2111.06377"
},
"2105.01601": {
"title": "MLP-Mixer: An all-MLP Architecture for Vision",
"arxiv_id": "2105.01601",
"authors": "Ilya Tolstikhin, Neil Houlsby, Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Thomas Unterthiner, Jessica Yung, Andreas Steiner, Daniel Keysers, Jakob Uszkoreit, Mario Lucic, Alexey Dosovitskiy",
"year": "2021",
"source": "https://arxiv.org/abs/2105.01601"
},
"1711.05101": {
"title": "Decoupled Weight Decay Regularization",
"arxiv_id": "1711.05101",
"authors": "Ilya Loshchilov, Frank Hutter",
"year": "2017",
"source": "https://arxiv.org/abs/1711.05101"
},
"2205.14135": {
"title": "FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness",
"arxiv_id": "2205.14135",
"authors": "Tri Dao, Daniel Y. Fu, Stefano Ermon, Atri Rudra, Christopher R\u00e9",
"year": "2022",
"source": "https://arxiv.org/abs/2205.14135"
},
"2104.09864": {
"title": "RoFormer: Enhanced Transformer with Rotary Position Embedding",
"arxiv_id": "2104.09864",
"authors": "Jianlin Su, Yu Lu, Shengfeng Pan, Ahmed Murtadha, Bo Wen, Yunfeng Liu",
"year": "2021",
"source": "https://arxiv.org/abs/2104.09864"
}
},
"type": "arxiv"
},
"foundation_models": {
"display_name": "Foundation Models & LLMs",
"description": "Large Scale Pre-training - LLMs (GPT, LLaMA), Vision-Language Models (CLIP, Flamingo), and alignment techniques (RLHF, LoRA)",
"items": {
"1810.04805": {
"title": "BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding",
"arxiv_id": "1810.04805",
"authors": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, Kristina Toutanova",
"year": "2018",
"source": "https://arxiv.org/abs/1810.04805"
},
"2103.00020": {
"title": "Learning Transferable Visual Models From Natural Language Supervision",
"arxiv_id": "2103.00020",
"authors": "Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, Ilya Sutskever",
"year": "2021",
"source": "https://arxiv.org/abs/2103.00020"
},
"2304.02643": {
"title": "Segment Anything",
"arxiv_id": "2304.02643",
"authors": "Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C. Berg, Wan-Yen Lo, Piotr Doll\u00e1r, Ross Girshick",
"year": "2023",
"source": "https://arxiv.org/abs/2304.02643"
},
"2211.10831": {
"title": "Joint Embedding Predictive Architectures Focus on Slow Features",
"arxiv_id": "2211.10831",
"authors": "Vlad Sobal, Jyothir S, Siddhartha Jalagam, Nicolas Carion, Kyunghyun Cho, Yann LeCun",
"year": "2022",
"source": "https://arxiv.org/abs/2211.10831"
},
"2005.14165": {
"title": "Language Models are Few-Shot Learners",
"arxiv_id": "2005.14165",
"authors": "Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M. Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin, Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford, Ilya Sutskever, Dario Amodei",
"year": "2020",
"source": "https://arxiv.org/abs/2005.14165"
},
"2302.13971": {
"title": "LLaMA: Open and Efficient Foundation Language Models",
"arxiv_id": "2302.13971",
"authors": "Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth\u00e9e Lacroix, Baptiste Rozi\u00e8re, Naman Goyal, Eric Hambro, Faisal Azhar, Aurelien Rodriguez, Armand Joulin, Edouard Grave, Guillaume Lample",
"year": "2023",
"source": "https://arxiv.org/abs/2302.13971"
},
"2203.02155": {
"title": "Training language models to follow instructions with human feedback",
"arxiv_id": "2203.02155",
"authors": "Long Ouyang, Jeff Wu, Xu Jiang, Diogo Almeida, Carroll L. Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, John Schulman, Jacob Hilton, Fraser Kelton, Luke Miller, Maddie Simens, Amanda Askell, Peter Welinder, Paul Christiano, Jan Leike, Ryan Lowe",
"year": "2022",
"source": "https://arxiv.org/abs/2203.02155"
},
"2106.09685": {
"title": "LoRA: Low-Rank Adaptation of Large Language Models",
"arxiv_id": "2106.09685",
"authors": "Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen",
"year": "2021",
"source": "https://arxiv.org/abs/2106.09685"
},
"2001.08361": {
"title": "Scaling Laws for Neural Language Models",
"arxiv_id": "2001.08361",
"authors": "Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, Dario Amodei",
"year": "2020",
"source": "https://arxiv.org/abs/2001.08361"
},
"2201.11903": {
"title": "Chain-of-Thought Prompting Elicits Reasoning in Large Language Models",
"arxiv_id": "2201.11903",
"authors": "Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed Chi, Quoc Le, Denny Zhou",
"year": "2022",
"source": "https://arxiv.org/abs/2201.11903"
},
"2204.14198": {
"title": "Flamingo: a Visual Language Model for Few-Shot Learning",
"arxiv_id": "2204.14198",
"authors": "Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Mensch, Katie Millican, Malcolm Reynolds, Roman Ring, Eliza Rutherford, Serkan Cabi, Tengda Han, Zhitao Gong, Sina Samangooei, Marianne Monteiro, Jacob Menick, Sebastian Borgeaud, Andrew Brock, Aida Nematzadeh, Sahand Sharifzadeh, Mikolaj Binkowski, Ricardo Barreira, Oriol Vinyals, Andrew Zisserman, Karen Simonyan",
"year": "2022",
"source": "https://arxiv.org/abs/2204.14198"
},
"2201.12086": {
"title": "BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation",
"arxiv_id": "2201.12086",
"authors": "Junnan Li, Dongxu Li, Caiming Xiong, Steven Hoi",
"year": "2022",
"source": "https://arxiv.org/abs/2201.12086"
},
"2104.14294": {
"title": "Emerging Properties in Self-Supervised Vision Transformers",
"arxiv_id": "2104.14294",
"authors": "Mathilde Caron, Hugo Touvron, Ishan Misra, Herv\u00e9 J\u00e9gou, Julien Mairal, Piotr Bojanowski, Armand Joulin",
"year": "2021",
"source": "https://arxiv.org/abs/2104.14294"
},
"2304.07193": {
"title": "DINOv2: Learning Robust Visual Features without Supervision",
"arxiv_id": "2304.07193",
"authors": "Maxime Oquab, Timoth\u00e9e Darcet, Th\u00e9o Moutakanni, Huy Vo, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, Mahmoud Assran, Nicolas Ballas, Wojciech Galuba, Russell Howes, Po-Yao Huang, Shang-Wen Li, Ishan Misra, Michael Rabbat, Vasu Sharma, Gabriel Synnaeve, Hu Xu, Herv\u00e9 Jegou, Julien Mairal, Patrick Labatut, Armand Joulin, Piotr Bojanowski",
"year": "2023",
"source": "https://arxiv.org/abs/2304.07193"
},
"2107.03374": {
"title": "Evaluating Large Language Models Trained on Code",
"arxiv_id": "2107.03374",
"authors": "Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique Ponde de Oliveira Pinto, Jared Kaplan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, Alex Ray, Raul Puri, Gretchen Krueger, Michael Petrov, Heidy Khlaaf, Girish Sastry, Pamela Mishkin, Brooke Chan, Scott Gray, Nick Ryder, Mikhail Pavlov, Alethea Power, Lukasz Kaiser, Mohammad Bavarian, Clemens Winter, Philippe Tillet, Felipe Petroski Such, Dave Cummings, Matthias Plappert, Fotios Chantzis, Elizabeth Barnes, Ariel Herbert-Voss, William Hebgen Guss, Alex Nichol, Alex Paino, Nikolas Tezak, Jie Tang, Igor Babuschkin, Suchir Balaji, Shantanu Jain, William Saunders, Christopher Hesse, Andrew N. Carr, Jan Leike, Josh Achiam, Vedant Misra, Evan Morikawa, Alec Radford, Matthew Knight, Miles Brundage, Mira Murati, Katie Mayer, Peter Welinder, Bob McGrew, Dario Amodei, Sam McCandlish, Ilya Sutskever, Wojciech Zaremba",
"year": "2021",
"source": "https://arxiv.org/abs/2107.03374"
},
"2305.14314": {
"title": "QLoRA: Efficient Finetuning of Quantized LLMs",
"arxiv_id": "2305.14314",
"authors": "Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, Luke Zettlemoyer",
"year": "2023",
"source": "https://arxiv.org/abs/2305.14314"
},
"2101.03961": {
"title": "Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity",
"arxiv_id": "2101.03961",
"authors": "William Fedus, Barret Zoph, Noam Shazeer",
"year": "2021",
"source": "https://arxiv.org/abs/2101.03961"
},
"2507.00711": {
"title": "Large Reasoning Models are not thinking straight: on the unreliability of thinking trajectories",
"arxiv_id": "2507.00711",
"authors": "Jhouben Cuesta-Ramirez, Samuel Beaussant, Mehdi Mounsif",
"year": "2025",
"source": "https://arxiv.org/abs/2507.00711"
},
"2512.00218": {
"title": "Reasoning Under Pressure: How do Training Incentives Influence Chain-of-Thought Monitorability?",
"arxiv_id": "2512.00218",
"authors": "Matt MacDermott, Qiyao Wei, Rada Djoneva, Francis Rhys Ward",
"year": "2025",
"source": "https://arxiv.org/abs/2512.00218"
},
"2402.15391": {
"title": "Genie: Generative Interactive Environments",
"arxiv_id": "2402.15391",
"authors": "Jake Bruce, Michael Dennis, Ashley Edwards, Jack Parker-Holder, Yuge Shi, Edward Hughes, Matthew Lai, Aditi Mavalankar, Richie Steigerwald, Chris Apps, Yusuf Aytar, Sarah Bechtle, Feryal Behbahani, Stephanie Chan, Nicolas Heess, Lucy Gonzalez, Simon Osindero, Sherjil Ozair, Scott Reed, Jingwei Zhang, Konrad Zolna, Jeff Clune, Nando de Freitas, Satinder Singh, Tim Rockt\u00e4schel",
"year": "2024",
"source": "https://arxiv.org/abs/2402.15391"
}
},
"type": "arxiv"
},
"vision_2d_generative": {
"display_name": "2D Vision & Generative Models",
"description": "2D Vision Tasks & Generative Models - Object detection, segmentation, GANs, and diffusion models",
"items": {
"1506.02640": {
"title": "You Only Look Once: Unified, Real-Time Object Detection",
"arxiv_id": "1506.02640",
"authors": "Joseph Redmon, Santosh Divvala, Ross Girshick, Ali Farhadi",
"year": "2015",
"source": "https://arxiv.org/abs/1506.02640"
},
"1506.01497": {
"title": "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks",
"arxiv_id": "1506.01497",
"authors": "Shaoqing Ren, Kaiming He, Ross Girshick, Jian Sun",
"year": "2015",
"source": "https://arxiv.org/abs/1506.01497"
},
"1703.06870": {
"title": "Mask R-CNN",
"arxiv_id": "1703.06870",
"authors": "Kaiming He, Georgia Gkioxari, Piotr Doll\u00e1r, Ross Girshick",
"year": "2017",
"source": "https://arxiv.org/abs/1703.06870"
},
"2005.12872": {
"title": "End-to-End Object Detection with Transformers",
"arxiv_id": "2005.12872",
"authors": "Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, Sergey Zagoruyko",
"year": "2020",
"source": "https://arxiv.org/abs/2005.12872"
},
"1911.09070": {
"title": "EfficientDet: Scalable and Efficient Object Detection",
"arxiv_id": "1911.09070",
"authors": "Mingxing Tan, Ruoming Pang, Quoc V. Le",
"year": "2019",
"source": "https://arxiv.org/abs/1911.09070"
},
"1406.2661": {
"title": "Generative Adversarial Networks",
"arxiv_id": "1406.2661",
"authors": "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, Yoshua Bengio",
"year": "2014",
"source": "https://arxiv.org/abs/1406.2661"
},
"1611.07004": {
"title": "Image-to-Image Translation with Conditional Adversarial Networks",
"arxiv_id": "1611.07004",
"authors": "Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, Alexei A. Efros",
"year": "2016",
"source": "https://arxiv.org/abs/1611.07004"
},
"1703.10593": {
"title": "Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks",
"arxiv_id": "1703.10593",
"authors": "Jun-Yan Zhu, Taesung Park, Phillip Isola, Alexei A. Efros",
"year": "2017",
"source": "https://arxiv.org/abs/1703.10593"
},
"1812.04948": {
"title": "A Style-Based Generator Architecture for Generative Adversarial Networks",
"arxiv_id": "1812.04948",
"authors": "Tero Karras, Samuli Laine, Timo Aila",
"year": "2018",
"source": "https://arxiv.org/abs/1812.04948"
},
"1912.04958": {
"title": "Analyzing and Improving the Image Quality of StyleGAN",
"arxiv_id": "1912.04958",
"authors": "Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, Timo Aila",
"year": "2019",
"source": "https://arxiv.org/abs/1912.04958"
},
"2006.11239": {
"title": "Denoising Diffusion Probabilistic Models",
"arxiv_id": "2006.11239",
"authors": "Jonathan Ho, Ajay Jain, Pieter Abbeel",
"year": "2020",
"source": "https://arxiv.org/abs/2006.11239"
},
"2112.10752": {
"title": "High-Resolution Image Synthesis with Latent Diffusion Models",
"arxiv_id": "2112.10752",
"authors": "Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, Bj\u00f6rn Ommer",
"year": "2021",
"source": "https://arxiv.org/abs/2112.10752"
},
"2204.06125": {
"title": "Hierarchical Text-Conditional Image Generation with CLIP Latents",
"arxiv_id": "2204.06125",
"authors": "Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, Mark Chen",
"year": "2022",
"source": "https://arxiv.org/abs/2204.06125"
},
"1312.6114": {
"title": "Auto-Encoding Variational Bayes",
"arxiv_id": "1312.6114",
"authors": "Diederik P Kingma, Max Welling",
"year": "2013",
"source": "https://arxiv.org/abs/1312.6114"
},
"2010.02502": {
"title": "Denoising Diffusion Implicit Models",
"arxiv_id": "2010.02502",
"authors": "Jiaming Song, Chenlin Meng, Stefano Ermon",
"year": "2020",
"source": "https://arxiv.org/abs/2010.02502"
},
"2302.05543": {
"title": "Adding Conditional Control to Text-to-Image Diffusion Models",
"arxiv_id": "2302.05543",
"authors": "Lvmin Zhang, Anyi Rao, Maneesh Agrawala",
"year": "2023",
"source": "https://arxiv.org/abs/2302.05543"
},
"2212.09748": {
"title": "Scalable Diffusion Models with Transformers",
"arxiv_id": "2212.09748",
"authors": "William Peebles, Saining Xie",
"year": "2022",
"source": "https://arxiv.org/abs/2212.09748"
},
"2011.13456": {
"title": "Score-Based Generative Modeling through Stochastic Differential Equations",
"arxiv_id": "2011.13456",
"authors": "Yang Song, Jascha Sohl-Dickstein, Diederik P. Kingma, Abhishek Kumar, Stefano Ermon, Ben Poole",
"year": "2020",
"source": "https://arxiv.org/abs/2011.13456"
},
"2208.12242": {
"title": "DreamBooth: Fine Tuning Text-to-Image Diffusion Models for Subject-Driven Generation",
"arxiv_id": "2208.12242",
"authors": "Nataniel Ruiz, Yuanzhen Li, Varun Jampani, Yael Pritch, Michael Rubinstein, Kfir Aberman",
"year": "2022",
"source": "https://arxiv.org/abs/2208.12242"
},
"2511.16719": {
"title": "SAM 3: Segment Anything with Concepts",
"arxiv_id": "2511.16719",
"authors": "Nicolas Carion, Laura Gustafson, Yuan-Ting Hu, Shoubhik Debnath, Ronghang Hu, Didac Suris, Chaitanya Ryali, Kalyan Vasudev Alwala, Haitham Khedr, Andrew Huang, Jie Lei, Tengyu Ma, Baishan Guo, Arpit Kalla, Markus Marks, Joseph Greer, Meng Wang, Peize Sun, Roman R\u00e4dle, Triantafyllos Afouras, Effrosyni Mavroudi, Katherine Xu, Tsung-Han Wu, Yu Zhou, Liliane Momeni, Rishi Hazra, Shuangrui Ding, Sagar Vaze, Francois Porcher, Feng Li, Siyuan Li, Aishwarya Kamath, Ho Kei Cheng, Piotr Doll\u00e1r, Nikhila Ravi, Kate Saenko, Pengchuan Zhang, Christoph Feichtenhofer",
"year": "2025",
"source": "https://arxiv.org/abs/2511.16719"
}
},
"type": "arxiv"
},
"3d_reconstruction_rendering": {
"display_name": "3D Reconstruction & Rendering",
"description": "3D/4D Reconstruction, Rendering & Relighting - Neural scene representations, Gaussian Splatting, dynamic scenes, and inverse rendering",
"items": {
"2003.08934": {
"title": "NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis",
"arxiv_id": "2003.08934",
"authors": "Ben Mildenhall, Pratul P. Srinivasan, Matthew Tancik, Jonathan T. Barron, Ravi Ramamoorthi, Ren Ng",
"year": "2020",
"source": "https://arxiv.org/abs/2003.08934"
},
"2201.05989": {
"title": "Instant Neural Graphics Primitives with a Multiresolution Hash Encoding",
"arxiv_id": "2201.05989",
"authors": "Thomas M\u00fcller, Alex Evans, Christoph Schied, Alexander Keller",
"year": "2022",
"source": "https://arxiv.org/abs/2201.05989"
},
"2308.04079": {
"title": "3D Gaussian Splatting for Real-Time Radiance Field Rendering",
"arxiv_id": "2308.04079",
"authors": "Bernhard Kerbl, Georgios Kopanas, Thomas Leimk\u00fchler, George Drettakis",
"year": "2023",
"source": "https://arxiv.org/abs/2308.04079"
},
"2310.08528": {
"title": "4D Gaussian Splatting for Real-Time Dynamic Scene Rendering",
"arxiv_id": "2310.08528",
"authors": "Guanjun Wu, Taoran Yi, Jiemin Fang, Lingxi Xie, Xiaopeng Zhang, Wei Wei, Wenyu Liu, Qi Tian, Xinggang Wang",
"year": "2023",
"source": "https://arxiv.org/abs/2310.08528"
},
"2309.13101": {
"title": "Deformable 3D Gaussians for High-Fidelity Monocular Dynamic Scene Reconstruction",
"arxiv_id": "2309.13101",
"authors": "Ziyi Yang, Xinyu Gao, Wen Zhou, Shaohui Jiao, Yuqing Zhang, Xiaogang Jin",
"year": "2023",
"source": "https://arxiv.org/abs/2309.13101"
},
"2402.03307": {
"title": "4D-Rotor Gaussian Splatting: Towards Efficient Novel View Synthesis for Dynamic Scenes",
"arxiv_id": "2402.03307",
"authors": "Yuanxing Duan, Fangyin Wei, Qiyu Dai, Yuhang He, Wenzheng Chen, Baoquan Chen",
"year": "2024",
"source": "https://arxiv.org/abs/2402.03307"
},
"2406.08759": {
"title": "GaussianForest: Hierarchical-Hybrid 3D Gaussian Splatting for Compressed Scene Modeling",
"arxiv_id": "2406.08759",
"authors": "Fengyi Zhang, Yadan Luo, Tianjun Zhang, Lin Zhang, Zi Huang",
"year": "2024",
"source": "https://arxiv.org/abs/2406.08759"
},
"2311.16043": {
"title": "Relightable 3D Gaussians: Realistic Point Cloud Relighting with BRDF Decomposition and Ray Tracing",
"arxiv_id": "2311.16043",
"authors": "Jian Gao, Chun Gu, Youtian Lin, Zhihao Li, Hao Zhu, Xun Cao, Li Zhang, Yao Yao",
"year": "2023",
"source": "https://arxiv.org/abs/2311.16043"
},
"2311.12775": {
"title": "SuGaR: Surface-Aligned Gaussian Splatting for Efficient 3D Mesh Reconstruction and High-Quality Mesh Rendering",
"arxiv_id": "2311.12775",
"authors": "Antoine Gu\u00e9don, Vincent Lepetit",
"year": "2023",
"source": "https://arxiv.org/abs/2311.12775"
},
"2312.03203": {
"title": "Feature 3DGS: Supercharging 3D Gaussian Splatting to Enable Distilled Feature Fields",
"arxiv_id": "2312.03203",
"authors": "Shijie Zhou, Haoran Chang, Sicheng Jiang, Zhiwen Fan, Zehao Zhu, Dejia Xu, Pradyumna Chari, Suya You, Zhangyang Wang, Achuta Kadambi",
"year": "2023",
"source": "https://arxiv.org/abs/2312.03203"
},
"2311.17977": {
"title": "GaussianShader: 3D Gaussian Splatting with Shading Functions for Reflective Surfaces",
"arxiv_id": "2311.17977",
"authors": "Yingwenqi Jiang, Jiadong Tu, Yuan Liu, Xifeng Gao, Xiaoxiao Long, Wenping Wang, Yuexin Ma",
"year": "2023",
"source": "https://arxiv.org/abs/2311.17977"
},
"2312.02121": {
"title": "Mathematical Supplement for the $\\texttt{gsplat}$ Library",
"arxiv_id": "2312.02121",
"authors": "Vickie Ye, Angjoo Kanazawa",
"year": "2023",
"source": "https://arxiv.org/abs/2312.02121"
},
"1901.05103": {
"title": "DeepSDF: Learning Continuous Signed Distance Functions for Shape Representation",
"arxiv_id": "1901.05103",
"authors": "Jeong Joon Park, Peter Florence, Julian Straub, Richard Newcombe, Steven Lovegrove",
"year": "2019",
"source": "https://arxiv.org/abs/1901.05103"
},
"1612.00593": {
"title": "PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation",
"arxiv_id": "1612.00593",
"authors": "Charles R. Qi, Hao Su, Kaichun Mo, Leonidas J. Guibas",
"year": "2016",
"source": "https://arxiv.org/abs/1612.00593"
},
"2209.14988": {
"title": "DreamFusion: Text-to-3D using 2D Diffusion",
"arxiv_id": "2209.14988",
"authors": "Ben Poole, Ajay Jain, Jonathan T. Barron, Ben Mildenhall",
"year": "2022",
"source": "https://arxiv.org/abs/2209.14988"
},
"2103.13415": {
"title": "Mip-NeRF: A Multiscale Representation for Anti-Aliasing Neural Radiance Fields",
"arxiv_id": "2103.13415",
"authors": "Jonathan T. Barron, Ben Mildenhall, Matthew Tancik, Peter Hedman, Ricardo Martin-Brualla, Pratul P. Srinivasan",
"year": "2021",
"source": "https://arxiv.org/abs/2103.13415"
},
"2111.12077": {
"title": "Mip-NeRF 360: Unbounded Anti-Aliased Neural Radiance Fields",
"arxiv_id": "2111.12077",
"authors": "Jonathan T. Barron, Ben Mildenhall, Dor Verbin, Pratul P. Srinivasan, Peter Hedman",
"year": "2021",
"source": "https://arxiv.org/abs/2111.12077"
},
"2303.11328": {
"title": "Zero-1-to-3: Zero-shot One Image to 3D Object",
"arxiv_id": "2303.11328",
"authors": "Ruoshi Liu, Rundi Wu, Basile Van Hoorick, Pavel Tokmakov, Sergey Zakharov, Carl Vondrick",
"year": "2023",
"source": "https://arxiv.org/abs/2303.11328"
},
"2106.10689": {
"title": "NeuS: Learning Neural Implicit Surfaces by Volume Rendering for Multi-view Reconstruction",
"arxiv_id": "2106.10689",
"authors": "Peng Wang, Lingjie Liu, Yuan Liu, Christian Theobalt, Taku Komura, Wenping Wang",
"year": "2021",
"source": "https://arxiv.org/abs/2106.10689"
},
"2503.11651": {
"title": "VGGT: Visual Geometry Grounded Transformer",
"arxiv_id": "2503.11651",
"authors": "Jianyuan Wang, Minghao Chen, Nikita Karaev, Andrea Vedaldi, Christian Rupprecht, David Novotny",
"year": "2025",
"source": "https://arxiv.org/abs/2503.11651"
}
},
"type": "arxiv"
},
"reinforcement_learning": {
"display_name": "Reinforcement Learning & Robotics",
"description": "Decision Making & Control - Policy gradients, value-based methods, model-based RL, and offline RL",
"items": {
"1312.5602": {
"title": "Playing Atari with Deep Reinforcement Learning",
"arxiv_id": "1312.5602",
"authors": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, Martin Riedmiller",
"year": "2013",
"source": "https://arxiv.org/abs/1312.5602"
},
"1509.02971": {
"title": "Continuous control with deep reinforcement learning",
"arxiv_id": "1509.02971",
"authors": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, Daan Wierstra",
"year": "2015",
"source": "https://arxiv.org/abs/1509.02971"
},
"1707.06347": {
"title": "Proximal Policy Optimization Algorithms",
"arxiv_id": "1707.06347",
"authors": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, Oleg Klimov",
"year": "2017",
"source": "https://arxiv.org/abs/1707.06347"
},
"1801.01290": {
"title": "Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement Learning with a Stochastic Actor",
"arxiv_id": "1801.01290",
"authors": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, Sergey Levine",
"year": "2018",
"source": "https://arxiv.org/abs/1801.01290"
},
"1803.10122": {
"title": "World Models",
"arxiv_id": "1803.10122",
"authors": "David Ha, J\u00fcrgen Schmidhuber",
"year": "2018",
"source": "https://arxiv.org/abs/1803.10122"
},
"2106.01345": {
"title": "Decision Transformer: Reinforcement Learning via Sequence Modeling",
"arxiv_id": "2106.01345",
"authors": "Lili Chen, Kevin Lu, Aravind Rajeswaran, Kimin Lee, Aditya Grover, Michael Laskin, Pieter Abbeel, Aravind Srinivas, Igor Mordatch",
"year": "2021",
"source": "https://arxiv.org/abs/2106.01345"
},
"1502.05477": {
"title": "Trust Region Policy Optimization",
"arxiv_id": "1502.05477",
"authors": "John Schulman, Sergey Levine, Philipp Moritz, Michael I. Jordan, Pieter Abbeel",
"year": "2015",
"source": "https://arxiv.org/abs/1502.05477"
},
"1602.01783": {
"title": "Asynchronous Methods for Deep Reinforcement Learning",
"arxiv_id": "1602.01783",
"authors": "Volodymyr Mnih, Adri\u00e0 Puigdom\u00e8nech Badia, Mehdi Mirza, Alex Graves, Timothy P. Lillicrap, Tim Harley, David Silver, Koray Kavukcuoglu",
"year": "2016",
"source": "https://arxiv.org/abs/1602.01783"
},
"1812.05905": {
"title": "Soft Actor-Critic Algorithms and Applications",
"arxiv_id": "1812.05905",
"authors": "Tuomas Haarnoja, Aurick Zhou, Kristian Hartikainen, George Tucker, Sehoon Ha, Jie Tan, Vikash Kumar, Henry Zhu, Abhishek Gupta, Pieter Abbeel, Sergey Levine",
"year": "2018",
"source": "https://arxiv.org/abs/1812.05905"
},
"1907.02057": {
"title": "Benchmarking Model-Based Reinforcement Learning",
"arxiv_id": "1907.02057",
"authors": "Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi Zhang, Guodong Zhang, Pieter Abbeel, Jimmy Ba",
"year": "2019",
"source": "https://arxiv.org/abs/1907.02057"
},
"1706.02275": {
"title": "Multi-Agent Actor-Critic for Mixed Cooperative-Competitive Environments",
"arxiv_id": "1706.02275",
"authors": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, Igor Mordatch",
"year": "2017",
"source": "https://arxiv.org/abs/1706.02275"
},
"2005.01643": {
"title": "Offline Reinforcement Learning: Tutorial, Review, and Perspectives on Open Problems",
"arxiv_id": "2005.01643",
"authors": "Sergey Levine, Aviral Kumar, George Tucker, Justin Fu",
"year": "2020",
"source": "https://arxiv.org/abs/2005.01643"
},
"1906.08253": {
"title": "When to Trust Your Model: Model-Based Policy Optimization",
"arxiv_id": "1906.08253",
"authors": "Michael Janner, Justin Fu, Marvin Zhang, Sergey Levine",
"year": "2019",
"source": "https://arxiv.org/abs/1906.08253"
},
"2210.14201": {
"title": "Bayesian mixture models (in)consistency for the number of clusters",
"arxiv_id": "2210.14201",
"authors": "Louise Alamichel, Daria Bystrova, Julyan Arbel, Guillaume Kon Kam King",
"year": "2022",
"source": "https://arxiv.org/abs/2210.14201"
},
"1606.01540": {
"title": "OpenAI Gym",
"arxiv_id": "1606.01540",
"authors": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, Wojciech Zaremba",
"year": "2016",
"source": "https://arxiv.org/abs/1606.01540"
},
"1707.01495": {
"title": "Hindsight Experience Replay",
"arxiv_id": "1707.01495",
"authors": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, Pieter Abbeel, Wojciech Zaremba",
"year": "2017",
"source": "https://arxiv.org/abs/1707.01495"
},
"1805.00909": {
"title": "Reinforcement Learning and Control as Probabilistic Inference: Tutorial and Review",
"arxiv_id": "1805.00909",
"authors": "Sergey Levine",
"year": "2018",
"source": "https://arxiv.org/abs/1805.00909"
},
"2106.02039": {
"title": "Offline Reinforcement Learning as One Big Sequence Modeling Problem",
"arxiv_id": "2106.02039",
"authors": "Michael Janner, Qiyang Li, Sergey Levine",
"year": "2021",
"source": "https://arxiv.org/abs/2106.02039"
},
"1511.05952": {
"title": "Prioritized Experience Replay",
"arxiv_id": "1511.05952",
"authors": "Tom Schaul, John Quan, Ioannis Antonoglou, David Silver",
"year": "2015",
"source": "https://arxiv.org/abs/1511.05952"
},
"1611.02779": {
"title": "RL$^2$: Fast Reinforcement Learning via Slow Reinforcement Learning",
"arxiv_id": "1611.02779",
"authors": "Yan Duan, John Schulman, Xi Chen, Peter L. Bartlett, Ilya Sutskever, Pieter Abbeel",
"year": "2016",
"source": "https://arxiv.org/abs/1611.02779"
}
},
"type": "arxiv"
}
},
"books": {
"linear_algebra_cherney": {
"type": "pdf_book",
"category": "linear_algebra",
"title": "Linear Algebra",
"authors": [
"David Cherney",
"Tom Denton",
"Rohit Thomas",
"Andrew Waldron"
],
"source": "https://www.math.ucdavis.edu/~linear/linear-guest.pdf",
"split_method": "toc",
"description": "Comprehensive free textbook from UC Davis covering all standard linear algebra topics",
"items": {
"chapter_01": {
"title": "What is Linear Algebra?",
"page_start": 9,
"page_end": 36,
"filename": "chapter_01_What_is_Linear_Algebra_.md"
},
"chapter_02": {
"title": "Systems of Linear Equations",
"page_start": 37,
"page_end": 70,
"filename": "chapter_02_Systems_of_Linear_Equations.md"
},
"chapter_03": {
"title": "The Simplex Method",
"page_start": 71,
"page_end": 82,
"filename": "chapter_03_The_Simplex_Method.md"
},
"chapter_04": {
"title": "Vectors in Space, n-Vectors",
"page_start": 83,
"page_end": 100,
"filename": "chapter_04_Vectors_in_Space__n_Vectors.md"
},
"chapter_05": {
"title": "Vector Spaces",
"page_start": 101,
"page_end": 110,
"filename": "chapter_05_Vector_Spaces.md"
},
"chapter_06": {
"title": "Linear Transformations",
"page_start": 111,
"page_end": 120,
"filename": "chapter_06_Linear_Transformations.md"
},
"chapter_07": {
"title": "Matrices",
"page_start": 121,
"page_end": 168,
"filename": "chapter_07_Matrices.md"
},
"chapter_08": {
"title": "Determinants",
"page_start": 169,
"page_end": 194,
"filename": "chapter_08_Determinants.md"
},
"chapter_09": {
"title": "Subspaces and Spanning Sets",
"page_start": 195,
"page_end": 202,
"filename": "chapter_09_Subspaces_and_Spanning_Sets.md"
},
"chapter_10": {
"title": "Linear Independence",
"page_start": 203,
"page_end": 212,
"filename": "chapter_10_Linear_Independence.md"
},
"chapter_11": {
"title": "Basis and Dimension",
"page_start": 213,
"page_end": 224,
"filename": "chapter_11_Basis_and_Dimension.md"
},
"chapter_12": {
"title": "Eigenvalues and Eigenvectors",
"page_start": 225,
"page_end": 240,
"filename": "chapter_12_Eigenvalues_and_Eigenvectors.md"
},
"chapter_13": {
"title": "Diagonalization",
"page_start": 241,
"page_end": 252,
"filename": "chapter_13_Diagonalization.md"
},
"chapter_14": {
"title": "Orthonormal Bases and Complements",
"page_start": 253,
"page_end": 276,
"filename": "chapter_14_Orthonormal_Bases_and_Complements.md"
},
"chapter_15": {
"title": "Diagonalizing Symmetric Matrices",
"page_start": 277,
"page_end": 284,
"filename": "chapter_15_Diagonalizing_Symmetric_Matrices.md"
},
"chapter_16": {
"title": "Kernel, Range, Nullity, Rank",
"page_start": 285,
"page_end": 302,
"filename": "chapter_16_Kernel__Range__Nullity__Rank.md"
},
"chapter_17": {
"title": "Least squares and Singular Values",
"page_start": 303,
"page_end": 314,
"filename": "chapter_17_Least_squares_and_Singular_Values.md"
},
"chapter_18": {
"title": "List of Symbols",
"page_start": 315,
"page_end": 316,
"filename": "chapter_18_List_of_Symbols.md"
},
"chapter_19": {
"title": "Fields",
"page_start": 317,
"page_end": 318,
"filename": "chapter_19_Fields.md"
},
"chapter_20": {
"title": "Online Resources",
"page_start": 319,
"page_end": 320,
"filename": "chapter_20_Online_Resources.md"
},
"chapter_21": {
"title": "Sample First Midterm",
"page_start": 321,
"page_end": 330,
"filename": "chapter_21_Sample_First_Midterm.md"
},
"chapter_22": {
"title": "Sample Second Midterm",
"page_start": 331,
"page_end": 340,
"filename": "chapter_22_Sample_Second_Midterm.md"
},
"chapter_23": {
"title": "Sample Final Exam",
"page_start": 341,
"page_end": 366,
"filename": "chapter_23_Sample_Final_Exam.md"
},
"chapter_24": {
"title": "Movie Scripts",
"page_start": 367,
"page_end": 431,
"filename": "chapter_24_Movie_Scripts.md"
},
"chapter_25": {
"title": "Index",
"page_start": 432,
"page_end": 436,
"filename": "chapter_25_Index.md"
}
}
},
"linear_algebra_axler": {
"type": "pdf_book",
"category": "linear_algebra",
"title": "Linear Algebra Done Right",
"authors": [
"Sheldon Axler"
],
"source": "https://linear.axler.net/LADR4e.pdf",
"split_method": "toc",
"description": "Focuses on vector spaces and linear maps rather than matrices",
"items": {}
},
"calculus_strang": {
"type": "pdf_book",
"category": "calculus",
"title": "Calculus",
"authors": [
"Gilbert Strang"
],
"source": "https://ocw.mit.edu/courses/res-18-001-calculus-fall-2023/mitres_18_001_f17_full_book.pdf",