This question is basically six questions stapled together.
Start by framing the problem as a multi-class classification task with sequential inputs, then systematically address each sub-topic: labeling, features vs sequence models, multi-agent interactions, evaluation, imbalance, distribution shift, and uncertainty. Emphasize trade-offs and justify choices based on data characteristics and deployment constraints. Conclude with how uncertainty informs downstream planning.
Pro tip: Show awareness that intention prediction is inherently uncertain and that calibration and proper scoring rules matter more than raw accuracy; also mention that in production, you'd likely need to handle real-time constraints and integrate with a planner that can handle probabilistic outputs.
Define intention labels based on future trajectory (e.g., turn direction from map or path curvature) and discuss automatic labeling from map-matched routes, manual annotation, or weak supervision. Address label noise and ambiguity (e.g., vehicles that go straight then turn).
Compare hand-crafted features (kinematics, heading change, distance to intersection) with end-to-end sequence models (RNN, Transformer) that capture temporal dependencies. Discuss trade-offs in data efficiency, interpretability, and performance.
Incorporate interactions via social pooling, graph neural networks, or attention mechanisms to model how vehicles influence each other. Mention the importance of relative positions, velocities, and right-of-way rules.
Choose metrics like macro-F1, per-class recall, and calibration (e.g., ECE) due to class imbalance. Address imbalance via resampling, class weights, or focal loss. Discuss distribution shift (new intersections, weather) and mitigation via domain adaptation or continual learning.
Explain how to quantify uncertainty (e.g., Bayesian NNs, ensembles, MC dropout) and use it in planning: conservative behavior under high uncertainty, risk-aware trajectory optimization, and human-in-the-loop fallback.
AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.