26
How would you handle missing features at inference time?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would first determine whether the missing value is common, rare, or a sign of a pipeline bug. Then I would define fallback behavior such as imputation, default values, or a safe degraded path if the feature is unavailable. The reason I choose this approach is that production models need to behave predictably even when some inputs are missing. I would also think about logging missingness, because repeated missing features can indicate data pipeline issues. If the interviewer wants more depth, I would discuss training the model to be robust to missing inputs.