A pair of researchers has identified a way to evaluate and improve artificial intelligence decision-making systems without relying on a mathematical property that most existing approaches require. The work could simplify how companies deploy AI models trained on fixed datasets rather than through live interaction.
According to arXiv, Lars van der Laan and Nathan Kallus developed a technique called fitted occupancy-ratio evaluation, or FORE, that sidesteps what researchers call Bellman completeness. This property has long been considered necessary for offline reinforcement learning, a training method where AI systems learn optimal behavior from historical data without access to live environments.
What the Challenge Solves
Occupancy ratios represent how often an AI system visits different states under a particular policy. Measuring these ratios accurately matters because they help practitioners understand whether their trained models will perform well in the real world, even when training data comes from different sources or conditions. Traditional methods estimate occupancy ratios by checking multiple mathematical constraints simultaneously, which requires substantial computational resources.
FORE takes a different approach. Rather than balancing multiple constraints at once, the method solves a single optimization problem at each step. This single-step problem uses one-transition data and projects results onto a log-ratio class using Kullback-Leibler divergence, a standard way to measure differences between probability distributions.
Why Removing the Requirement Matters

The key innovation lies in what the method does not require. Existing approaches typically demand both that the AI's value function be representable within the model class and that this representation remains stable after applying mathematical operators. FORE only requires that the occupancy ratio itself be representable.
This distinction simplifies the theoretical landscape. The research establishes that when the occupancy ratio can be properly represented, the algorithm's mathematical recursion contracts toward the true ratio as iterations progress. The researchers also provided finite-sample bounds showing how the method performs with limited real-world data, with convergence governed by how well the chosen ratio class fits the underlying problem.
Practical Applications
The fitted ratio itself enables three concrete uses:
- Direct value estimation through reward reweighting, which adjusts estimated values based on how the training data differs from deployment conditions
- Occupancy-weighted fitted Q-evaluation, combining the ratio with traditional Q-learning estimates
- Doubly robust estimation, which pairs the fitted ratio with a fitted Q-function to improve robustness
These applications address a central challenge in deploying offline-trained AI systems. When an AI model trains exclusively on historical data, ensuring it generalizes safely to new situations requires careful evaluation. The occupancy ratio provides one lens for this evaluation by quantifying how representative the training data is of deployment conditions.
Implications for Industry
The ability to eliminate completeness assumptions could accelerate adoption of offline reinforcement learning in domains where live training proves infeasible or risky. Healthcare, robotics, and finance all face constraints that make offline learning attractive. Companies working in these areas often struggle with the theoretical guarantees required to validate their systems. A simpler theoretical foundation could lower barriers to practical deployment.
The research contributes to a broader effort within machine learning to make offline policy evaluation more reliable and computationally tractable. As AI systems increasingly operate in safety-critical environments, having flexible evaluation methods that require fewer mathematical assumptions becomes increasingly valuable.



