forked from harvard-edge/cs249r_book
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaxonomy.json
More file actions
19436 lines (19436 loc) · 500 KB
/
Copy pathtaxonomy.json
File metadata and controls
19436 lines (19436 loc) · 500 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
{
"version": "4.0",
"extracted_from": "textbook",
"extraction_model": "gemini-3.1-pro-preview",
"extraction_date": "2026-03-23",
"reviewed_by": "gemini-3.1-pro-preview + claude-opus-4.6",
"concepts": [
{
"id": "3d-parallelism",
"name": "3D Parallelism",
"description": "The simultaneous application of data, tensor, and pipeline parallelism to successfully train massive frontier-scale machine learning models.",
"prerequisites": [
"pipeline-parallelism",
"gradient-accumulation",
"mini-batch-processing",
"tensor-parallelism",
"allreduce"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol1_training",
"vol2_collective_communication",
"vol2_distributed_training",
"vol2_network_fabrics"
],
"source_domains": [
"collective_communication",
"distributed_training",
"network_fabrics",
"training"
],
"question_count": 0
},
{
"id": "a-b-testing",
"name": "A/B Testing",
"description": "Comparing model variants in production with controlled traffic splitting.",
"prerequisites": [
"hardware-memory-hierarchy"
],
"tracks": [
"cloud",
"mobile"
],
"source_chapters": [
"vol1_ml_ops"
],
"source_domains": [],
"question_count": 0
},
{
"id": "accelerator-bubbles",
"name": "Accelerator Bubbles",
"description": "Intervals of idle silicon where compute units sit at zero percent utilization waiting for data transfer or synchronization to complete.",
"prerequisites": [
"staged-system-pipeline"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_training"
],
"source_domains": [
"training"
],
"question_count": 0
},
{
"id": "accelerator-spectrum",
"name": "Accelerator Spectrum",
"description": "The continuum of processing hardware ranging from highly programmable general-purpose CPUs to highly efficient, workload-specific custom ASICs.",
"prerequisites": [
"processing-elements"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_compute_infrastructure"
],
"source_domains": [
"compute_infrastructure"
],
"question_count": 0
},
{
"id": "activation-checkpointing",
"name": "Activation Checkpointing",
"description": "A memory management strategy that trades increased computation time for reduced memory footprint by selectively recomputing intermediate activations during the backward pass.",
"prerequisites": [
"memory-bound-workload",
"compute-bound-workload",
"activation-memory",
"reverse-mode-differentiation"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_frameworks",
"vol1_ml_systems",
"vol1_training"
],
"source_domains": [
"frameworks",
"ml_systems",
"training"
],
"question_count": 0
},
{
"id": "activation-logic-unit-cost",
"name": "Activation Logic Unit Cost",
"description": "The physical silicon area and transistor count required to implement a nonlinear activation function in hardware, favoring simple operators like ReLU over complex exponentials.",
"prerequisites": [
"activation-memory-footprint"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_computation"
],
"source_domains": [
"nn_computation"
],
"question_count": 0
},
{
"id": "activation-memory",
"name": "Activation Memory",
"description": "The storage required to cache forward-pass intermediate values for use during gradient computation in the backward pass.",
"prerequisites": [
"automatic-differentiation",
"computational-graph"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_training"
],
"source_domains": [
"training"
],
"question_count": 0
},
{
"id": "activation-memory-footprint",
"name": "Activation Memory Footprint",
"description": "The massive memory capacity required during training to store all intermediate layer outputs from the forward pass for reuse in gradient computation during backpropagation.",
"prerequisites": [
"mini-batch-processing",
"activation-memory"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_computation"
],
"source_domains": [
"nn_computation"
],
"question_count": 0
},
{
"id": "activation-sparsity",
"name": "Activation Sparsity",
"description": "The property introduced by specific non-linearities that zero out negative inputs, reducing the computational memory footprint and energy usage by deactivating parts of the network dynamically.",
"prerequisites": [],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_computation"
],
"source_domains": [
"nn_computation"
],
"question_count": 0
},
{
"id": "active-active-replication",
"name": "Active-Active Replication",
"description": "A serving redundancy strategy where all replicas actively process requests and load is distributed among them.",
"prerequisites": [
"stateless-serving"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_fault_tolerance"
],
"source_domains": [
"fault_tolerance"
],
"question_count": 0
},
{
"id": "active-optical-cable",
"name": "Active Optical Cable",
"description": "Fiber cables with permanently attached transceivers used for medium-range connections that require power and add latency.",
"prerequisites": [
"forward-error-correction"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_network_fabrics"
],
"source_domains": [
"network_fabrics"
],
"question_count": 0
},
{
"id": "adaptive-batch-size-scaling",
"name": "Adaptive Batch Size Scaling",
"description": "Adjusting global learning rates linearly as total batch size changes due to elastic worker scaling, keeping per-worker batch size fixed.",
"prerequisites": [
"elastic-training"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_fleet_orchestration"
],
"source_domains": [
"fleet_orchestration"
],
"question_count": 0
},
{
"id": "adaptive-routing",
"name": "Adaptive Routing",
"description": "A dynamic routing mechanism that selects output ports based on real-time queue depth rather than static hashes.",
"prerequisites": [
"ecmp"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_network_fabrics"
],
"source_domains": [
"network_fabrics"
],
"question_count": 0
},
{
"id": "adversarial-attacks",
"name": "Adversarial Attacks",
"description": "Deliberate attempts to manipulate model behavior and cause misclassification by adding imperceptible perturbations to inputs.",
"prerequisites": [
"offensive-machine-learning",
"adversarial-inputs"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_robust_ai"
],
"source_domains": [
"robust_ai"
],
"question_count": 0
},
{
"id": "adversarial-debiasing",
"name": "Adversarial Debiasing",
"description": "Training with an adversary that penalizes the model for learning group membership, preventing the encoding of proxy variables.",
"prerequisites": [
"stationarity-assumption"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_responsible_engr"
],
"source_domains": [
"responsible_engr"
],
"question_count": 0
},
{
"id": "adversarial-inputs",
"name": "Adversarial Inputs",
"description": "Carefully constructed input perturbations designed to cause a machine learning model to output incorrect or harmful predictions.",
"prerequisites": [
"model-memorization"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_responsible_ai"
],
"source_domains": [
"responsible_ai"
],
"question_count": 0
},
{
"id": "adversarial-training",
"name": "Adversarial Training",
"description": "A defense strategy that improves model robustness by augmenting the training dataset with adversarial examples.",
"prerequisites": [
"adversarial-attacks"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_robust_ai"
],
"source_domains": [
"robust_ai"
],
"question_count": 0
},
{
"id": "ahead-of-time-optimization",
"name": "Ahead-of-Time Optimization",
"description": "Global graph optimizations like constant folding and dead code elimination performed by a framework compiler before runtime execution.",
"prerequisites": [
"static-computation-graphs"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_frameworks"
],
"source_domains": [
"frameworks"
],
"question_count": 0
},
{
"id": "alignment-gap",
"name": "Alignment Gap",
"description": "A failure mode caused by misalignment between the technical proxy metric a model optimizes and its intended business purpose.",
"prerequisites": [
"stationarity-assumption"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_responsible_engr"
],
"source_domains": [
"responsible_engr"
],
"question_count": 0
},
{
"id": "allgather",
"name": "AllGather",
"description": "A collective communication pattern that collects different model portions so every device can reconstruct the full model state.",
"prerequisites": [
"bisection-bandwidth"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_network_fabrics"
],
"source_domains": [
"network_fabrics"
],
"question_count": 0
},
{
"id": "allreduce",
"name": "AllReduce",
"description": "A collective communication primitive where all nodes share and aggregate their local arrays, leaving every node with the identical final reduced result.",
"prerequisites": [
"gradient-synchronization"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_collective_communication",
"vol2_distributed_training",
"vol2_network_fabrics"
],
"source_domains": [
"collective_communication",
"distributed_training",
"network_fabrics"
],
"question_count": 0
},
{
"id": "alltoall-communication",
"name": "AllToAll Communication",
"description": "A dense network communication pattern required by Mixture-of-Experts models where every accelerator must simultaneously exchange distinct data with every other accelerator.",
"prerequisites": [
"embedding-table-sharding",
"bisection-bandwidth"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_architectures",
"vol2_collective_communication",
"vol2_compute_infrastructure",
"vol2_network_fabrics"
],
"source_domains": [
"collective_communication",
"compute_infrastructure",
"network_fabrics",
"nn_architectures"
],
"question_count": 0
},
{
"id": "alpha-beta-performance-model",
"name": "Alpha-Beta Performance Model",
"description": "A linear network cost model that computes total data transfer time as a function of fixed startup latency and sustained per-byte bandwidth.",
"prerequisites": [
"latency"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_collective_communication",
"vol2_network_fabrics"
],
"source_domains": [
"collective_communication",
"network_fabrics"
],
"question_count": 0
},
{
"id": "amdahl-s-law",
"name": "Amdahl's Law",
"description": "The mathematical principle defining the maximum possible speedup from hardware acceleration based on the non-parallelizable fraction of a workload.",
"prerequisites": [
"data-gravity"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_hw_acceleration",
"vol1_ml_systems"
],
"source_domains": [
"hw_acceleration",
"ml_systems"
],
"question_count": 0
},
{
"id": "amdahl-s-law-for-data",
"name": "Amdahl's Law for Data",
"description": "The mathematical limit on speedups achievable through parallelizing distributed data processing, constrained by operations requiring global coordination.",
"prerequisites": [
"batch-ingestion"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_data_engineering"
],
"source_domains": [
"data_engineering"
],
"question_count": 0
},
{
"id": "application-embedded-serving",
"name": "Application-Embedded Serving",
"description": "Running the model within the user's application process, optimizing for energy efficiency and responsiveness without a network hop.",
"prerequisites": [
"inference-server"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_model_serving"
],
"source_domains": [
"model_serving"
],
"question_count": 0
},
{
"id": "approximate-model-theft",
"name": "Approximate Model Theft",
"description": "Training a surrogate model that mimics the original by systematically observing input-output behavior through an API.",
"prerequisites": [
"confidence-calibration"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_security_privacy"
],
"source_domains": [
"security_privacy"
],
"question_count": 0
},
{
"id": "arithmetic-intensity",
"name": "Arithmetic Intensity",
"description": "The ratio of floating-point operations performed to bytes of memory traffic required during execution.",
"prerequisites": [
"computational-intensity"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_hw_acceleration",
"vol1_ml_systems",
"vol1_nn_architectures",
"vol1_training",
"vol2_compute_infrastructure",
"vol2_performance_engineering",
"vol2_sustainable_ai"
],
"source_domains": [
"compute_infrastructure",
"hw_acceleration",
"ml_systems",
"nn_architectures",
"performance_engineering",
"sustainable_ai",
"training"
],
"question_count": 0
},
{
"id": "asynchronous-prefetching",
"name": "Asynchronous Prefetching",
"description": "Overlapping data loading and preprocessing with accelerator computation to prevent pipeline starvation.",
"prerequisites": [
"accelerator-bubbles"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_training"
],
"source_domains": [
"training"
],
"question_count": 0
},
{
"id": "autograd-tape",
"name": "Autograd Tape",
"description": "A transient data structure built dynamically during eager execution that records the history of tensor operations to enable reverse-mode gradient computation.",
"prerequisites": [
"eager-execution",
"automatic-differentiation"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_frameworks"
],
"source_domains": [
"frameworks"
],
"question_count": 0
},
{
"id": "automatic-differentiation",
"name": "Automatic Differentiation",
"description": "The systematic application of the chain rule in software to compute exact gradients for arbitrary compositions of operations.",
"prerequisites": [
"computational-graph"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_frameworks"
],
"source_domains": [
"frameworks"
],
"question_count": 0
},
{
"id": "autoregressive-kv-cache",
"name": "Autoregressive KV Cache",
"description": "An inference memory buffer that stores previously computed key and value vectors to avoid redundant computation, shifting the system bottleneck entirely to memory bandwidth.",
"prerequisites": [
"bandwidth-bound-workload"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_architectures"
],
"source_domains": [
"nn_architectures"
],
"question_count": 0
},
{
"id": "backdoor-attacks",
"name": "Backdoor Attacks",
"description": "A type of data poisoning that embeds a hidden trigger causing the model to misclassify specific inputs while otherwise behaving normally.",
"prerequisites": [
"data-poisoning"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_robust_ai"
],
"source_domains": [
"robust_ai"
],
"question_count": 0
},
{
"id": "backfill-scheduling",
"name": "Backfill Scheduling",
"description": "A utilization strategy that allows small, short jobs to run in fragmented resource gaps while large jobs wait for contiguous nodes.",
"prerequisites": [
"resource-fragmentation"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_fleet_orchestration"
],
"source_domains": [
"fleet_orchestration"
],
"question_count": 0
},
{
"id": "bandwidth-bound-workload",
"name": "Bandwidth-Bound Workload",
"description": "A processing regime where execution time is limited by the speed of transferring data between memory and compute units.",
"prerequisites": [
"arithmetic-intensity"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_architectures"
],
"source_domains": [
"nn_architectures"
],
"question_count": 0
},
{
"id": "bandwidth-distance-product",
"name": "Bandwidth-Distance Product",
"description": "A physical constraint dictating that a network link can provide either high data throughput or cover long physical distances, but not both cheaply.",
"prerequisites": [
"latency"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_collective_communication"
],
"source_domains": [
"collective_communication"
],
"question_count": 0
},
{
"id": "bandwidth-hog",
"name": "Bandwidth Hog",
"description": "A workload archetype that spends more time loading data than computing, constrained heavily by memory bandwidth.",
"prerequisites": [
"memory-bound-workload",
"arithmetic-intensity"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_ml_systems"
],
"source_domains": [
"ml_systems"
],
"question_count": 0
},
{
"id": "bandwidth-taper",
"name": "Bandwidth Taper",
"description": "The physical constraint where data transfer speeds progressively decrease at each hierarchical level moving outward from the compute units.",
"prerequisites": [
"matrix-operations"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_hw_acceleration"
],
"source_domains": [
"hw_acceleration"
],
"question_count": 0
},
{
"id": "bare-metal-serving",
"name": "Bare-Metal Serving",
"description": "Executing models directly on microcontroller firmware without an operating system, optimizing for extreme memory constraints.",
"prerequisites": [
"tinyml"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_model_serving"
],
"source_domains": [
"model_serving"
],
"question_count": 0
},
{
"id": "batch-ingestion",
"name": "Batch Ingestion",
"description": "Accumulating and processing data in scheduled, discrete groups to efficiently utilize computational resources.",
"prerequisites": [],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_data_engineering"
],
"source_domains": [
"data_engineering"
],
"question_count": 0
},
{
"id": "batch-normalization",
"name": "Batch Normalization",
"description": "Normalizes activations within a mini-batch to stabilize training.",
"prerequisites": [
"dense-matrix-multiplication"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_architectures"
],
"source_domains": [],
"question_count": 0
},
{
"id": "batch-processing-trade-offs",
"name": "Batch Processing Trade-offs",
"description": "The system engineering balance where increasing the number of concurrent inputs improves parallel hardware utilization but scales the activation memory footprint linearly.",
"prerequisites": [
"activation-memory-footprint"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_nn_computation"
],
"source_domains": [
"nn_computation"
],
"question_count": 0
},
{
"id": "batching-window",
"name": "Batching Window",
"description": "A configurable time period the scheduler waits to accumulate incoming requests into a single hardware batch.",
"prerequisites": [
"dynamic-batching"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_model_serving"
],
"source_domains": [
"model_serving"
],
"question_count": 0
},
{
"id": "benchmark-contamination",
"name": "Benchmark Contamination",
"description": "A failure mode in large language models where the training corpus includes benchmark test data, inflating evaluation scores through memorization.",
"prerequisites": [
"model-benchmarking"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol1_benchmarking"
],
"source_domains": [
"benchmarking"
],
"question_count": 0
},
{
"id": "bin-packing-heuristics",
"name": "Bin Packing Heuristics",
"description": "Algorithms used to fit multi-dimensional job resource requests into fixed-capacity nodes to minimize wasted capacity.",
"prerequisites": [
"fleet-orchestration"
],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_fleet_orchestration"
],
"source_domains": [
"fleet_orchestration"
],
"question_count": 0
},
{
"id": "binary-neural-networks",
"name": "Binary Neural Networks",
"description": "An extreme quantization approach representing weights and activations as single bits to enable sub-milliwatt inference on edge devices.",
"prerequisites": [
"model-quantization"
],
"tracks": [
"cloud",
"edge",
"mobile",
"tinyml"
],
"source_chapters": [
"vol2_sustainable_ai"
],
"source_domains": [
"sustainable_ai"
],
"question_count": 0
},
{
"id": "bisection-bandwidth",
"name": "Bisection Bandwidth",
"description": "The minimum bandwidth available between two equal halves of a network, dictating global collective performance.",
"prerequisites": [],
"tracks": [
"cloud"
],
"source_chapters": [
"vol2_distributed_training",
"vol2_network_fabrics"
],
"source_domains": [
"distributed_training",
"network_fabrics"
],
"question_count": 0
},