The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

In simulated, FRED‑calibrated macroeconomies, a basic tabular Q‑learning rule stabilizes inflation and unemployment better than advanced RL algorithms and the Taylor rule, suggesting simplicity can beat complexity; however the result rests on a linear‑Gaussian, discrete‑action model and may not hold in real central‑bank settings.

Reinforcement Learning for Monetary Policy Under Macroeconomic Uncertainty: Analyzing Tabular and Function Approximation Methods
Tony Wang, Kyle Feinstein, Sheryl Chen · December 09, 2025
arxiv theoretical low evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Tony Wang unresolved corpus identity
  2. Kyle Feinstein unresolved corpus identity
  3. Sheryl Chen unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Sheryl Chen provider ID
  2. Tony Wang provider ID
  3. Kyle Feinstein provider ID
In simulations using a linear-Gaussian macro model calibrated to FRED, a simple tabular Q-learning agent outperforms more sophisticated RL methods and standard Taylor-rule baselines at stabilizing inflation and unemployment.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

We study how a central bank should dynamically set short-term nominal interest rates to stabilize inflation and unemployment when macroeconomic relationships are uncertain and time-varying. We model monetary policy as a sequential decision-making problem where the central bank observes macroeconomic conditions quarterly and chooses interest rate adjustments. Using publicly accessible historical Federal Reserve Economic Data (FRED), we construct a linear-Gaussian transition model and implement a discrete-action Markov Decision Process with a quadratic loss reward function. We chose to compare nine different reinforcement learning style approaches against Taylor Rule and naive baselines, including tabular Q-learning variants, SARSA, Actor-Critic, Deep Q-Networks, Bayesian Q-learning with uncertainty quantification, and POMDP formulations with partial observability. Notably, despite its simplicity, standard tabular Q-learning achieved the best performance (-615.13 +- 309.58 mean return), outperforming both enhanced RL methods and traditional policy rules. Our results suggest that while sophisticated RL techniques show promise for monetary policy applications, simpler approaches may be more robust in this domain, highlighting important challenges in applying modern RL to macroeconomic policy.

Summary

Main Finding

Standard tabular Q-learning—using a manually discretized, low-dimensional state representation—outperformed more sophisticated RL methods (DQN, Actor-Critic, Bayesian variants) and traditional policy rules (Taylor Rule) in a data-driven simulated monetary policy environment. Best mean discounted return: Q-learning (legacy) = −615.13 ± 309.58, with DQN (−681.46 ± 438.20) and Taylor Rule (−682.65 ± 501.93) trailing.

Key Points

  • Environment and objective
    • Policy problem cast as a discrete-action MDP to set quarterly short-term rates to stabilize inflation and unemployment under uncertain dynamics.
    • Reward = negative quadratic loss encoding the Fed dual mandate plus a smoothing penalty: −[wπ(π−π)^2 + λu(u−u)^2 + η(Δi)^2] with π = 2%, u = 4.5%, wπ = 1.0, λu = 0.5, η = 0.1.
  • Data-driven dynamics
    • Transition model fitted to FRED quarterly U.S. macro data (1955–2025) using a linear-Gaussian autoregressive model xt+1 = Axt + Bit + ϵt (xt = [π, u, y]).
  • Algorithms compared (nine RL methods + baselines)
    • Tabular Q-learning variants (legacy, coarse, reduced, tuned), SARSA, Actor-Critic, DQN, Bayesian Q-learning (Thompson & UCB), and a POMDP variant with particle filter belief estimation.
    • Baselines: Taylor Rule (standard and tuned) and Naive Hold.
  • Main empirical outcomes
    • Tabular Q-learning (legacy) had the best mean return (−615.13), lower per-step loss (mean loss 11.27) and better inflation control (inflation loss 8.63 ± 4.74) than the Taylor Rule (inflation loss 9.85 ± 7.86).
    • Advanced methods often had higher variance (e.g., DQN σ ≈ 438) and no clear practical advantage in this low-dimensional, well-structured simulator.
    • Effect sizes between top methods were small (e.g., Cohen’s d ≈ 0.175 between Q-learning legacy and DQN), indicating statistical but not necessarily large practical differences.
  • Behavioral/economic observations
    • Naive Hold performed reasonably well (ranked 7th), implying policy stability is valuable in the simulated environment.
    • Tabular methods’ success likely benefited from strong inductive bias via discretization that matched the (linear) dynamics.

Data & Methods

  • Data
    • Quarterly U.S. macro variables from FRED, 1955–2025.
    • State vector: inflation (year-over-year CPI), unemployment rate, output gap, and the policy (federal funds) rate.
  • Environment
    • Linear-Gaussian transition model estimated by OLS for matrices A, B and shock covariance Σ.
    • Episodes: up to 80 quarters (20 years); initial states sampled from historical distribution.
    • Action spaces:
      • Standard: {−0.5%, 0%, +0.5%};
      • Enhanced variants: {−1.0%, −0.5%, 0%, +0.5%, +1.0%}.
    • Reward: quadratic dual-mandate loss with smoothing penalty (parameters as above).
  • Algorithms & implementation details (high-level)
    • Tabular Q: discretizations (e.g., legacy 6×6×7×6 = 1,512 states), learning rates, epsilon-greedy exploration; a tuned variant used epsilon decay and 10k episodes.
    • SARSA: on-policy variant with similar discretization.
    • Actor-Critic: linear softmax policy + linear value baseline with REINFORCE/TD updates.
    • DQN: two-layer ReLU (64 units), replay buffer (10k), target network updates, ε-decay.
    • Bayesian Q: Gaussian posteriors per (s,a) updated via Bayesian linear regression; Thompson sampling and UCB exploration variants.
    • POMDP: added observation noise (σ=0.15) with a 1,000-particle filter belief state; limited convergence within runs.
  • Evaluation
    • 100–200 evaluation episodes per method; metrics: discounted returns, per-step loss and components (inflation, unemployment, smoothing), variance and statistical tests (Cohen’s d, confidence intervals).

Implications for AI Economics

  • Practical lesson: inductive bias and state abstraction matter
    • In low-dimensional, well-structured macro settings, simple tabular methods with carefully chosen discretization/inductive biases can outperform flexible function approximators that introduce extra variance and instability.
  • Caution about algorithmic sophistication
    • More complex RL (deep nets, elaborate exploration) does not guarantee better economic control when the environment is low-dimensional or close to linear. Complexity can increase variance and reduce policy reliability — a key concern for central banks that prefer predictable policies.
  • Role for RL in policymaking
    • RL is better suited initially as decision-support and diagnostic tools (policy suggestions, scenario analysis, uncertainty quantification) rather than immediate replacements for human decision-making.
    • Bayesian RL variants are promising for communicating uncertainty and risk—valuable in central banking contexts—despite modest performance in this experiment.
  • Important robustness and modeling gaps to address before deployment
    • Nonstationarity and structural breaks: training and evaluation on a single fitted model risk overfitting to historical regimes; methods for online adaptation, domain shift, and distributional robustness are essential.
    • Richer environments: incorporate nonlinear dynamics, more observables, continuous action spaces, policy constraints, and realistic observation noise to evaluate real-world applicability.
    • Safety, interpretability, and constraints: embed economic constraints, interpretability mechanisms, and worst-case guarantees to meet regulatory and institutional requirements.
  • Recommended research directions
    • Model-based RL or hybrid (econometric + RL) methods that exploit structural knowledge; causal inference integration to reason about policy interventions.
    • Robust/adaptive algorithms for regime shifts (meta-RL, continual learning) and stress-testing under rare but consequential shocks.
    • Evaluation protocols focused on policy risk (variance, tail losses), interpretability, and human-in-the-loop design to bridge algorithmic findings and policymaker needs.

Summary conclusion: The paper empirically demonstrates that, in a stylized yet data-calibrated macroenvironment, simple tabular RL with appropriate abstractions can be more effective and stable than many modern RL methods. However, substantial modeling, robustness, and safety work remains before RL can be trusted for real-world monetary policy decisions.

Assessment

Paper Typetheoretical Evidence Strengthlow — Findings come from simulation experiments in a model calibrated to historical FRED data rather than from real-world policy interventions or out-of-sample policy counterfactuals; results therefore depend heavily on model specification (linear-Gaussian dynamics, discrete actions, chosen loss function) and may not translate to actual central-bank environments. Methods Rigormedium — The study compares a broad set of RL algorithms (tabular Q-learning, SARSA, Actor-Critic, DQN, Bayesian Q-learning, POMDP formulations) and standard policy baselines, and uses publicly available macro data to parameterize the environment, which demonstrates methodological breadth; however, important simplifying assumptions (linear-Gaussian transitions, discrete action space, quarterly frequency, a single quadratic loss, limited discussion of hyperparameter sensitivity or robustness to model misspecification) limit rigor for real-world inference. SampleQuarterly U.S. macroeconomic time series from FRED (used to estimate a linear-Gaussian transition model for inflation, unemployment, and short-term interest rates and related state variables); the estimated model is used to simulate an MDP for training and evaluating nine RL-style algorithms and traditional policy baselines (Taylor Rule, naive baselines). Exact sample period and variable list are not specified in the abstract. Themesgovernance innovation IdentificationNo causal identification in the econometric sense — the paper constructs a linear-Gaussian transition model estimated from publicly available FRED quarterly macro series (inflation, unemployment, short-term interest rate and related aggregates) and treats monetary policy as a discrete-action Markov Decision Process with a quadratic loss; policy performance is evaluated by simulation of this data-calibrated model under different RL algorithms and baseline rules. GeneralizabilityCalibrated to U.S. FRED data — results may not generalize to other countries or institutional settings, Linear-Gaussian transition model may not capture real-world macro nonlinearities, structural breaks, or regime changes, Discrete action space and quarterly decision frequency simplify actual continuous-rate, higher-frequency policy choices, Quadratic loss reward function may not reflect political constraints, multiple objectives, or asymmetric costs faced by central banks, Simulation-only evaluation — no historical counterfactuals or field validation with real policy outcomes, Potential sensitivity to hyperparameters, algorithmic implementation, and simulation seed not fully disclosed

Claims (6)

ClaimDirectionOutcomeConfidence & EvidenceDetails
We model monetary policy as a sequential decision-making problem where the central bank observes macroeconomic conditions quarterly and chooses interest rate adjustments. Decision Quality null_result interest rate adjustments (policy actions) in response to observed macroeconomic conditions
Reading fidelity high
Study strength low
not reported
0.06
Using publicly accessible historical Federal Reserve Economic Data (FRED), we construct a linear-Gaussian transition model. Other null_result state transition dynamics (linear-Gaussian model fitted to FRED data)
Reading fidelity high
Study strength medium
not reported
0.12
We implement a discrete-action Markov Decision Process (MDP) with a quadratic loss reward function. Decision Quality null_result MDP reward (quadratic loss reflecting inflation and unemployment deviations)
Reading fidelity high
Study strength low
not reported
0.06
We compare nine different reinforcement learning approaches (tabular Q-learning variants, SARSA, Actor-Critic, Deep Q-Networks, Bayesian Q-learning with uncertainty quantification, and POMDP formulations with partial observability) against Taylor Rule and naive baselines. Decision Quality null_result policy performance under the simulated MDP (returns relative to baselines)
Reading fidelity high
Study strength medium
not reported
0.12
Standard tabular Q-learning achieved the best performance (-615.13 +- 309.58 mean return), outperforming both enhanced RL methods and traditional policy rules. Decision Quality positive mean return (cumulative reward) of the learned policy
Reading fidelity high
Study strength medium
-615.13 +- 309.58 mean return
0.12
While sophisticated RL techniques show promise for monetary policy applications, simpler approaches may be more robust in this domain, highlighting important challenges in applying modern RL to macroeconomic policy. Decision Quality mixed robustness of RL approaches to stabilize inflation and unemployment (policy effectiveness across methods)
Reading fidelity high
Study strength medium
not reported
0.12

Notes