179 questions
No questions match those filters.
What are the infrastructure bottlenecks when training a...
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 plansTraining a reasoning model with RL faces three primary infrastructure bottlenecks. First, rollout generation blocks training; this is mitigated by separating inference and training worker pools with asynchronous message passing. Second, variable CoT lengths lead to uneven batches and GPU underutilization, which can be addressed through sequence packing or per-length-bucket batching. Third, syncing updated weights from the training process to the inference server is complex, often requiring experimental APIs or restarting the inference engine each iteration.