Papers for

financial risk teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Language models are inadequate for complex quantitative decisions

Language Is an Insufficient Substrate for Quantitative Reasoning, and Consequential Domains Need Large Quantitative Models

Abstract: The prevailing assumption in applied machine learning is that progress on consequential quantitative decisions such as pricing risk, allocating capital, triaging patients, or containing a network intrusion will follow from progress in large language models (LLMs). A language model is trained on a representation of the world that was produced by human description; description is a lossy encoding of the quantitative record, and the loss is irreversible: no downstream model, at any scale, can recover from a description what the description did not encode. We formalize this as a property of the representation on which a model is trained rather than of the model capacity, and we identify three further properties that consequential settings demand of a model and that a language substrate cannot supply by construction: reproducibility, lineage from every output back to the source records that produced. it, and calibrated uncertainty. We argue that these properties define a distinct model class, which we call the Large Quantitative Model (LQM).

Thu 10 SeptArtificial IntelligenceMachine Learning
The gist
Using language models to make important decisions based on numbers, like pricing or medical triage, is limited because language can’t fully capture precise data. The authors explain that when people describe data in words, some details are lost forever, so no computer model trained on those words can perfectly recover the original figures. They also identify three key needs for trusted quantitative decision-making: consistent results, traceability back to original data, and meaningful measures of uncertainty. Because language models can’t provide these by design, the authors say a new type of model focused on quantitative data is needed.
Open 2609.12105v1

Quantum features improve credit default prediction with linear models

Quantum Feature Engineering for Credit Default Prediction: When and Why IQP Circuits Help Linear Classifiers

Abstract: Credit default prediction is a tabular classification problem in which modest gains in F1 translate directly into reduced financial exposure. We ask whether Instantaneous Quantum Polynomial-time (IQP) circuits can produce features that improve a classifier over both its raw classical baseline and Kernel PCA - the strongest unsupervised classical non-linear alternative - at an equal feature budget. The dataset provides 23 financial attributes per client; for an n-qubit circuit we select n of them, encode each as a rotation angle, and read 2n expectation values back out as new features. The motivation for using a quantum circuit is computational: an n-qubit IQP circuit runs in constant depth and encodes feature correlations in a 2^n-dimensional Hilbert space, whereas classical simulation of its exact output statistics scales exponentially in n. Using the UCI Default of Credit Card Clients dataset and five-fold cross-validation, we find that appending 16 IQP features (n = 8 qubits) to a Logistic Regression model raises F1 from 0.462 to 0.517 (+0.055, p < 0.0001). Kernel PCA, the next-best method, reaches only 0.493 at the same feature count; the gap survives Benjamini-Hochberg correction across 12 tests (p = 0.00007). No other classifier - Random Forest, SVM, XGBoost, or k-NN - benefits, which points to a linear-expressivity mechanism rather than a generic improvement. We also show that how the 8 input features are chosen matters: Random Forest importance-guided selection reaches F1 = 0.523, while encoding maximally uncorrelated features drops it to 0.496, demonstrating that the circuit amplifies informative structure rather than creating it from scratch.

Wed 9 SeptMachine Learning
The gist
Predicting who will fail to repay credit is important because even small improvements can save money. The authors show that using special quantum circuits called IQP to create new features helps a simple linear model predict defaults better than classical methods, including a strong classical technique called Kernel PCA. They find the choice of which financial attributes to encode matters, and the quantum features work best when combined with these informative inputs. This reveals that quantum circuits can amplify signals in data rather than just invent new information.
Open 2609.10505v1

GraphFAS improves fraud detection with automated graph features

GraphFAS: A Distributed System for Automated Graph Feature Generation and Selection in Industrial Transaction Networks

Abstract: Industrial fraud detection often relies on costly expert-crafted features that overlook graph-structured relational signals, while GNNs often do not meet the interpretability and deployment requirements of financial risk control. We propose GraphFAS (Graph Feature Automated Selection), a distributed feature selection procedure based on Boruta that bridges this gap through: (1) a non-parametric graph feature generation module that constructs explicit, interpretable structural features via multi-hop subgraph extraction and multi-scale aggregation without learned parameters; and (2) an automated distributed feature selection algorithm extending Boruta with median-based aggregation across partitions to robustly identify informative features at scale with minimal domain expertise. Compared with end-to-end GNN pipelines, GraphFAS decouples feature aggregation from model training, enabling direct integration with tabular models and direct compatibility with TreeSHAPbased explanations. Deployed in Alipay, GraphFAS delivers orderof-magnitude improvements in engineering efficiency while showing strong performance against expert-driven and graph-learning baselines on large-scale graphs.

Tue 8 SeptMachine LearningArtificial IntelligenceDistributed, Parallel, and Cluster Computing
The gist
Fraud detection in financial transactions often depends on experts creating complex features that miss important connection patterns between users. The authors introduce GraphFAS, a system that automatically creates easy-to-understand features based on the network of transactions without needing complex learning models. This system selects the most useful features in a robust and scalable way, making it easier to catch fraud while explaining the results. GraphFAS was successfully used in a big payment platform, improving efficiency and matching expert-crafted and advanced learning methods.
Open 2609.08970v1