-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph-data.js
More file actions
1771 lines (1767 loc) · 101 KB
/
Copy pathgraph-data.js
File metadata and controls
1771 lines (1767 loc) · 101 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
const GRAPH_DATA = {
meta: {
title: "ML & AI Knowledge Graph",
subtitle: "by Sajil C. K. — Machine Learning Malayalam",
channelUrl: "https://www.youtube.com/@sajil36",
githubUrl: "https://github.com/cksajil",
websiteUrl: "https://intuitivetutorial.com",
linkedinUrl: "https://linkedin.com/in/sajilck",
},
nodes: [
{
id: "two-areas-statistics",
label: "Two Areas of Statistics",
domain: "foundations",
level: "beginner",
summary: "Overview of descriptive and inferential statistics and their role in data science.",
resources: [{"type": "video", "label": "Two areas of statistics", "url": "https://www.youtube.com/embed/FePF2YIdntM", "duration": ""}, {"type": "video", "label": "Intro to Descriptive Statistics", "url": "https://www.youtube.com/embed/8Q4oSDfhso8", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "math-for-dsml",
label: "Math for DSML",
domain: "foundations",
level: "beginner",
summary: "Why mathematics is essential for data science and machine learning careers.",
resources: [{"type": "video", "label": "Math4DSML", "url": "https://www.youtube.com/embed/R3Lf-MyQ9Cg", "duration": ""}, {"type": "video", "label": "math notations 1", "url": "https://www.youtube.com/embed/aT3Oc4Z--qQ", "duration": ""}, {"type": "video", "label": " Measures of central tendency", "url": "https://www.youtube.com/embed/Q3WDm0OV_DY", "duration": ""}, {"type": "video", "label": "Percentiles and Quartiles", "url": "https://www.youtube.com/embed/5Zb8EExsXsI", "duration": ""}, {"type": "video", "label": "Finding outliers using Quartiles", "url": "https://www.youtube.com/embed/sK0QbCA81Fg", "duration": ""}, {"type": "video", "label": "Measures of dispersion", "url": "https://www.youtube.com/embed/LumyZy9-MLk", "duration": ""}, {"type": "video", "label": "corr_cause", "url": "https://www.youtube.com/embed/gh1MV72Otm0", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "why-functions",
label: "Why Functions",
domain: "foundations",
level: "beginner",
summary: "The concept of mathematical functions and their importance in ML models.",
resources: [{"type": "video", "label": "Functions in Mathematics", "url": "https://www.youtube.com/embed/gWRvE2_RR98", "duration": ""}, {"type": "video", "label": "Visualizing Functions", "url": "https://www.youtube.com/embed/W7S4tFQxDWY", "duration": ""}, {"type": "video", "label": "infinity", "url": "https://www.youtube.com/embed/0IOfGyncK3g", "duration": ""}, {"type": "video", "label": "concept of derivative", "url": "https://www.youtube.com/embed/JpQUtO09xi8", "duration": ""}, {"type": "video", "label": "Direction in Derivative", "url": "https://www.youtube.com/embed/-rofr5JMOpU", "duration": ""}, {"type": "video", "label": "Partial Derivative", "url": "https://www.youtube.com/embed/P8VbRBfEPXc", "duration": ""}, {"type": "blog", "label": "Session Notes — Calculus for Data Science", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_22.md"}]
},
{
id: "vscode-intro",
label: "VS Code Intro",
domain: "tools",
level: "beginner",
summary: "Quick introduction to Visual Studio Code as a development environment for ML.",
resources: [{"type": "video", "label": "Quick Intro to VS Code", "url": "https://www.youtube.com/embed/cds3AVwB_lI", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Science Tools", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_07.md"}]
},
{
id: "ds-installation",
label: "DS Installation",
domain: "tools",
level: "beginner",
summary: "Installing Python, Jupyter, and essential data science libraries from scratch.",
resources: [{"type": "video", "label": "Data Science Installation Requirements", "url": "https://www.youtube.com/embed/_fuAooCJTpA", "duration": ""}]
},
{
id: "touch-typing",
label: "Touch Typing",
domain: "foundations",
level: "beginner",
summary: "Why touch typing is a high-leverage foundational skill for developers.",
resources: [{"type": "video", "label": "typing_club", "url": "https://www.youtube.com/embed/zogFqFJivwI", "duration": ""}, {"type": "blog", "label": "Session Notes — IT Foundations for Data Science", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_02.md"}]
},
{
id: "github-profile",
label: "GitHub Profile",
domain: "tools",
level: "beginner",
summary: "Importance of a strong GitHub profile for landing data science jobs.",
resources: [{"type": "video", "label": "github_dsml", "url": "https://www.youtube.com/embed/8VPh9Yk9QZI", "duration": ""}, {"type": "blog", "label": "Session Notes — IT Foundations for Data Science", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_02.md"}]
},
{
id: "descriptive-stats",
label: "Descriptive Statistics",
domain: "foundations",
level: "beginner",
summary: "Key concepts in descriptive statistics including mean, median, mode, and spread.",
resources: [{"type": "video", "label": "Descriptive Statistics", "url": "https://www.youtube.com/embed/XLIDV976zr0", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "python-numeric",
label: "Python Numeric Types",
domain: "foundations",
level: "beginner",
summary: "Python's integer and float types, operations, and numeric data handling.",
resources: [{"type": "video", "label": "Python Numeric Data Types", "url": "https://www.youtube.com/embed/IMrXLi2laS4", "duration": ""}, {"type": "video", "label": "Python String", "url": "https://www.youtube.com/embed/MTgNjXlO9po", "duration": ""}, {"type": "video", "label": "Python List", "url": "https://www.youtube.com/embed/GI-PeOJDAps", "duration": ""}, {"type": "video", "label": "Python Tuple", "url": "https://www.youtube.com/embed/0U4h0hDkH7k", "duration": ""}, {"type": "video", "label": "Python Set", "url": "https://www.youtube.com/embed/RDGxJFbDcag", "duration": ""}, {"type": "video", "label": "Python Standard I/O", "url": "https://www.youtube.com/embed/iFZlU-ZWuzg", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-strings",
label: "Python Strings",
domain: "foundations",
level: "beginner",
summary: "String data type in Python \u2014 creation, indexing, slicing, and common methods.",
resources: [{"type": "video", "label": "Python Strings", "url": "https://www.youtube.com/embed/MTgNjXlO9po", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-lists",
label: "Python Lists",
domain: "foundations",
level: "beginner",
summary: "Python lists \u2014 creating, accessing, modifying, and iterating over list elements.",
resources: [{"type": "video", "label": "Python Lists", "url": "https://www.youtube.com/embed/GI-PeOJDAps", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-tuples",
label: "Python Tuples",
domain: "foundations",
level: "beginner",
summary: "Immutable sequences in Python and when to use tuples over lists.",
resources: [{"type": "video", "label": "Python Tuples", "url": "https://www.youtube.com/embed/0U4h0hDkH7k", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-range",
label: "Python Range",
domain: "foundations",
level: "beginner",
summary: "The range data type in Python and its use in loops and sequences.",
resources: [{"type": "video", "label": "Python Range", "url": "https://www.youtube.com/embed/i9mJngeSCHw", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-dict",
label: "Python Dictionaries",
domain: "foundations",
level: "beginner",
summary: "Key-value data storage in Python using dictionaries with common operations.",
resources: [{"type": "video", "label": "Python Dictionary", "url": "https://www.youtube.com/embed/ZtqoZ34W8lA", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-sets",
label: "Python Sets",
domain: "foundations",
level: "beginner",
summary: "Python sets for storing unique elements and performing set operations.",
resources: [{"type": "video", "label": "Python Sets", "url": "https://www.youtube.com/embed/RDGxJFbDcag", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-boolean",
label: "Python Booleans",
domain: "foundations",
level: "beginner",
summary: "Boolean data type, True/False values, and logical expressions in Python.",
resources: [{"type": "video", "label": "Python Boolean", "url": "https://www.youtube.com/embed/94huU3v5TAU", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-none",
label: "Python None Type",
domain: "foundations",
level: "beginner",
summary: "The None type in Python representing absence of value and its common uses.",
resources: [{"type": "video", "label": "Python None", "url": "https://www.youtube.com/embed/AR5nH9qF2sM", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-arithmetic",
label: "Python Arithmetic Ops",
domain: "foundations",
level: "beginner",
summary: "Arithmetic operators in Python including addition, subtraction, multiplication, and division.",
resources: [{"type": "video", "label": "Python Arithmetic Ops", "url": "https://www.youtube.com/embed/5Rzy8ikgsts", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-operators",
label: "Python Operators",
domain: "foundations",
level: "beginner",
summary: "Comparison, logical, and assignment operators in Python with examples.",
resources: [{"type": "video", "label": "Python Operators 1", "url": "https://www.youtube.com/embed/5Rzy8ikgsts", "duration": ""}, {"type": "video", "label": "Python Operators 2", "url": "https://www.youtube.com/embed/5I0FYZVyYeU", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-if",
label: "Python IF Statement",
domain: "foundations",
level: "beginner",
summary: "Conditional logic in Python using the if statement for decision making.",
resources: [{"type": "video", "label": "Python IF", "url": "https://www.youtube.com/embed/nY4XQDsZzFY", "duration": ""}, {"type": "blog", "label": "Session Notes — Control Flow", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_09.md"}]
},
{
id: "python-if-else",
label: "Python If Else",
domain: "foundations",
level: "beginner",
summary: "Two-way branching in Python using if-else for handling alternate conditions.",
resources: [{"type": "video", "label": "Python IF-ELSE", "url": "https://www.youtube.com/embed/lE3IGtyXjLg", "duration": ""}, {"type": "video", "label": "Python IF-ELIF-ELSE", "url": "https://www.youtube.com/embed/YDBZ0rban3M", "duration": ""}, {"type": "blog", "label": "Session Notes — Control Flow", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_09.md"}]
},
{
id: "python-if-elif",
label: "Python If Elif Else",
domain: "foundations",
level: "beginner",
summary: "Multi-way branching in Python using if-elif-else chains.",
resources: [{"type": "video", "label": "Python If Elif Else", "url": "https://www.youtube.com/embed/YDBZ0rban3M", "duration": ""}, {"type": "blog", "label": "Session Notes — Control Flow", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_09.md"}]
},
{
id: "operator-overloading",
label: "Operator Overloading",
domain: "foundations",
level: "intermediate",
summary: "How Python allows redefining operator behavior for custom objects.",
resources: [{"type": "video", "label": "Operator Overloading", "url": "https://www.youtube.com/embed/lal8F6H1bXc", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "python-for-loop",
label: "Python For Loop",
domain: "foundations",
level: "beginner",
summary: "Iterating over sequences in Python using the for loop.",
resources: [{"type": "video", "label": "Python For Loop", "url": "https://www.youtube.com/embed/oywGQ0wVJQs", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "python-while-loop",
label: "Python While Loop",
domain: "foundations",
level: "beginner",
summary: "Repeating code blocks in Python using the while loop with conditions.",
resources: [{"type": "video", "label": "Python For While Loop", "url": "https://www.youtube.com/embed/6mKpZdIfnew", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "break-continue",
label: "Break and Continue",
domain: "foundations",
level: "beginner",
summary: "Controlling loop flow in Python using break and continue statements.",
resources: [{"type": "video", "label": "Python Continue-break", "url": "https://www.youtube.com/embed/Vv8YQqvg4KQ", "duration": ""}, {"type": "video", "label": "Python Continue-break", "url": "https://www.youtube.com/embed/DHfuVRoTC9o", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "python-functions",
label: "Python Functions",
domain: "foundations",
level: "beginner",
summary: "Defining and calling reusable code blocks using functions in Python.",
resources: [{"type": "video", "label": "Python Intro to Functions", "url": "https://www.youtube.com/embed/a3tlV9LZ6aQ", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "python-input-output",
label: "Python Input Output",
domain: "foundations",
level: "beginner",
summary: "Standard input and output functions in Python for reading and printing data.",
resources: [{"type": "video", "label": "Python Input Output", "url": "https://www.youtube.com/embed/iFZlU-ZWuzg", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "function-arguments",
label: "Function Arguments",
domain: "foundations",
level: "beginner",
summary: "Passing and returning values in Python functions using input/output arguments.",
resources: [{"type": "video", "label": "Function Arguments", "url": "https://www.youtube.com/embed/DHfuVRoTC9o", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "default-arguments",
label: "Default Arguments",
domain: "foundations",
level: "beginner",
summary: "Setting default parameter values in Python functions for flexible calling.",
resources: [{"type": "video", "label": "Python Default Arguments", "url": "https://www.youtube.com/embed/96JrQ1cZsSQ", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "intro-oops",
label: "Intro to OOPs",
domain: "foundations",
level: "intermediate",
summary: "Object-oriented programming concepts \u2014 classes, objects, and encapsulation in Python.",
resources: [{"type": "video", "label": "Python OOPs Intro", "url": "https://www.youtube.com/embed/dw0A_xw0glA", "duration": ""}, {"type": "blog", "label": "Session Notes — Object Oriented Programming (OOP)", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_11.md"}]
},
{
id: "python-objects",
label: "Python Objects",
domain: "foundations",
level: "intermediate",
summary: "Creating and using objects from classes in Python.",
resources: [{"type": "video", "label": "Python Objects", "url": "https://www.youtube.com/embed/HXxxa2mxG6c", "duration": ""}, {"type": "video", "label": "Python practice 001", "url": "https://www.youtube.com/embed/fc7VKrSvF_E", "duration": ""}, {"type": "video", "label": "Python practice 002", "url": "https://www.youtube.com/embed/GSWETBkd6Ho", "duration": ""}, {"type": "video", "label": "Python practice 003", "url": "https://www.youtube.com/embed/DY8N-xNhrsY", "duration": ""}, {"type": "video", "label": "Python practice 004", "url": "https://www.youtube.com/embed/v6r0GBcY730", "duration": ""}, {"type": "video", "label": "Python practice 005", "url": "https://www.youtube.com/embed/eBLzUiQaeL8", "duration": ""}, {"type": "video", "label": "Python practice 006", "url": "https://www.youtube.com/embed/vsaN5bgTBek", "duration": ""}, {"type": "video", "label": "Python practice 007", "url": "https://www.youtube.com/embed/rFocOiHnbEs", "duration": ""}, {"type": "blog", "label": "Session Notes — Object Oriented Programming (OOP)", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_11.md"}]
},
{
id: "class-inheritance",
label: "Class Inheritance",
domain: "foundations",
level: "intermediate",
summary: "Inheriting and extending class behavior in Python using inheritance.",
resources: [{"type": "video", "label": "Python Class Inheritance", "url": "https://www.youtube.com/embed/oWwdVik7qU0", "duration": ""}, {"type": "blog", "label": "Session Notes — Object Oriented Programming (OOP)", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_11.md"}]
},
{
id: "markdown-format",
label: "Markdown Format",
domain: "tools",
level: "beginner",
summary: "Writing formatted documentation using Markdown for GitHub and Jupyter notebooks.",
resources: [{"type": "video", "label": "markdown", "url": "https://www.youtube.com/embed/i5X5VYzEJCo", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Science Tools", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_07.md"}]
},
{
id: "intro-git-bash",
label: "Intro to Git Bash",
domain: "tools",
level: "beginner",
summary: "Version control basics using Git Bash \u2014 the most powerful tool for data science.",
resources: [{"type": "video", "label": "Git Bash", "url": "https://www.youtube.com/embed/cWnPSnpLb2M", "duration": ""}, {"type": "video", "label": "Command Line Basics", "url": "https://www.youtube.com/embed/B5ISXHnYVCg", "duration": ""}, {"type": "blog", "label": "Session Notes — Command Line Basics", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_14.md"}, {"type": "video", "label": "HTML CSS 1", "url": "https://www.youtube.com/embed/vLOltaWPIz0", "duration": ""}, {"type": "video", "label": "HTML CSS 2", "url": "https://www.youtube.com/embed/T-18Cpclsn4", "duration": ""}, {"type": "video", "label": "HTML CSS 3", "url": "https://www.youtube.com/embed/vuR0nGMnytE", "duration": ""}, {"type": "video", "label": "HTML CSS 4", "url": "https://www.youtube.com/embed/xF_q_XAP4g4", "duration": ""}, {"type": "blog", "label": "Session Notes — Introduction to HTML and CSS", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_51.md"}]
},
{
id: "basics-notation",
label: "Math Notation Basics",
domain: "foundations",
level: "beginner",
summary: "Reading and writing mathematical notation used in ML papers and textbooks.",
resources: [{"type": "video", "label": "Math Notation Basics", "url": "https://www.youtube.com/embed/aT3Oc4Z--qQ", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "abstract-math",
label: "Abstract Mathematics",
domain: "foundations",
level: "beginner",
summary: "Understanding the abstract nature of mathematics and how it applies to ML.",
resources: [{"type": "video", "label": "about_math", "url": "https://www.youtube.com/embed/JfoQp_btlHo", "duration": ""}, {"type": "video", "label": "orthogonality", "url": "https://www.youtube.com/embed/oDjwNhk1jSs", "duration": ""}, {"type": "video", "label": "mat_inv", "url": "https://www.youtube.com/embed/BXS7Ccb-Us8", "duration": ""}, {"type": "video", "label": "mat_trans", "url": "https://www.youtube.com/embed/MmL-KLK-a9c", "duration": ""}, {"type": "video", "label": "mat_inv", "url": "https://www.youtube.com/embed/BSlbJ8gwZMM", "duration": ""}, {"type": "video", "label": "eigen_val_vec", "url": "https://www.youtube.com/embed/vrEPiB5-7d8", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "multivariable-assign",
label: "Multivariable Assignment",
domain: "foundations",
level: "beginner",
summary: "Assigning multiple variables simultaneously and formatted printing in Python.",
resources: [{"type": "video", "label": "Multivariable Assignment", "url": "https://www.youtube.com/embed/qwwPc2bxkx8", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "print-formatting",
label: "Python Print Formatting",
domain: "foundations",
level: "beginner",
summary: "String formatting techniques in Python using f-strings and format methods.",
resources: [{"type": "video", "label": "Python Print Formatting", "url": "https://www.youtube.com/embed/LoBQw86XT5Y", "duration": ""}, {"type": "video", "label": "Python Print Formatting", "url": "https://www.youtube.com/embed/qwwPc2bxkx8", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "list-operations",
label: "Python List Operations",
domain: "foundations",
level: "beginner",
summary: "Advanced list operations in Python including sorting, slicing, and list methods.",
resources: [{"type": "video", "label": "Python List Operations", "url": "https://www.youtube.com/embed/fLHKIrht5j0", "duration": ""}, {"type": "blog", "label": "Session Notes — Python Data Types", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_08.md"}]
},
{
id: "split-join",
label: "Split and Join",
domain: "foundations",
level: "beginner",
summary: "Splitting strings into lists and joining lists back into strings in Python.",
resources: [{"type": "video", "label": "Python split join", "url": "https://www.youtube.com/embed/_W--TwDA6Nk", "duration": ""}, {"type": "blog", "label": "Session Notes — Control Flow", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_09.md"}]
},
{
id: "vectors-intro",
label: "Vectors Introduction",
domain: "foundations",
level: "beginner",
summary: "Understanding vectors, their dimensions, and directions in linear algebra.",
resources: [{"type": "video", "label": "row_col_vectors", "url": "https://www.youtube.com/embed/JAdl83M-e_s", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "vector-as-force",
label: "Vector as Force",
domain: "foundations",
level: "beginner",
summary: "Visualizing vectors as pushes or forces in a direction for ML intuition.",
resources: [{"type": "video", "label": "vector_push", "url": "https://www.youtube.com/embed/GZjHB-zwcLY", "duration": ""}, {"type": "video", "label": "vector_direction", "url": "https://www.youtube.com/embed/ks7YatPVfxI", "duration": ""}, {"type": "video", "label": "basis_vector", "url": "https://www.youtube.com/embed/S1ipna8-ipM", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "basis-vectors",
label: "Basis Vectors",
domain: "foundations",
level: "beginner",
summary: "Expressing vectors as combinations of basis vectors in linear algebra.",
resources: [{"type": "video", "label": "Basis Vectors", "url": "https://www.youtube.com/embed/S1ipna8-ipM", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "vector-magnitude",
label: "Vector Magnitude",
domain: "foundations",
level: "beginner",
summary: "Computing the magnitude or length of a vector using the Euclidean norm.",
resources: [{"type": "video", "label": "vector_magnitude", "url": "https://www.youtube.com/embed/GdGxteaAt3M", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "unit-vector",
label: "Unit Vector",
domain: "foundations",
level: "beginner",
summary: "Understanding unit vectors and normalizing vectors to unit length.",
resources: [{"type": "video", "label": "unit_vector", "url": "https://www.youtube.com/embed/l-CbspzeHlY", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "dot-product",
label: "Dot Product",
domain: "foundations",
level: "beginner",
summary: "Vector dot product, its geometric interpretation, and orthogonality in ML.",
resources: [{"type": "video", "label": "dot_product", "url": "https://www.youtube.com/embed/tqxq3XBW53E", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "resume-guidelines",
label: "Resume Guidelines",
domain: "tools",
level: "beginner",
summary: "Practical guidelines for writing a strong data science and ML resume.",
resources: [{"type": "video", "label": "resume", "url": "https://www.youtube.com/embed/Y3uWpQlTIWU", "duration": ""}, {"type": "blog", "label": "Session Notes — IT Foundations for Data Science", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_02.md"}]
},
{
id: "orthogonality",
label: "Orthogonality",
domain: "foundations",
level: "beginner",
summary: "The concept of orthogonality between vectors and its significance in ML.",
resources: [{"type": "video", "label": "Orthogonality", "url": "https://www.youtube.com/embed/oDjwNhk1jSs", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "cosine-similarity",
label: "Cosine Similarity",
domain: "foundations",
level: "intermediate",
summary: "Measuring similarity between vectors using cosine similarity \u2014 key for NLP and search.",
resources: [{"type": "video", "label": "Cosine Similarity", "url": "https://www.youtube.com/embed/LfjWIj9yW4s", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "vector-projection",
label: "Vector Projection",
domain: "foundations",
level: "intermediate",
summary: "Projecting one vector onto another and its applications in dimensionality reduction.",
resources: [{"type": "video", "label": "vector_projection", "url": "https://www.youtube.com/embed/BXS7Ccb-Us8", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "colab-tutorial-1",
label: "Google Colab Part 1",
domain: "tools",
level: "beginner",
summary: "Getting started with Google Colab \u2014 setting up notebooks and running Python in the cloud.",
resources: [{"type": "video", "label": "Data Science Tools", "url": "https://www.youtube.com/embed/_fuAooCJTpA", "duration": ""}, {"type": "video", "label": "Google Colab Tutorial 1", "url": "https://www.youtube.com/embed/cswmnpVymHQ", "duration": ""}, {"type": "video", "label": "Google Colab Tutorial 2", "url": "https://www.youtube.com/embed/bh820H9MD3k", "duration": ""}, {"type": "video", "label": "Kaggle Tutorial", "url": "https://www.youtube.com/embed/IgihTAagHHk", "duration": ""}, {"type": "video", "label": "VS Extensions 1", "url": "https://www.youtube.com/embed/sqJhKbsZqtA", "duration": ""}, {"type": "video", "label": "VS Extensions 2", "url": "https://www.youtube.com/embed/1XgCiD5QHQU", "duration": ""}, {"type": "video", "label": "VS Extensions 3", "url": "https://www.youtube.com/embed/rxhtjmuM6E0", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Science Tools", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_07.md"}]
},
{
id: "correlation-heatmap",
label: "Correlation Heatmap",
domain: "tools",
level: "intermediate",
summary: "Visualizing feature correlations using an upper triangular heatmap in seaborn.",
resources: [{"type": "video", "label": "Triangular Correlation Heatmap", "url": "https://www.youtube.com/embed/7RMbrZgUBp8", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Visualization and Feature Engineeri", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_35.md"}]
},
{
id: "tqdm-library",
label: "TQDM Library",
domain: "tools",
level: "beginner",
summary: "Adding progress bars to Python loops using the TQDM library.",
resources: [{"type": "video", "label": "TQDM Library", "url": "https://www.youtube.com/embed/v6r0GBcY730", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "colab-tutorial-2",
label: "Google Colab Part 2",
domain: "tools",
level: "beginner",
summary: "Advanced Google Colab features \u2014 GPU access, file handling, and drive integration.",
resources: [{"type": "video", "label": "Google Colab Part 2", "url": "https://www.youtube.com/embed/bh820H9MD3k", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Science Tools", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_07.md"}]
},
{
id: "bias-variance",
label: "Bias and Variance",
domain: "ml-core",
level: "intermediate",
summary: "Understanding the bias-variance tradeoff and its impact on model performance.",
resources: [{"type": "video", "label": "Intro 2 Bias and Variance ", "url": "https://www.youtube.com/embed/vEKaehF3d9U", "duration": ""}, {"type": "blog", "label": "Session Notes — Types of Algorithms", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_42.md"}]
},
{
id: "vscode-walkthrough",
label: "VS Code Walkthrough",
domain: "tools",
level: "beginner",
summary: "Full walkthrough of Visual Studio Code features for ML development.",
resources: [{"type": "video", "label": "VS Code Walkthrough", "url": "https://www.youtube.com/embed/ZCn9dgRLQ_8", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Science Tools", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_07.md"}]
},
{
id: "linear-regression-intuition",
label: "Linear Regression Intuition",
domain: "ml-core",
level: "beginner",
summary: "Building geometric intuition for how linear regression fits a line to data.",
resources: [{"type": "video", "label": "Linear Regression Intuition", "url": "https://www.youtube.com/embed/XnaJ04s6DTs", "duration": ""}, {"type": "video", "label": "Linear Regression from Scratch", "url": "https://www.youtube.com/embed/_yiTZQ0vR60", "duration": ""}, {"type": "blog", "label": "Session Notes — Types of Algorithms", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_42.md"}]
},
{
id: "knn-algorithm",
label: "KNN Algorithm",
domain: "ml-core",
level: "beginner",
summary: "K-Nearest Neighbors classification \u2014 intuition, distance metrics, and choosing K.",
resources: [{"type": "video", "label": "KNN from scratch", "url": "https://www.youtube.com/embed/8cHGBZ_3K-8", "duration": ""}, {"type": "blog", "label": "Session Notes — Logistic Regression", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_43.md"}]
},
{
id: "numpy-intro",
label: "NumPy Introduction",
domain: "foundations",
level: "beginner",
summary: "Introduction to NumPy arrays \u2014 the foundation for numerical computing in Python.",
resources: [{"type": "video", "label": "DSML Libraries", "url": "https://www.youtube.com/embed/gABxNYVrLKg", "duration": ""}, {"type": "video", "label": "Numpy Part 1", "url": "https://www.youtube.com/embed/ogEfmubVJqI", "duration": ""}, {"type": "video", "label": "Numpy Tutorial", "url": "https://www.youtube.com/embed/XC0oFw84Oz8", "duration": ""}, {"type": "video", "label": "Numpy Part 1", "url": "https://www.youtube.com/embed/fWX0KvqE6AU", "duration": ""}, {"type": "blog", "label": "Session Notes — Introduction to Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_23.md"}]
},
{
id: "pandas-intro",
label: "Pandas Introduction",
domain: "foundations",
level: "beginner",
summary: "Introduction to Pandas DataFrames for loading, exploring, and manipulating tabular data.",
resources: [{"type": "video", "label": "Pandas Tutorial", "url": "https://www.youtube.com/embed/0SPB2VhpoNY", "duration": ""}, {"type": "blog", "label": "Session Notes — Introduction to Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_23.md"}]
},
{
id: "data-visualization-1",
label: "Data Visualization Part 1",
domain: "tools",
level: "beginner",
summary: "Creating basic plots with Matplotlib \u2014 line, bar, scatter, and histogram charts.",
resources: [{"type": "video", "label": "Data Visualization with Matplotlib", "url": "https://www.youtube.com/embed/3vGtB77BNJU", "duration": ""}, {"type": "video", "label": "Data Visualization Part 2", "url": "https://www.youtube.com/embed/SsosANWiitQ", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Visualization and Feature Engineeri", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_35.md"}]
},
{
id: "fastapi-intro",
label: "FastAPI Introduction",
domain: "mlops",
level: "intermediate",
summary: "Building REST APIs for ML models using FastAPI with automatic documentation.",
resources: [{"type": "video", "label": "Flask Part 1", "url": "https://www.youtube.com/embed/lG3RgrzppnI", "duration": ""}, {"type": "video", "label": "Flask Part 2", "url": "https://www.youtube.com/embed/_GNoYvanXYo", "duration": ""}, {"type": "video", "label": "Flask Part 3", "url": "https://www.youtube.com/embed/EH4u8hAjm2A", "duration": ""}, {"type": "video", "label": "Flask Part 4", "url": "https://www.youtube.com/embed/MNQkSF8h6wo", "duration": ""}, {"type": "video", "label": "Flask Part 5", "url": "https://www.youtube.com/embed/IAackuaGdzM", "duration": ""}, {"type": "video", "label": "Flask Part 6", "url": "https://www.youtube.com/embed/flOKENTLw1k", "duration": ""}, {"type": "video", "label": "Flask Part 7", "url": "https://www.youtube.com/embed/-vPwKsyC0LA", "duration": ""}, {"type": "video", "label": "Flask Part 8", "url": "https://www.youtube.com/embed/63Drf-skV3A", "duration": ""}, {"type": "blog", "label": "Session Notes — Introduction to Flask", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_52.md"}, {"type": "video", "label": "FAST API Part 1", "url": "https://www.youtube.com/embed/aAnQj2jfufk", "duration": ""}, {"type": "video", "label": "FAST API Part 2", "url": "https://www.youtube.com/embed/xpasTBQ5EXc", "duration": ""}, {"type": "video", "label": "Streamlit Part 1", "url": "https://www.youtube.com/embed/bWasfCZHo-g", "duration": ""}, {"type": "video", "label": "Streamlit Part 2", "url": "https://www.youtube.com/embed/ss6KOS7fI64", "duration": ""}, {"type": "video", "label": "Streamlit Part 3", "url": "https://www.youtube.com/embed/gOvNATdGFbo", "duration": ""}, {"type": "blog", "label": "Session Notes — Fast API and Streamlit", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_53.md"}]
},
{
id: "scikit-learn-intro",
label: "Scikit-learn Intro",
domain: "ml-core",
level: "beginner",
summary: "The go-to Python ML library \u2014 fit, predict, and evaluate models with a unified API.",
resources: [{"type": "video", "label": "Variance Equation to Code", "url": "https://www.youtube.com/embed/dQkoi2eTx8", "duration": ""}]
},
{
id: "data-preprocessing-pipeline",
label: "Data Preprocessing",
domain: "ml-core",
level: "beginner",
summary: "End-to-end data preprocessing pipeline \u2014 cleaning, transforming, and preparing data for ML.",
resources: [{"type": "video", "label": "Data Preprocessing", "url": "https://www.youtube.com/embed/SNpUkV-kuj4", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Proprocessing", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_39.md"}]
},
{
id: "seaborn-intro",
label: "Seaborn Introduction",
domain: "tools",
level: "beginner",
summary: "Statistical data visualization with Seaborn \u2014 distributions, relationships, and categorical plots.",
resources: [{"type": "video", "label": "Command Line Basics Part 1", "url": "https://www.youtube.com/embed/SsosANWiitQ", "duration": ""}]
},
{
id: "python-os-library",
label: "Python OS Library",
domain: "tools",
level: "beginner",
summary: "Navigating file systems and managing paths with Python's os library.",
resources: [{"type": "video", "label": "Introduction to Kaggle", "url": "https://www.youtube.com/embed/cul52ne8iGQ", "duration": ""}]
},
{
id: "sql-select-where",
label: "SQL SELECT & WHERE",
domain: "tools",
level: "beginner",
summary: "Querying databases with SQL SELECT, WHERE, GROUP BY, and ORDER BY clauses.",
resources: [{"type": "video", "label": "Introduction to SQL for Data Scientists", "url": "https://www.youtube.com/embed/0x0dW8T-4uo", "duration": ""}, {"type": "blog", "label": "Session Notes — SQL Basics and CRUD", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_26.md"}]
},
{
id: "classification-regression-clustering",
label: "ML Problem Types",
domain: "ml-core",
level: "beginner",
summary: "Introduction to classification, regression, and clustering as core ML problem types.",
resources: [{"type": "video", "label": "Classification, Regression, Clustering", "url": "https://www.youtube.com/embed/T4Ha6U0PJ7s", "duration": ""}, {"type": "blog", "label": "Session Notes — Types of Algorithms", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_42.md"}]
},
{
id: "pyyaml-config",
label: "PyYAML Configuration",
domain: "tools",
level: "beginner",
summary: "Reading configuration values from YAML files using the PyYAML library in Python.",
resources: [{"type": "video", "label": "Python Writing Raw Text Files", "url": "https://www.youtube.com/embed/A5GoYjlDVVY", "duration": ""}]
},
{
id: "matplotlib-tutorial-1",
label: "Matplotlib Tutorial 1",
domain: "tools",
level: "beginner",
summary: "Comprehensive introduction to Matplotlib for creating charts and visualizations.",
resources: [{"type": "video", "label": "Python Matplotlib Tutorial 1", "url": "https://www.youtube.com/embed/3vGtB77BNJU", "duration": ""}]
},
{
id: "python-os-intro",
label: "Python OS Library Intro",
domain: "tools",
level: "beginner",
summary: "Introduction to Python's os library for file and directory management.",
resources: [{"type": "video", "label": "Python: Introduction to OS Library", "url": "https://www.youtube.com/embed/cul52ne8iGQ", "duration": ""}]
},
{
id: "image-processing-cv",
label: "Image Processing for CV",
domain: "deep-learning",
level: "intermediate",
summary: "Loading, manipulating, and preprocessing images for computer vision with OpenCV.",
resources: [{"type": "video", "label": "Image Processing for CV", "url": "https://www.youtube.com/embed/fWX0KvqE6AU", "duration": ""}, {"type": "blog", "label": "Session Notes — Introduction to Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_23.md"}]
},
{
id: "reading-json",
label: "Reading JSON in Python",
domain: "tools",
level: "beginner",
summary: "Parsing and working with JSON data structures in Python.",
resources: [{"type": "video", "label": "Reading JSON files in Python", "url": "https://www.youtube.com/embed/H999zBdovoI", "duration": ""}]
},
{
id: "data-preprocessing-full",
label: "Data Preprocessing Full",
domain: "ml-core",
level: "intermediate",
summary: "Complete data preprocessing workflow including cleaning, encoding, and scaling.",
resources: [{"type": "video", "label": "Data Preprocessing", "url": "https://www.youtube.com/embed/SNpUkV-kuj4", "duration": ""}]
},
{
id: "save-numpy-arrays",
label: "Save NumPy Arrays",
domain: "tools",
level: "beginner",
summary: "Persisting NumPy arrays to disk and loading them back for reproducible workflows.",
resources: [{"type": "video", "label": "Saving and Reading Numpy Arrays in Python", "url": "https://www.youtube.com/embed/F3XIOlKR85k", "duration": ""}]
},
{
id: "sql-joins",
label: "SQL JOINs",
domain: "tools",
level: "beginner",
summary: "Combining data from multiple tables using INNER, LEFT, RIGHT, and FULL joins in SQL.",
resources: [{"type": "video", "label": "SQL for Data Science Malayalam | SELECT WHERE GROUP BY explained", "url": "https://www.youtube.com/embed/_-aHSYRK80I", "duration": ""}]
},
{
id: "ml-algorithm-types",
label: "ML Algorithm Types",
domain: "ml-core",
level: "beginner",
summary: "Survey of common classification and regression algorithms and when to use each.",
resources: [{"type": "video", "label": "ML Algorithm Types", "url": "https://www.youtube.com/embed/T4Ha6U0PJ7s", "duration": ""}, {"type": "blog", "label": "Session Notes — Types of Algorithms", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_42.md"}]
},
{
id: "cnn-architectures-overview",
label: "CNN Architectures Overview",
domain: "deep-learning",
level: "advanced",
summary: "Comparing ResNet, VGG, Inception, and EfficientNet architectures for vision tasks.",
resources: [{"type": "video", "label": "Overview of CNN Architectures", "url": "https://www.youtube.com/embed/Onj6xwYEVNE", "duration": ""}, {"type": "blog", "label": "Session Notes — Deep Learning", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_56.md"}]
},
{
id: "word-embedding-techniques",
label: "Word Embedding Techniques",
domain: "nlp",
level: "intermediate",
summary: "Comparing Word2Vec, GloVe, and FastText embedding techniques for NLP applications.",
resources: [{"type": "video", "label": "Word Embedding Techniques in NLP", "url": "https://www.youtube.com/embed/KxBjea3khEs", "duration": ""}, {"type": "blog", "label": "Session Notes — Deep Learning", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_56.md"}]
},
{
id: "python-best-practices",
label: "Python Best Practices",
domain: "foundations",
level: "intermediate",
summary: "Writing clean, readable, and maintainable Python code following best practices.",
resources: [{"type": "video", "label": "Python Coding Best Practices", "url": "https://www.youtube.com/embed/TDbo1mLpjOM", "duration": ""}, {"type": "blog", "label": "Session Notes — Coding Best Practices", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_12.md"}]
},
{
id: "version-control",
label: "Version Control",
domain: "tools",
level: "beginner",
summary: "Git fundamentals \u2014 commits, branches, merges, and collaborating on GitHub.",
resources: [{"type": "video", "label": "Version Control", "url": "https://www.youtube.com/embed/gGCohy7TCfw", "duration": ""}, {"type": "blog", "label": "Session Notes — Command Line Basics", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_14.md"}]
},
{
id: "deep-learning-nlp-1",
label: "Deep Learning for NLP 1",
domain: "nlp",
level: "intermediate",
summary: "Applying deep learning techniques to NLP tasks using RNNs and embeddings.",
resources: [{"type": "video", "label": "Deep Learning for NLP", "url": "https://www.youtube.com/embed/-m6JZKNoE6E", "duration": ""}, {"type": "blog", "label": "Session Notes — Deep Learning", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_56.md"}]
},
{
id: "feature-engineering",
label: "Feature Engineering",
domain: "ml-core",
level: "intermediate",
summary: "Creating informative features from raw data to improve machine learning model performance.",
resources: [{"type": "video", "label": "Feature Engineering", "url": "https://www.youtube.com/embed/KP_05zKgj98", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Visualization and Feature Engineeri", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_35.md"}]
},
{
id: "data-viz-part-2",
label: "Data Visualization Part 2",
domain: "tools",
level: "intermediate",
summary: "Advanced visualization techniques with Matplotlib and Seaborn for data analysis.",
resources: [{"type": "video", "label": "Data Visualization Part 2", "url": "https://www.youtube.com/embed/SsosANWiitQ", "duration": ""}, {"type": "blog", "label": "Session Notes — Data Visualization and Feature Engineeri", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_35.md"}]
},
{
id: "ml-algorithm-types-2",
label: "ML Algorithm Types Survey",
domain: "ml-core",
level: "beginner",
summary: "Types of machine learning algorithms \u2014 supervised, unsupervised, and semi-supervised.",
resources: [{"type": "video", "label": "Types of Machine Learning Algorithms", "url": "https://www.youtube.com/embed/zjR48Bf60zE", "duration": ""}]
},
{
id: "common-ml-algorithms",
label: "Common ML Algorithms",
domain: "ml-core",
level: "beginner",
summary: "Survey of the most commonly used classification and regression algorithms.",
resources: [{"type": "video", "label": "Common Classification and Regression Algorithms", "url": "https://www.youtube.com/embed/6VaRdVum__o", "duration": ""}]
},
{
id: "sklearn-apis",
label: "Common Scikit-learn APIs",
domain: "ml-core",
level: "beginner",
summary: "The most commonly used Scikit-learn classes and methods for end-to-end ML workflows.",
resources: [{"type": "video", "label": "Common Scikit Learn APIs", "url": "https://www.youtube.com/embed/dQkoi2eTx8", "duration": ""}]
},
{
id: "office-productivity",
label: "Office Productivity Tools",
domain: "tools",
level: "beginner",
summary: "Essential productivity tools for data scientists \u2014 shortcuts, apps, and workflows.",
resources: [{"type": "video", "label": "Office Productivity Tools", "url": "https://www.youtube.com/embed/3TolpADjH1E", "duration": ""}]
},
{
id: "vim-editor",
label: "Intro to VIM Editor",
domain: "tools",
level: "beginner",
summary: "Navigating and editing files in VIM \u2014 the essential terminal text editor.",
resources: [{"type": "video", "label": "Intro to VIM Editor", "url": "https://www.youtube.com/embed/H_g7_niAp1Y", "duration": ""}]
},
{
id: "pillow-library",
label: "Pillow Library",
domain: "tools",
level: "beginner",
summary: "Reading, manipulating, and saving images using Python's Pillow (PIL) library.",
resources: [{"type": "video", "label": "Intro to Pillow Library", "url": "https://www.youtube.com/embed/OQT38WXPCio", "duration": ""}]
},
{
id: "min-max-scaling",
label: "Min-Max Scaling",
domain: "ml-core",
level: "beginner",
summary: "Scaling features to a fixed range using min-max normalization for ML preprocessing.",
resources: [{"type": "video", "label": "Image Processing for CV", "url": "https://www.youtube.com/embed/fWX0KvqE6AU", "duration": ""}, {"type": "blog", "label": "Session Notes — Encoding, Scaling, Normalization, Corrle", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_40.md"}]
},
{
id: "reading-audio-files",
label: "Reading Audio Files",
domain: "tools",
level: "beginner",
summary: "Loading and inspecting audio files in Python for speech and audio ML tasks.",
resources: [{"type": "video", "label": "Reading Audio Files", "url": "https://www.youtube.com/embed/cAF_sl31IL8", "duration": ""}]
},
{
id: "gaussian-distribution",
label: "Gaussian Distribution",
domain: "foundations",
level: "intermediate",
summary: "Normal distribution visualized \u2014 properties, empirical rule, and its role in ML.",
resources: [{"type": "video", "label": "Gaussian Distribution", "url": "https://www.youtube.com/embed/TbS1iYIA6QI", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics for Data Science and Machine", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_15.md"}]
},
{
id: "tensorflow-gpu",
label: "TensorFlow GPU Setup",
domain: "tools",
level: "beginner",
summary: "Checking and configuring GPU availability with TensorFlow for deep learning.",
resources: [{"type": "video", "label": "Checking GPU Avaialability with TensorFlow", "url": "https://www.youtube.com/embed/DOM6BKt2n1Y", "duration": ""}]
},
{
id: "covariance-matrix",
label: "Covariance Matrix",
domain: "foundations",
level: "intermediate",
summary: "Understanding covariance matrices and their role in PCA and multivariate analysis.",
resources: [{"type": "video", "label": "Covariance Matrix", "url": "https://www.youtube.com/embed/aaRkjeGRgHA", "duration": ""}, {"type": "blog", "label": "Session Notes — Mathematics and its Abstract Nature", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_19.md"}]
},
{
id: "computer-vision-primer",
label: "Computer Vision Primer",
domain: "deep-learning",
level: "beginner",
summary: "Introduction to computer vision \u2014 images, pixels, color spaces, and CV tasks.",
resources: [{"type": "video", "label": "Computer Vision Primer", "url": "https://www.youtube.com/embed/HbV7bQs3DKs", "duration": ""}]
},
{
id: "sql-joins-2",
label: "SQL Joins Malayalam",
domain: "tools",
level: "beginner",
summary: "Combining tables using SQL JOIN operations \u2014 INNER, LEFT, RIGHT, and FULL OUTER.",
resources: [{"type": "video", "label": "SQL Joins Malayalam", "url": "https://www.youtube.com/embed/zcI5QrMAuwQ", "duration": ""}]
},
{
id: "qwen-grader-demo",
label: "Qwen Code Grader Demo",
domain: "projects",
level: "advanced",
summary: "Demo of the AI assignment grader built with Qwen2.5-Coder via Ollama and Gradio.",
resources: [{"type": "video", "label": "Qwen Code Grader Demo", "url": "https://www.youtube.com/embed/mn-7UMb5nkE", "duration": ""}]
},
{
id: "colab-github-workflow",
label: "Colab & GitHub Workflow",
domain: "mlops",
level: "intermediate",
summary: "End-to-end ML development workflow combining Google Colab with GitHub version control.",
resources: [{"type": "video", "label": "ML Develoopment with Google Colab & GitHub", "url": "https://www.youtube.com/embed/JjQG4Oc20jo", "duration": ""}]
},
{
id: "pymupdf-pdf-reading",
label: "Reading PDFs with PyMuPDF",
domain: "tools",
level: "intermediate",
summary: "Extracting text and data from PDF files using the PyMuPDF library in Python.",
resources: [{"type": "video", "label": "Reading PDF files with PyMuPDF", "url": "https://www.youtube.com/embed/zsSce8IKfRw", "duration": ""}]
},
{
id: "python-library-ecosystem",
label: "Python Library Ecosystem",
domain: "foundations",
level: "beginner",
summary: "Overview of the Python library ecosystem for data science, ML, and AI development.",
resources: [{"type": "video", "label": "Python Library", "url": "https://www.youtube.com/embed/TA3n-txytck", "duration": ""}, {"type": "video", "label": "DSML Library", "url": "https://www.youtube.com/embed/gABxNYVrLKg", "duration": ""}, {"type": "blog", "label": "Session Notes — Loops & Functions in Python", "url": "https://github.com/cksajil/DSAIRP25/blob/main/notes/session_10.md"}]
},
{
id: "map-of-mathematics",
label: "Map of Mathematics",
domain: "foundations",
level: "beginner",
summary: "Visual overview of all major branches of mathematics and how they connect.",
resources: [{"type": "video", "label": "Map of Mathematics", "url": "https://www.youtube.com/embed/au3AJq922nI", "duration": ""}]
},
{
id: "intro-probability",
label: "Intro to Probability",
domain: "foundations",
level: "beginner",
summary: "Foundational probability concepts \u2014 experiments, outcomes, events, and probability rules.",
resources: [{"type": "video", "label": "Intro to Probability", "url": "https://www.youtube.com/embed/BztRkxDb3h0", "duration": ""}]
},
{
id: "key-terms-probability",
label: "Key Probability Terms",
domain: "foundations",
level: "beginner",
summary: "Essential probability vocabulary \u2014 sample space, events, union, intersection, complement.",
resources: [{"type": "video", "label": "Key Probability Terms", "url": "https://www.youtube.com/embed/YoIIunQArhc", "duration": ""}]
},
{
id: "joint-conditional-prob",
label: "Joint & Conditional Probability",
domain: "foundations",
level: "intermediate",
summary: "Joint, conditional, dependent, and independent probabilities explained with examples.",
resources: [{"type": "video", "label": "Joint & Conditional Probability", "url": "https://www.youtube.com/embed/q8MHbZ6ifWA", "duration": ""}]
},
{
id: "inferential-statistics",
label: "Inferential Statistics",
domain: "foundations",
level: "intermediate",
summary: "Why inferential statistics matters \u2014 making predictions and decisions from sample data.",
resources: [{"type": "video", "label": "Inferential Statistics", "url": "https://www.youtube.com/embed/qYU_mbz2qEw", "duration": ""}]
},
{
id: "list-comprehension",
label: "List Comprehension",
domain: "foundations",
level: "beginner",
summary: "Writing concise and efficient list transformations using Python list comprehension.",
resources: [{"type": "video", "label": "List Comprehension", "url": "https://www.youtube.com/embed/tdvl8dv0tzk", "duration": ""}]
},
{
id: "python-files-read",
label: "Python File Reading",
domain: "foundations",
level: "beginner",
summary: "Reading text and CSV files in Python using built-in file handling functions.",
resources: [{"type": "video", "label": "Python File Reading", "url": "https://www.youtube.com/embed/iFZlU-ZWuzg", "duration": ""}]
},
{
id: "python-files-write",
label: "Python File Writing",
domain: "foundations",
level: "beginner",
summary: "Writing data to files in Python \u2014 creating, appending, and managing file output.",
resources: [{"type": "video", "label": "Python File Writing", "url": "https://www.youtube.com/embed/3cJMqHyaKGU", "duration": ""}]
},
{
id: "generic-python-1",
label: "Generic Python Techniques 1",
domain: "foundations",
level: "intermediate",
summary: "Useful Python tricks and patterns that every data scientist should know.",
resources: [{"type": "video", "label": "Generic Python Techniques 1", "url": "https://www.youtube.com/embed/6nfVFuEY25o", "duration": ""}]
},
{
id: "generic-python-2",
label: "Generic Python Techniques 2",
domain: "foundations",
level: "intermediate",
summary: "More Python idioms and patterns for writing efficient data science code.",
resources: [{"type": "video", "label": "Generic Python Techniques 2", "url": "https://www.youtube.com/embed/QeQZFj8g8Nk", "duration": ""}]
},
{
id: "practice-vowel-print",
label: "Practice: Vowel Printing",
domain: "foundations",
level: "beginner",
summary: "Python practice \u2014 filtering and printing only vowels from a text string.",
resources: [{"type": "video", "label": "Practice: Vowel Printing", "url": "https://www.youtube.com/embed/__NgWy-yBNo", "duration": ""}]
},
{
id: "practice-otp",
label: "Practice: OTP Generator",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 building an OTP (one-time password) generator.",
resources: [{"type": "video", "label": "Practice: OTP Generator", "url": "https://www.youtube.com/embed/fc7VKrSvF_E", "duration": ""}]
},
{
id: "practice-string-reverse",
label: "Practice: String Reversing",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 reversing strings with different techniques.",
resources: [{"type": "video", "label": "Practice: String Reversing", "url": "https://www.youtube.com/embed/GSWETBkd6Ho", "duration": ""}]
},
{
id: "practice-pattern-print",
label: "Practice: Pattern Printing",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 printing patterns using nested loops.",
resources: [{"type": "video", "label": "Practice: Pattern Printing", "url": "https://www.youtube.com/embed/DY8N-xNhrsY", "duration": ""}]
},
{
id: "practice-progress-bar",
label: "Practice: Progress Bar",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 implementing a simple progress bar using TQDM.",
resources: [{"type": "video", "label": "Practice: Progress Bar", "url": "https://www.youtube.com/embed/v6r0GBcY730", "duration": ""}]
},
{
id: "practice-animation",
label: "Practice: Print Animation",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 creating simple terminal animations with print.",
resources: [{"type": "video", "label": "Practice: Print Animation", "url": "https://www.youtube.com/embed/vsaN5bgTBek", "duration": ""}]
},
{
id: "practice-date-format",
label: "Practice: Date Formatting",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 converting date formats using string manipulation.",
resources: [{"type": "video", "label": "Practice: Date Formatting", "url": "https://www.youtube.com/embed/eBLzUiQaeL8", "duration": ""}]
},
{
id: "practice-problem-12",
label: "Practice Problem 12",
domain: "foundations",
level: "beginner",
summary: "Python coding practice problem to reinforce programming fundamentals.",
resources: [{"type": "video", "label": "Practice Problem 12", "url": "https://www.youtube.com/embed/ubsN2Hy1XSs", "duration": ""}]
},
{
id: "practice-if-else-in",
label: "Practice: If Else with In",
domain: "foundations",
level: "beginner",
summary: "Python practice \u2014 using the `in` operator with if-else for membership testing.",
resources: [{"type": "video", "label": "Practice: If Else with In", "url": "https://www.youtube.com/embed/woMeFJEc-PE", "duration": ""}]
},
{
id: "practice-dot-product",
label: "Practice: Dot Product",
domain: "foundations",
level: "beginner",
summary: "Python practice problem \u2014 computing dot product of two vectors from scratch.",
resources: [{"type": "video", "label": "Practice: Dot Product", "url": "https://www.youtube.com/embed/-tixNE3kOow", "duration": ""}]
},
{
id: "practice-string-filter",
label: "Practice: String Filter",
domain: "foundations",
level: "beginner",
summary: "Python practice \u2014 filtering and reversing strings using list comprehension.",
resources: [{"type": "video", "label": "Practice: String Filter", "url": "https://www.youtube.com/embed/ju_kpGWUtXE", "duration": ""}]
},
{
id: "practice-split-reverse",
label: "Practice: Split Reverse Join",
domain: "foundations",