-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathdataset.json
executable file
·2794 lines (2794 loc) · 134 KB
/
dataset.json
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
{
"0": [
{
"video_url": [
"https://www.youtube.com/watch?v=lyd5Q77qHKA"
],
"description": "fights-in-animal-kingdom",
"questions": [
{
"id": 0,
"question": "What prompts the otters to engage with the caiman?"
},
{
"id": 1,
"question": "How do chimpanzees communicate and coordinate their roles as drivers, blockers, and ambushers?"
},
{
"id": 2,
"question": "Do chimpanzees have a designated leader who dictates the strategy, or is it a more fluid process based on individual initiative and cues from the environment?"
},
{
"id": 3,
"question": "What factors ultimately determined the outcome of dramatic encounter between a group of wolves and muskox?"
},
{
"id": 4,
"question": "How do hippos, known for their aggressive nature, manage to integrate a new calf into the group without causing harm?"
},
{
"id": 5,
"question": "What are the ecological and evolutionary factors that have driven the development of the Japanese honeybees' heat-balling technique?"
},
{
"id": 6,
"question": "What are the ecological and evolutionary factors that have driven the development of the killer whale's beaching behavior?"
},
{
"id": 7,
"question": "Considering the vulnerability of freshly molted crabs, how do they determine the optimal timing for their mass molting event?"
},
{
"id": 8,
"question": "The video showcases the incredible journey of caribou as they migrate across vast distances. What navigational cues do they use to maintain their course and reach their destination?"
},
{
"id": 9,
"question": "Describe the dramatic fight between two male ibex competing for access to females at a waterhole."
},
{
"id": 10,
"question": "Describe the challenges faced by mother bears securing salmon."
}
],
"type": "documentary"
}
],
"1": [
{
"video_url": [
"https://www.youtube.com/watch?v=7ZhdXgRfxHI"
],
"description": "nature-scenes",
"questions": [
{
"id": 0,
"question": "How do flying fish evade predators like the dorado and frigate birds?"
},
{
"id": 1,
"question": "How do Darwin's bark spiders construct their webs, and what makes their silk so special?"
},
{
"id": 2,
"question": "What unusual behavior do vampire finches exhibit on the Galapagos Islands, and what are some possible explanations for this behavior?"
},
{
"id": 3,
"question": "How do poison dart frogs care for their young?"
},
{
"id": 4,
"question": "What challenges do Humboldt penguins face when trying to reach the sea for food in Peru, and how do they overcome these challenges?"
},
{
"id": 5,
"question": "How do army ants coordinate their hunting efforts and overcome obstacles in their path?"
},
{
"id": 6,
"question": "How do the giant cuttlefish of Australia reproduce?"
},
{
"id": 7,
"question": "What challenges do red crabs face during their annual migration on Christmas Island?"
},
{
"id": 8,
"question": "How do the red-legged seriema birds manage to avoid predators like the jaguar and the harpy eagle?"
},
{
"id": 9,
"question": "How do the hunting strategies of arctic wolves and cheetahs differ when pursuing caribou?"
},
{
"id": 10,
"question": "How do the reproductive strategies of male and female giant cuttlefish differ?"
},
{
"id": 11,
"question": "How does the symbiotic relationship between saddleback clownfish and carpet anemones benefit both species?"
},
{
"id": 12,
"question": "How have Eden's whales adapted their hunting behavior in response to declining fish populations due to agricultural pollution?"
},
{
"id": 13,
"question": "What makes the silk of Darwin's bark spider unique, and how does this property relate to its web-building strategy?"
},
{
"id": 14,
"question": "How does the Portuguese man-of-war capture and consume its prey?"
},
{
"id": 15,
"question": "What is the nature of its relationship with the man-of-war fish?"
},
{
"id": 16,
"question": "What challenges do puffin parents face when raising their chicks, and how have declining fish numbers impacted their ability to provide for their offspring?"
}
],
"type": "documentary"
}
],
"2": [
{
"video_url": [
"https://www.youtube.com/watch?v=5nwVzy2QJKM",
"https://www.youtube.com/watch?v=OlL9xwg5h5k",
"https://www.youtube.com/watch?v=O2AFzHERkDc",
"https://www.youtube.com/watch?v=A2vwQOaVg-E"
],
"description": "climate-week-at-columbia-engineering",
"questions": [
{
"id": 0,
"question": "What role does the spherical tokamak design play in Tokamak Energy LLC's approach to fusion?"
},
{
"id": 1,
"question": "Why did the triple product in fusion research stop accelerating in the late 1990s/early 2000s?"
},
{
"id": 2,
"question": "What is the potential impact of fusion for climate and space exploration?"
},
{
"id": 3,
"question": "What is the Department of Energy's (DOE) Milestone program?"
},
{
"id": 4,
"question": "How can symbolic regression be used to improve climate modeling?"
},
{
"id": 5,
"question": "How can we improve the trustworthiness and interpretability of climate models that use machine learning?"
},
{
"id": 6,
"question": "How does the Software Carbon Intensity (SCI) standard apply to AI?"
},
{
"id": 7,
"question": "How do researchers at Columbia University work to close data gaps in air pollution monitoring?"
},
{
"id": 8,
"question": "What is the idea behind the air sensors lab at Columbia's Lamont Doherty Earth Observatory?"
},
{
"id": 9,
"question": "How do researchers calibrate low-cost air quality sensors to provide more accurate data?"
},
{
"id": 10,
"question": "What are the challenges of transitioning from charcoal to LPG as a cooking fuel in Ghana, and what are the potential benefits?"
},
{
"id": 11,
"question": "How does AI impact sustainable computing's energy demands?"
},
{
"id": 12,
"question": "What are the main challenges hindering fusion energy commercialization?"
},
{
"id": 13,
"question": "Outline the timeline for a fusion pilot plant, ideal vs. realistic."
},
{
"id": 14,
"question": "What are the economic benefits and opportunities that could arise from successful commercialization of fusion energy?"
},
{
"id": 15,
"question": "How does the spherical tokamak design differ from traditional tokamaks, and what potential advantages does it offer?"
},
{
"id": 16,
"question": "What specific engineering challenges are currently hindering the progress of fusion energy development?"
},
{
"id": 17,
"question": "What are some specific examples of how AI has already been successfully applied to improve climate modeling?"
},
{
"id": 18,
"question": "How can AI be used to improve the accuracy and resolution of climate predictions, particularly at regional and local scales?"
},
{
"id": 19,
"question": "What are some of the benchmark datasets and metrics being used to evaluate the performance of AI-based climate models?"
},
{
"id": 20,
"question": "What are some of the techniques being explored to improve the energy efficiency of data centers, particularly in the context of growing AI workloads?"
},
{
"id": 21,
"question": "What are some of the challenges in accurately measuring the carbon footprint of AI systems, and what initiatives are underway to address these challenges?"
},
{
"id": 22,
"question": "What are some of the policy and regulatory options for mitigating the environmental impact of AI, and what are the trade-offs associated with different approaches?"
},
{
"id": 23,
"question": "What are the challenges and opportunities in using low-cost air quality sensors to inform policy decisions and community action?"
},
{
"id": 24,
"question": "What are the social and economic factors that influence the adoption of clean energy technologies in developing countries, and how can interventions be designed to address these barriers?"
},
{
"id": 25,
"question": "What are the potential benefits of integrating social and economic considerations into building energy models and decarbonization plans?"
}
],
"type": "lecture"
}
],
"3": [
{
"video_url": [
"https://www.youtube.com/watch?v=YASXk7Pu8HA",
"https://www.youtube.com/watch?v=6SAn0qQJTrE",
"https://www.youtube.com/watch?v=z6-56Hotizo",
"https://www.youtube.com/watch?v=c3feO_Lkp5A",
"https://www.youtube.com/watch?v=cHOGc6vW4Pc",
"https://www.youtube.com/watch?v=FsawILngs9E",
"https://www.youtube.com/watch?v=zRjDebvjxaY",
"https://www.youtube.com/watch?v=pKCkCJhTHA8",
"https://www.youtube.com/watch?v=TmnRuIFn1iU",
"https://www.youtube.com/watch?v=_FLt-6AMbx8"
],
"description": "black-myth-wukong",
"questions": [
{
"id": 0,
"question": "What overarching themes of freedom, destiny, and morality emerge?"
},
{
"id": 1,
"question": "What are the central conflicts and their resolutions in this story?"
},
{
"id": 2,
"question": "How does the narrative explore the nature of power and its consequences?"
},
{
"id": 3,
"question": "How does the game use visual storytelling to convey its themes?"
},
{
"id": 4,
"question": "What specific in-game mechanics are described in Part 1?"
},
{
"id": 5,
"question": "What gameplay mechanics are described in the excerpts?"
},
{
"id": 6,
"question": "What are the strengths and weaknesses of the 'Tiger-Snake' enemies encountered in Chapter 5?"
},
{
"id": 7,
"question": "What significant events occur in Black Wind Mountain?"
},
{
"id": 8,
"question": "What are some of the challenges the player faces in mastering the combat system?"
},
{
"id": 9,
"question": "What strategies can players employ to effectively counter the attacks of enemies that inflict frost status ailments?"
},
{
"id": 10,
"question": "How does the 'Self Advance' system enhance the player's combat abilities?"
},
{
"id": 11,
"question": "What are the distinct combat advantages of using the spear compared to the staff?"
},
{
"id": 12,
"question": "What are the different stances or forms associated with the staff, and how do they affect the player's combat approach?"
},
{
"id": 13,
"question": "What story does the mural in the Water Curtain Cave tell, and how does it relate to the events of the game?"
},
{
"id": 14,
"question": "What is the significance of the statues depicting the 'Jade Emperor' in the game's world?"
},
{
"id": 15,
"question": "What challenges does the player encounter when fighting enemies in the cave environments of Chapter 5?"
},
{
"id": 16,
"question": "How does the camera behave differently during combat with certain enemies?"
},
{
"id": 17,
"question": "What is the purpose of the 'Keeper Shrines' found throughout the game world?"
},
{
"id": 18,
"question": "What notable environmental features are present in the 'Valley of Ecstasy'?"
},
{
"id": 19,
"question": "What visually distinctive element guides the player through the environments?"
},
{
"id": 20,
"question": "How does the player acquire new spells?"
},
{
"id": 21,
"question": "What effect does the 'Knot of Voidness' item have on the player's abilities?"
},
{
"id": 22,
"question": "What is unique about the staff the player receives as a reward from the character in the 'Valley of Ecstasy'?"
}
],
"type": "entertainment"
}
],
"4": [
{
"video_url": [
"https://www.youtube.com/watch?v=45LJT-bt500",
"https://www.youtube.com/watch?v=g21royNJ4fw",
"https://www.youtube.com/watch?v=kzP1sFynhxE",
"https://www.youtube.com/watch?v=oageL-1I0GE",
"https://www.youtube.com/watch?v=Hj7PuK1bMZU",
"https://www.youtube.com/watch?v=YPs4eGDpIY4",
"https://www.youtube.com/watch?v=6efwN_US-zk",
"https://www.youtube.com/watch?v=tmiBae2goJM",
"https://www.youtube.com/watch?v=w5WGbUGAE3s",
"https://www.youtube.com/watch?v=DI9Q60T_054",
"https://www.youtube.com/watch?v=UZg_xyIS9_E",
"https://www.youtube.com/watch?v=Fv_j52DDJUE",
"https://www.youtube.com/watch?v=SrXjuNRTOcI",
"https://www.youtube.com/watch?v=W-iUd_pjOQA",
"https://www.youtube.com/watch?v=rhJJynv47Pw",
"https://www.youtube.com/watch?v=QQAkXHRJcZg",
"https://www.youtube.com/watch?v=EwtoG-f1mLk",
"https://www.youtube.com/watch?v=Rg35oYuus-w",
"https://www.youtube.com/watch?v=vX3A96_F3FU"
],
"description": "rag-lecture",
"questions": [
{
"id": 0,
"question": "Describe the main differences between the two RAG systems mentioned in the video (text-based and vision-based)."
},
{
"id": 1,
"question": "What are the advantages of vision-based RAG over text-based RAG?"
},
{
"id": 2,
"question": "Comparative analysis of the advantages and disadvantages of ColPali and traditional RAG in PDF processing."
},
{
"id": 3,
"question": "Explain Anthropic's prompt caching mechanism and its difference with Gemini context caching."
},
{
"id": 4,
"question": "Describe the core difference between traditional RAG and Agentic RAG, highlighting the role of agents."
},
{
"id": 5,
"question": "Explain the process of query refinement and iterative retrieval within the Agentic RAG framework."
},
{
"id": 6,
"question": "Compare and contrast the functionality and performance of localGPT-Vision with traditional RAG pipelines."
},
{
"id": 7,
"question": "Explain ColPali's vision-based approach to RAG."
},
{
"id": 8,
"question": "How does ColPail improve document retrieval?"
},
{
"id": 9,
"question": "How does ColPali improve PDF processing?"
},
{
"id": 10,
"question": "How does LightRAG compare to GraphRAG in terms of cost and performance?"
},
{
"id": 11,
"question": "Discuss the role of keyword-based search mechanisms (e.g., BM25) in improving RAG performance."
},
{
"id": 12,
"question": "Discuss the limitations of RAG systems."
},
{
"id": 13,
"question": "Discuss the Framework of GraphRAG."
},
{
"id": 14,
"question": "How to build Multi-modal RAG System?"
},
{
"id": 15,
"question": "What are the key components of the Local GPT Vision system?"
},
{
"id": 16,
"question": "How does Gemini's ability to understand the visual layout of a PDF, such as the placement of figures and tables, impact its accuracy in extracting information like captions and reference lists compared to traditional RAG systems?"
},
{
"id": 17,
"question": "When to use prompt caching?"
},
{
"id": 18,
"question": "Discuss the relationships between ColPali and LocalGPT-Vision."
},
{
"id": 19,
"question": "Using ColBERT as an example to explain the benefits of NotebookLM compared to the standard RAG architecture."
},
{
"id": 20,
"question": "What are the key differences between Anthropic and Gemini's caching approaches?"
},
{
"id": 21,
"question": "Compare and contrast Gemini Flash's PDF processing capabilities with those of GPT-4, highlighting specific examples from the transcript."
},
{
"id": 22,
"question": "Discuss the economic implications of using Gemini Flash versus traditional RAG systems for PDF processing, considering file size."
},
{
"id": 23,
"question": "Analyze Gemini Flash's multi-modal capabilities in handling PDFs containing images, tables, and text, citing specific examples."
},
{
"id": 24,
"question": "What are the limitations of using vision-language models like Quin-2 for local multimodal RAG implementations, especially concerning resource requirements and model performance on complex documents."
},
{
"id": 25,
"question": "How does the concept of 'late chunking' presented in the sources challenge traditional notions of chunking in RAG?"
},
{
"id": 26,
"question": "How might the evolution of long-context models like Gemini Flash impact the future of RAG development, particularly in terms of balancing cost, efficiency, and retrieval accuracy?"
},
{
"id": 27,
"question": "What are the potential ethical concerns of using a proprietary API like Gemini for PDF processing, compared to open-source RAG solutions? Consider factors like data privacy, vendor lock-in, and the transparency of model behavior."
},
{
"id": 28,
"question": "Compare and contrast Anthropic's prompt caching with Google's context caching for cost and latency reduction."
},
{
"id": 29,
"question": "What is prompt caching and how does it work?"
},
{
"id": 30,
"question": "How does prompt caching compare to traditional RAG in terms of cost and efficiency?"
},
{
"id": 31,
"question": "What are the limitations of prompt caching and when is traditional RAG still a better option?"
},
{
"id": 32,
"question": "What are some advanced RAG techniques and how do they address the limitations of basic RAG?"
},
{
"id": 33,
"question": "Discuss the role of keyword-based search mechanisms (e.g., BM25) in improving RAG performance."
},
{
"id": 34,
"question": "How does Anthropic's contextual retrieval approach compare to other techniques like late chunking in long context embedding models?"
},
{
"id": 35,
"question": "Discuss the chunking strategies in RAG."
},
{
"id": 36,
"question": "What are the potential benefits and drawbacks of 'late chunking' in terms of retrieval effectiveness and computational cost?"
},
{
"id": 37,
"question": "How does 'late chunking' enhance retrieval system accuracy?"
}
],
"type": "lecture"
}
],
"5": [
{
"video_url": [
"https://www.youtube.com/watch?v=KxBWU96zfBY",
"https://www.youtube.com/watch?v=KliTr9N0Ayw",
"https://www.youtube.com/watch?v=B8s-FyN4UeE",
"https://www.youtube.com/watch?v=KIvl-VY8H0Y",
"https://www.youtube.com/watch?v=ob45YmYD2KI",
"https://www.youtube.com/watch?v=ut8qStGS7YM",
"https://www.youtube.com/watch?v=Rcm1kh6HVdg",
"https://www.youtube.com/watch?v=I2F9H7mNJCI",
"https://www.youtube.com/watch?v=eLiMpEIRBzY",
"https://www.youtube.com/watch?v=nrW__jof8pg",
"https://www.youtube.com/watch?v=aRHl-XS6Za0",
"https://www.youtube.com/watch?v=fDErWDOT4XE",
"https://www.youtube.com/watch?v=ybau-0ZIsMc",
"https://www.youtube.com/watch?v=VwbBBcvsWZM",
"https://www.youtube.com/watch?v=a5OW5UAyC3E",
"https://www.youtube.com/watch?v=nTOMrRSJDJw",
"https://www.youtube.com/watch?v=dOgfxt6Usok",
"https://www.youtube.com/watch?v=od6AaKhKYmg",
"https://www.youtube.com/watch?v=CdWGS0VT9gQ",
"https://www.youtube.com/watch?v=T48MPzkzMAM",
"https://www.youtube.com/watch?v=_XOCAVsr3KU",
"https://www.youtube.com/watch?v=b-wk1ZJKl0s",
"https://www.youtube.com/watch?v=rpAtVIZB72U",
"https://www.youtube.com/watch?v=C54nXpmm-6c",
"https://www.youtube.com/watch?v=28w5uFiX-po",
"https://www.youtube.com/watch?v=Ra8n_9wnHFs",
"https://www.youtube.com/watch?v=gKxUqewzNSc",
"https://www.youtube.com/watch?v=ZQ7gpMVMaKQ",
"https://www.youtube.com/watch?v=-4JHQg1jubw",
"https://www.youtube.com/watch?v=Z6UI9r1y0_M",
"https://www.youtube.com/watch?v=8qFRdk_kZIo",
"https://www.youtube.com/watch?v=Oasl9rSJNds",
"https://www.youtube.com/watch?v=_1dS6ddf4uU",
"https://www.youtube.com/watch?v=LBih635lzps",
"https://www.youtube.com/watch?v=lnWrF-xcwq0",
"https://www.youtube.com/watch?v=KYvVl0UT1Sk",
"https://www.youtube.com/watch?v=t9fynSaqE5c",
"https://www.youtube.com/watch?v=p82aMGJJLU8",
"https://www.youtube.com/watch?v=M4JMfVZ7LPQ"
],
"description": "ai-agent-lecture",
"questions": [
{
"id": 0,
"question": "How does MemGPT integrate local open-source LLMs for processing?"
},
{
"id": 1,
"question": "Discuss various methods for integrating local LLMs into agent frameworks."
},
{
"id": 2,
"question": "Compare Mistral AI's and OpenAI's agent frameworks."
},
{
"id": 3,
"question": "How does Mistral AI's agent builder function?"
},
{
"id": 4,
"question": "What are the key features of AutoGen Studio?"
},
{
"id": 5,
"question": "What are the performance trade-offs of local versus cloud LLMs in MemGPT?"
},
{
"id": 6,
"question": "How does Anthropic's Claude 3 address LLM limitations?"
},
{
"id": 7,
"question": "How does Anthropic's system prompt design differ from typical approaches?"
},
{
"id": 8,
"question": "What methods are used to improve LLM retrieval accuracy?"
},
{
"id": 9,
"question": "What are the advantages and disadvantages of local vs. cloud LLMs in AutoGen Studio?"
},
{
"id": 10,
"question": "What technical challenges arise when using local LLMs with MemGPT?"
},
{
"id": 11,
"question": "How do proprietary data and APIs impact GPT replicability?"
},
{
"id": 12,
"question": "How are AI agents used in financial analysis?"
},
{
"id": 13,
"question": "How do different AI agent frameworks compare?"
},
{
"id": 14,
"question": "What are some examples of custom GPTs discussed?"
},
{
"id": 15,
"question": "How do Claude 3's different models compare in their system prompts?"
},
{
"id": 16,
"question": "What are the key features of Claude 3.5 Sonnet's system prompt?"
},
{
"id": 17,
"question": "What methods are used by OpenAI's SWARM for multi-agent system orchestration?"
},
{
"id": 18,
"question": "How does Mistral AI's agent builder simplify agent creation?"
},
{
"id": 19,
"question": "What limitations exist in current agentic frameworks?"
},
{
"id": 20,
"question": "How can users modify the output video generated by InVideo AI?"
},
{
"id": 21,
"question": "What are the key differences between Consensus GPT and Scholar GPT?"
},
{
"id": 22,
"question": "Describe the process of using sub-agents and a super agent to analyze financial reports in a PDF format."
},
{
"id": 23,
"question": "How do XML tags enhance prompt engineering within Claude?"
},
{
"id": 24,
"question": "How does Claude 3.5 Sonet handle citations, considering its inability to access external databases?"
},
{
"id": 25,
"question": "What specific instructions are given to Claude regarding the identification of humans in images?"
},
{
"id": 26,
"question": "How does the system prompt inform Claude 3.5 Sonet about the different models within the Claude family?"
},
{
"id": 27,
"question": "How does Cursor enable users to incorporate external documentation into their projects?"
},
{
"id": 28,
"question": "Explain the concept of 'Fast prompts' in Cursor and their limitations."
},
{
"id": 29,
"question": "Describe the three stages of fine-tuning LLMs, including an optional step."
},
{
"id": 30,
"question": "What are the three main supervised fine-tuning techniques and their performance implications?"
},
{
"id": 31,
"question": "How does the WBY voice assistant leverage function calling to perform actions on behalf of the user?"
},
{
"id": 32,
"question": "In the context of analyzing financial data, what specific task does the 'Opus' model perform in the agent workflow?"
},
{
"id": 33,
"question": "What specific phrase does Anthropic's system prompt instruct Claude to avoid when starting responses?"
},
{
"id": 34,
"question": "What is the primary goal of the open-source project DEVIKA?"
},
{
"id": 35,
"question": "What is the purpose of 'preference alignment' in the process of fine-tuning LLMs?"
},
{
"id": 36,
"question": "How does OpenAI's approach to prompt caching differ from the implementations of Google and Anthropic?"
},
{
"id": 37,
"question": "What is the core concept behind 'model distillation' in the context of LLMs?"
},
{
"id": 38,
"question": "What is the potential benefit of using the 'Graph RAG' approach over traditional 'RAG' systems, particularly when working with large or complex knowledge graphs?"
},
{
"id": 39,
"question": "What is the main limitation of open-source LLMs in relation to running advanced agents like SWE-Agent?"
},
{
"id": 40,
"question": "What are the key differences between traditional RAG and Graph RAG?"
},
{
"id": 41,
"question": "Which model claims to surpass GPT-4 on benchmarks?"
},
{
"id": 42,
"question": "What are the limitations of LLMs in reasoning tasks?"
},
{
"id": 43,
"question": "How does Ollama facilitate local LLM usage in Graph RAG?"
},
{
"id": 44,
"question": "What challenges arise when using smaller LLMs?"
}
],
"type": "lecture"
}
],
"6": [
{
"video_url": [
"https://www.youtube.com/watch?v=RkGK0MloK0E",
"https://www.youtube.com/watch?v=1s9zZ6ERAko",
"https://www.youtube.com/watch?v=RNqXpdwd9AA",
"https://www.youtube.com/watch?v=2zaJZ_F7Xrk"
],
"description": "daubechies-wavelet-lecture",
"questions": [
{
"id": 0,
"question": "What are the inherent limitations of time-frequency localization?"
},
{
"id": 1,
"question": "How do different window functions impact time-frequency analysis?"
},
{
"id": 2,
"question": "Explain Daubechies' 'Zak transform' and its purpose."
},
{
"id": 3,
"question": "Discuss limitations of orthonormal bases in time-frequency analysis."
},
{
"id": 4,
"question": "What mathematical structures underpin time-frequency representations?"
},
{
"id": 5,
"question": "Describe the role of the Heisenberg group in time-frequency analysis."
},
{
"id": 6,
"question": "Compare and contrast windowed Fourier transforms and wavelet transforms."
},
{
"id": 7,
"question": "What is the significance of the parameter Ωτ in windowed Fourier transforms?"
},
{
"id": 8,
"question": "Discuss the significance of using orthogonal windows in signal analysis."
},
{
"id": 9,
"question": "Explain the 'no-go theorem' regarding orthonormal time-frequency bases."
},
{
"id": 10,
"question": "Explain the significance of the product ωτ = 2π in time-frequency analysis."
},
{
"id": 11,
"question": "How does the synchrosqueezing transform enhance signal analysis?"
},
{
"id": 12,
"question": "How does Daubechies illustrate the effectiveness of synchrosqueezing in extracting fetal heartbeats from maternal ECGs?"
},
{
"id": 13,
"question": "What insights can be gained from analyzing bird songs using synchrosqueezing?"
},
{
"id": 14,
"question": "What is the specific medical application that Daubechies highlights for time-frequency analysis in the context of fetal health?"
},
{
"id": 15,
"question": "What specific features of bird songs make them interesting for analysis using time-frequency methods? What biological questions are researchers hoping to address?"
},
{
"id": 16,
"question": "How does Daubechies describe the appearance of a spectrogram for a signal with time-varying frequencies? What features indicate changes in frequency content over time?"
},
{
"id": 17,
"question": "What specific time-frequency patterns does Daubechies describe as indicative of singularities in a signal?"
},
{
"id": 18,
"question": "How does Daubechies motivate the use of 'interval statistics' in signal analysis by drawing an analogy to the human auditory system?"
},
{
"id": 19,
"question": "In the context of the synchrosqueezing transform, Daubechies discusses the use of multi-tapering with Hermite functions. What specific example does she provide to illustrate the improvement achieved by this technique?"
},
{
"id": 20,
"question": "Daubechies describes an analysis of a simulated signal with two cosine components and varying instantaneous frequencies. What specific observations does she make about the resulting time-frequency representation?"
},
{
"id": 21,
"question": "What limitations does Daubechies acknowledge in the use of the cepstrum for extracting signal components?"
},
{
"id": 22,
"question": "What future directions for research does Daubechies suggest in the context of analyzing animal vocalizations using time-frequency methods?"
},
{
"id": 23,
"question": "Throughout the lectures, Daubechies emphasizes the importance of understanding the underlying signal model. How does this perspective guide the choice and interpretation of time-frequency analysis techniques?"
},
{
"id": 24,
"question": "What general insights does Daubechies offer about the interplay between mathematical theory, computational methods, and real-world applications in the field of time-frequency analysis?"
}
],
"type": "lecture"
}
],
"7": [
{
"video_url": [
"https://www.youtube.com/watch?v=wfmUNIpMyvo",
"https://www.youtube.com/watch?v=2rfzNw2I26Y",
"https://www.youtube.com/watch?v=Z19uz6Bol3I",
"https://www.youtube.com/watch?v=4n1vNDFqwY8"
],
"description": "daubechies-art-and-mathematics-lecture",
"questions": [
{
"id": 0,
"question": "How do mathematical tools enhance art historical analysis?"
},
{
"id": 1,
"question": "What novel applications of mathematics exist within art conservation?"
},
{
"id": 2,
"question": "How did circular harmonics aid fresco reconstruction?"
},
{
"id": 3,
"question": "How did x-ray fluorescence aid the analysis of Van Gogh's painting?"
},
{
"id": 4,
"question": "How did mathematical techniques aid in reconstructing the Padua frescoes?"
},
{
"id": 5,
"question": "Describe Ingrid Daubechies's collaboration with the North Carolina Museum of Art."
},
{
"id": 6,
"question": "How did mathematics aid in reconstructing the Padua frescoes?"
},
{
"id": 7,
"question": "What methods were used to virtually age and rejuvenate the Giotto altarpiece?"
},
{
"id": 8,
"question": "How did Massimo Fonacier reconstruct damaged frescoes?"
},
{
"id": 9,
"question": "What motivations did Ingrid Daubechies express for engaging in collaborations with art historians and conservators?"
},
{
"id": 10,
"question": "Explain the role of human expertise in projects involving the application of mathematics to art conservation. Provide specific examples."
},
{
"id": 11,
"question": "What mathematical concept, used to analyze signal frequency, did Daubechies employ to analyze variations in scale and detail within Van Gogh's brushstrokes?"
},
{
"id": 12,
"question": "What specific mathematical tool, based on the unique property of predictable transformation under rotation, was central to the reconstruction of the Padua frescoes?"
},
{
"id": 13,
"question": "How did the digitization process capture the visual information of the fresco fragments?"
},
{
"id": 14,
"question": "Explain the mathematical challenge of identifying the correct rotation of fresco fragments. How did circular harmonics help overcome this obstacle?"
},
{
"id": 15,
"question": "What was the 'Munt Lab' and what role did it play in the reconstruction project?"
},
{
"id": 16,
"question": "How did Daubechies's team address the challenge of 'cradle' interference in X-ray images of panel paintings? What was the impact of this work?"
},
{
"id": 17,
"question": "In addition to her work with the North Carolina Museum of Art, what other applications of mathematics to art conservation and scientific research did Daubechies discuss?"
},
{
"id": 18,
"question": "How has Ingrid Daubechies's work influenced the practices of art conservators and historians?"
},
{
"id": 19,
"question": "What concerns did the North Carolina Museum of Art (NCMA) initially have about the reconstruction of the Gisi Altarpiece?"
},
{
"id": 20,
"question": "What was the broader significance of the Gisi Altarpiece project, beyond the physical reunification of the artwork?"
}
],
"type": "lecture"
}
],
"8": [
{
"video_url": [
"https://www.youtube.com/watch?v=-GHyXBcpOZI",
"https://www.youtube.com/watch?v=YG6Tv8aoAuM",
"https://www.youtube.com/watch?v=1xTTRCIWMlg",
"https://www.youtube.com/watch?v=K1DlToP60rc"
],
"description": "tech-ceo-lecture",
"questions": [
{
"id": 0,
"question": "What are the main research and development priorities for Saint-Gobain?"