CrackML by @ml.with.umang
Interview questions / ML System Design
ML System Design interview question

Predict whether an old post is good for Memories

Predict whether an old post is good for Memories.

mediumsystem designEvidence 77/1001 source reportMeta

The 60-second answer

Clarify the prediction or ranking objective, users, scale, latency, and failure costs first. Design data collection/labels, features, training, model selection, and offline evaluation as one coherent pipeline.

Build the answer in this order

1
Frame the problem

Clarify the prediction or ranking objective, users, scale, latency, and failure costs first.

2
Design the data path

Design data collection/labels, features, training, model selection, and offline evaluation as one coherent pipeline.

3
Choose the modeling stack

Specify online serving, caching, fallbacks, monitoring, retraining, and experimentation.

4
Serve, evaluate, iterate

Call out feedback loops, cold start, privacy, and abuse risks that affect long-term model quality.

A useful interview mental model

This is the shape of a strong answer—not a script to memorize.

01Requirements
02Data
03Model / Retrieval
04Serving
05Monitor

Senior-level signal

  • Quantify bottlenecks and define graceful degradation under dependency or model failure.
  • Tie architecture choices to measurable product and operational trade-offs.

What the interviewer is really testing

Product framing, data design, modeling choices, serving constraints, reliability, evaluation, and explicit trade-offs.

Likely follow-up questions

What changes at 10× traffic or data volume?
Which failure mode would you monitor first in production?
How would you evaluate this offline and online before rollout?

Common weak-answer patterns

  • Jumping to a model before defining the product contract.
  • Listing components without bottlenecks, metrics, or failure handling.
  • Ignoring data quality, serving latency, monitoring, and iteration.