- Recommender model: what the model does in aggregate, how it aligns with marketplace KPIs and product-partner constraints, and its data efficiency for feature sourcing and model improvement.
- Patterns and trends: fingerprinting user cohorts and tracking how approval and conversion patterns emerge and evolve.
- Cases: for one user, why a product was recommended (or why their odds are low) and what would flip them, in real time.
Distill your approval-odds model
Point at historical user data via a connector, wrap your approval-odds endpoint as a
Predictor, and pass it as teacher to op.reasoning.fit. OuterProduct trains a reasoning engine alongside your recommender and leaves the production recommendation path untouched.Plug in the live user stream
Marketplaces see a constant stream of users browsing for products, each scored on arrival. Pull the day’s batch from your warehouse using the same feature schema as training and pass it through the reasoning engine. Predictions come back paired in real time with the rich context that powers every level of the app.
Reason at three altitudes
Use the predictions and reasoning context to power every level of your marketplace app -from portfolio-wide KPIs down to a single user’s personalized recommendation.
Scoring engine - KPIs, drivers, and drift
Track headline KPIs (approval rate, conversion lift, sign-ups) over time, watch for anomalies and drift, and characterize the features driving approval odds. Becauseget_global_drivers() exposes the features the model relies on.User patterns - recurring approval profiles
Fit aPatternTracker on the approved band to surface the dominant combinations of features that drive recommendation outcomes. Each pattern is an executable filter with precision and lift stats, ready to apply to live users.See the Pattern Tracker guide for the full API including partition and labeling options.
Individual users - explanation and scenario
For one user, pair the explanation with a counterfactual scenario usingscenario(). The explanation is the personalized “why this product fits you” that builds confidence for strong applicants and drives sign-ups. For weaker applicants the scenario doubles as a credit-advisor recommendation - specific steps to improve their approval likelihood - and as operator-facing traceability linking every recommendation back to its data inputs in one click.Where to go next
Explanations
Feature attributions and rule-based explanations for every prediction.
Counterfactuals
Control scenario search and read the returned
ScenarioResult.