Predicts the target column for a batch of records. Accepts inline JSON records (list of row dicts) so it works from remote callers such as the hosted MCP server — no file paths. Uses the platform's inference proxy route, which requires an existing deployment for the model version (deploy the version first via deployments).
Score every row of a platform dataset and return the ranked top-N plus a distribution summary — "who are my highest-risk customers" on a real book. Rows go from object storage straight to the inference server (the deployment's linked preprocessor is applied there, so pass the RAW dataset the model was trained from), in 1,000-row batches, using a short-lived deploy key minted for the call. Nothing is persisted.
dict — Dict with n_rows, model_type, summary (quantiles, positive_rate, deciles by descending score — decile 1 is the top 10%) and top: ranked rows carrying their source columns plus proba/prediction (classification) or prediction (regression). Max 50,000 rows per call; score a filtered dataset beyond that.