179 questions
No questions match those filters.
Design the training infrastructure for a 70B dense mode...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansDesigning training infrastructure for a 70B model requires a rigorous calculation of the memory budget, accounting for parameters, gradients, and optimizer states. The choice of parallelism must be justified by the underlying hardware topology, typically utilizing tensor-parallelism within a node and pipeline-parallelism or ZeRO-3 across nodes to manage the scale.
Furthermore, the design must estimate the pipeline bubble overhead and clearly identify how batch size is consumed as a resource within the cluster. This approach ensures that the infrastructure is balanced between memory capacity and communication bandwidth.