179 questions
No questions match those filters.
Paired video-caption training data is far scarcer than...
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 plansThe choice between joint training and pretrain-then-finetune for image/video data is a familiar transfer-learning trade-off wearing new clothes: joint training is operationally simpler (one training run, one set of hyperparameters to tune) but forces both objectives to share a single optimization trajectory, while a staged curriculum lets you front-load the abundant, easier signal (image-text semantics) before asking the model to also solve the harder, data-poor problem (temporal coherence). Neither is objectively better — the book’s own framing picks joint training for its simplicity while noting the staged approach can outperform it, which is the kind of trade-off worth naming explicitly in an interview rather than presenting one as strictly correct.
Auto-captioning training video with a vision-language model is a case where investing in data quality has an outsized, well-documented payoff: video captions in the wild skew short and generic compared to what a strong VLM can produce, and richer captions are exactly the conditioning signal that determines how well the final model follows detailed prompts.
The cost-control triad — latent compression, precomputed latents, and a deferred super-resolution stage — all attack the same underlying constraint, that video is orders of magnitude more expensive to process than images, from three different angles: compression shrinks the per-sample cost, precomputation removes redundant recomputation across epochs, and deferred super-resolution keeps the expensive core model working at the smallest resolution the problem allows.