Did the Amex MLE loop for a senior role on their fraud detection ML platform team. Six rounds total, which is a lot. Writing this up because ML-specific detail about Amex's process is sparse.
Amex has a real ML org. This isn't a company with a couple data scientists bolted on. They have dedicated fraud ML, credit risk ML, personalization/recommendations, and NLP/document processing teams. The role I interviewed for was on fraud signal modeling, production system focus.
Round 1 (recruiter): Standard, but they asked about my comfort with MLOps and model serving infra, not just modeling. Heads up.
Round 2 (ML fundamentals phone screen): Bias-variance tradeoff, precision vs. recall and when you care about each (highly relevant for fraud: false negatives cost you fraud losses, false positives cost you customer trust), class imbalance handling. I got asked specifically how I'd handle a dataset where fraud rate is 0.1%. We talked SMOTE, class weighting, threshold tuning, and precision-recall curve analysis instead of AUC-ROC for imbalanced cases. Know this if you're going for fraud ML.
Round 3 (ML system design): Design a feature store and real-time inference pipeline for fraud scoring at transaction time. Latency constraint: <100ms. I walked through offline feature computation, low-latency feature serving (Redis, Feast), a model serving layer (TorchServe or Triton), A/B testing and shadow scoring for model deployment. They liked the shadow scoring piece. They pushed on: what do you do if the model goes stale between retraining cycles?
Round 4 (coding): Python, focused on data manipulation and a small model eval script. One LeetCode-style problem (medium), one data task. Not hard but time-limited.
Round 5 (behavioral, ML-specific): "Tell me about a model you built that underperformed in production vs. evaluation." They want to know if you've shipped real things and encountered reality. Have a story where something didn't work as expected.
Round 6 (senior ML leader): More conversational. They asked about my philosophy on model monitoring and what thresholds I'd use to trigger a retrain vs. a rollback.
Offer I declined (took a different role): $190k base, 18% bonus, some restricted cash units. The work seemed genuinely interesting. Amex fraud ML is not a toy problem.