Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/AI in banking/Use cases, ROI and evaluation/Underwriting AI vendor claims before you buy
2/5+150 XP

Use cases, ROI and evaluation

5Mapping AI across the banking value chain+1506Underwriting AI vendor claims before you buy+1507Building a defensible ROI model for AI pilots+1508Total cost of ownership beyond the license fee+1509Running a build-buy-partner decision for core AI capability+150

Underwriting AI vendor claims before you buy

# Underwriting AI vendor claims before you buy

A fraud-detection vendor tells your risk committee: "Our model cuts false positives by 40%." The slide has a clean bar chart. The sales rep has a case study logo wall. Nobody in the room asks: 40% compared to what, measured how, on whose data?

Six months later your fraud ops team is drowning in a queue that looks nothing like the pitch. This lesson gives you the checklist to prevent that outcome, before a pilot ever touches production data.

Why the "40% fewer false positives" claim is almost meaningless alone

A false positive (a legitimate transaction wrongly flagged as fraud) has a real cost: annoyed customers, abandoned transactions, call center volume. Vendors know reducing false positives is a top pain point, so it's the headline metric of choice.

But "40% fewer" is a ratio, not a fact. You need the denominator. Ask:

  • 40% compared to what baseline? Their own weaker model? Your current in-house system? An industry-average benchmark that may not resemble your portfolio?
  • On what population? A dataset of 50,000 transactions from one mid-size US regional bank, or millions across multiple issuers and countries?
  • At what fraud-catch rate? You can always reduce false positives by loosening the threshold, at the cost of missing more actual fraud. A responsible claim reports both false positive rate and true positive rate (fraud caught) together, ideally as a full precision-recall or ROC curve, not a single point.

If the vendor cannot produce the confusion matrix (the 2x2 table of true/false positives and negatives) behind the headline number, treat the claim as marketing, not evidence.

The five things to demand before a pilot

1. The benchmark dataset description

Ask for a data sheet describing: time period, geography, transaction types (card-present vs. card-not-present, wire, ACH), fraud label definition, and class balance (what % of the dataset was actually fraudulent). Fraud is rare, often well under 1% of transactions, so a model tested on an artificially balanced 50/50 dataset will look far better than it performs live.

2. The exact metric definitions

"Accuracy" is almost useless for rare-event detection like fraud or anti-money laundering (AML, the regulatory regime requiring banks to detect and report suspicious financial activity) because a model that predicts "not fraud" every time can be 99%+ "accurate" while catching zero fraud. Insist on:

  • Precision (of flagged cases, what % were truly fraud)
  • Recall / true positive rate (of actual fraud, what % was caught)
  • False positive rate at a stated operating threshold

3. Test conditions and data leakage checks

Ask explicitly: was the test set completely separate in time from the training set (out-of-time validation), or just a random split? Random splits on transaction data can leak information (a customer's later transactions inform predictions about their earlier ones), inflating results artificially. Out-of-time testing, training on 2023 data and testing on 2024 data, is the realistic standard.

4. Performance on data that looks like yours

A model benchmarked on large-bank card data may degrade badly on a community bank's smaller, different transaction mix, or on cross-border wires if it was trained mostly on domestic ACH. Ask for a champion-challenger pilot: run the vendor model in shadow mode (scoring live transactions without acting on them) against your existing system for a defined period, then compare results on your actual population.

5. Disclosure of drift and retraining cadence

Fraud patterns shift constantly, and so does normal customer behavior. Ask how often the model is retrained, what triggers retraining, and what happens to performance between retraining cycles (this is called model drift or performance decay). A vendor with no answer to "how do you monitor drift" is asking you to buy a snapshot, not a system.

A simple worked example: why base rates matter

Suppose your fraud rate is realistically 0.3% of transactions (a plausible order-of-magnitude estimate for card transactions; actual rates vary by issuer and channel). Out of 1,000,000 transactions, that's roughly 3,000 fraudulent ones.

Vendor claims: 90% recall (catches 90% of fraud) and a false positive rate of 2%.

  • True positives caught: 90% x 3,000 = 2,700
  • False positives: 2% x 997,000 (non-fraud transactions) ≈ 19,940

So your fraud team reviews roughly 22,640 flagged transactions to find 2,700 real fraud cases. That's a precision of about 12%. The vendor's "40% fewer false positives than our old model" claim might be true and still leave you with an unworkable review queue, because the base rate of fraud is so low that even small false-positive percentages generate huge absolute volumes.

This is the base rate problem, and it's the single most common reason vendor pilots disappoint in production. Always convert percentage claims into absolute counts against your actual transaction volume before signing anything.

Regulatory and governance angle

In the US, the Federal Reserve's SR 11-7 guidance on model risk management sets the supervisory expectation that banks independently validate any model, including vendor-supplied ones, before deployment, and monitor it on an ongoing basis. You cannot outsource validation responsibility to the vendor's own benchmark report.

In the EU, the AI Act (entered into force 2024, with phased compliance obligations through 2026 and beyond) classifies most creditworthiness and fraud-scoring systems used by banks as "high-risk AI systems," which triggers requirements for documentation, human oversight, and accuracy/robustness testing that examiners can inspect. European banks should mapmapUsing software to automate repetitive marketing tasks and campaigns, enabling personalisation at scale across channels like email, web, and social.Voir la définition complète → any vendor claim directly to these documentation requirements as part of procurement, not after.

Either way, the regulatory expectation and the commercial due diligence point the same direction: independent validation on your own dataown dataData collected directly from your own customers and prospects through your own channels: your most reliable and privacy-compliant source.Voir la définition complète →, not vendor marketing collateral, is the standard of proof.

Vérification des acquis

1. A vendor claims their model reduces false positives by 40%. Why is this claim alone almost meaningless?

2. Why can a vendor always reduce false positives simply by loosening the detection threshold?

3. What should a buyer conclude if a vendor cannot produce the confusion matrix behind their headline performance claim?

CHOIX MULTIPLES

4. Select ALL correct answers: which questions should a buyer ask to properly interpret a vendor's 'X% fewer false positives' claim?

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers: what information should be included in a benchmark dataset description requested from an AI vendor before a pilot?

Sélectionnez toutes les réponses correctes.

Building the vendor evaluation scorecard

A practical procurement checklist for AI vendor claims in banking should score each vendor on:

1. Transparency of methodology: will they share the confusion matrix, not just the headline ratio?

2. Data relevance: was the benchmark built on data resembling your portfolio (geography, channel, customer segment)?

3. Shadow-mode pilot availability: will they run live, non-production scoring on your data before go-live?

4. Explainability: can the model's flagged decisions be explained to a customer or examiner (relevant under fair lending laws like the US Equal Credit Opportunity Act, and under GDPR's automated-decision provisions in the EU)?

5. Drift monitoring and retraining SLA: what's contractually guaranteed for ongoing performance, not just launch-day performance?

A simple snippet for tracking this internally during vendor evaluation:

python
# minimal vendor claim sanity-check
fraud_rate = 0.003          # estimate: adjust to your actual portfolio
total_txns = 1_000_000
recall = 0.90                # vendor-claimed true positive rate
fpr = 0.02                   # vendor-claimed false positive rate

fraud_txns = total_txns * fraud_rate
non_fraud_txns = total_txns - fraud_txns

true_positives = fraud_txns * recall
false_positives = non_fraud_txns * fpr

precision = true_positives / (true_positives + false_positives)
print(f"Flagged for review: {true_positives + false_positives:,.0f}")
print(f"Precision: {precision:.1%}")

Run this with the vendor's actual claimed numbers and your real transaction volume before any contract discussion.

🎬 [VIDEO: "Model Risk Management Explained" - https://www.youtube.com/results?search_query=model+risk+management+banking+explained - search results for accessible explainer videos on model validation and governance frameworks like SR 11-7, useful background before vendor evaluation meetings]

Key Takeaways

  • Never accept a single-number claim ("40% fewer false positives") without the baseline, dataset description, and full confusion matrix behind it.
  • Convert every percentage claim into absolute counts against your real transaction volume; low base rates (like fraud at well under 1%) make small percentage differences huge in practice.
  • Demand out-of-time testing and a shadow-mode pilot on your own dataown dataData collected directly from your own customers and prospects through your own channels: your most reliable and privacy-compliant source.Voir la définition complète → before any production decision.
  • Regulatory frameworks (Fed SR 11-7 in the US, the EU AI Act's high-risk category) require independent validation, not vendor self-reporting, so build that validation into procurement timelines from day one.
  • Score vendors on transparency, data relevance, explainability, and drift monitoring, not just the headline pitch metric.

Précédent

Mapping AI across the banking value chain

Suivant

Building a defensible ROI model for AI pilots