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 →

Repurposing large language models for sequential decision-making yields large benchmark gains and better simulated bidding: a 3B-parameter DecisionLLM substantially outperforms Decision Transformer on Maze2D and improves AuctionNet bidding performance, with results driven by model scale, dataset size and trajectory quality, though findings are limited to offline and simulated settings.

DecisionLLM: Large Language Models for Long Sequence Decision Exploration
Xiaowei Lv, Zhilin Zhang, Yijun Li, Yusen Huo, Siyuan Ju, Xuyan Li, Chunxiang Hong, Tianyu Wang, Yongcai Wang, Peng Sun, Chuan Yu, Jian Xu, Bo Zheng · January 15, 2026
arxiv descriptive 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. Xiaowei Lv unresolved corpus identity
  2. Zhilin Zhang unresolved corpus identity
  3. Yijun Li unresolved corpus identity
  4. Yusen Huo unresolved corpus identity
  5. Siyuan Ju unresolved corpus identity
  6. Xuyan Li unresolved corpus identity
  7. Chunxiang Hong unresolved corpus identity
  8. Tianyu Wang unresolved corpus identity
  9. Yongcai Wang unresolved corpus identity
  10. Peng Sun unresolved corpus identity
  11. Chuan Yu unresolved corpus identity
  12. Jian Xu unresolved corpus identity
  13. Bo Zheng unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Xiaowei Lv provider ID
  2. Zhilin Zhang provider ID
  3. Yijun Li provider ID
  4. Y. Huo provider ID
  5. Siyuan Ju provider ID
  6. Xuyang Li provider ID
  7. Chunxiang Hong provider ID
  8. Tianyu Wang provider ID
  9. Yongcai Wang provider ID
  10. Peng Sun provider ID
  11. Chuan Yu provider ID
  12. Jian Xu provider ID
  13. Bo Zheng provider ID
DecisionLLM—an LLM-based approach that treats trajectories as a distinct modality and aligns them with natural language descriptions—outperforms Decision Transformer on control benchmarks and improves simulated auction bidding, with performance scaling in model size, data volume, and data quality.

Citation observations

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

Long-sequence decision-making, which is usually addressed through reinforcement learning (RL), is a critical component for optimizing strategic operations in dynamic environments, such as real-time bidding in computational advertising. The Decision Transformer (DT) introduced a powerful paradigm by framing RL as an autoregressive sequence modeling problem. Concurrently, Large Language Models (LLMs) have demonstrated remarkable success in complex reasoning and planning tasks. This inspires us whether LLMs, which share the same Transformer foundation, but operate at a much larger scale, can unlock new levels of performance in long-horizon sequential decision-making problem. This work investigates the application of LLMs to offline decision making tasks. A fundamental challenge in this domain is the LLMs' inherent inability to interpret continuous values, as they lack a native understanding of numerical magnitude and order when values are represented as text strings. To address this, we propose treating trajectories as a distinct modality. By learning to align trajectory data with natural language task descriptions, our model can autoregressively predict future decisions within a cohesive framework we term DecisionLLM. We establish a set of scaling laws governing this paradigm, demonstrating that performance hinges on three factors: model scale, data volume, and data quality. In offline experimental benchmarks and bidding scenarios, DecisionLLM achieves strong performance. Specifically, DecisionLLM-3B outperforms the traditional Decision Transformer (DT) by 69.4 on Maze2D umaze-v1 and by 0.085 on AuctionNet. It extends the AIGB paradigm and points to promising directions for future exploration in online bidding.

Summary

Main Finding

DecisionLLM is a multimodal Transformer that treats trajectories (states, actions, returns-to-go) as a distinct non-text modality and aligns them with textual task descriptions inside an LLM. This design substantially improves long-horizon offline decision-making: embedding analyses show better, disentangled representations than prompt-based text serializations, and empirical results report large gains over Decision Transformer (e.g., ≈+69.4 points on Maze2D umaze-v1 and an improvement on AuctionNet reported in the paper as roughly +0.06–0.085). The authors also identify scaling laws: performance improves with model size, dataset volume, and data quality, and these factors interact synergistically.

Key Points

  • Problem: LLMs treat numeric trajectory values as text tokens and are insensitive to numeric magnitude/order; naive prompting of continuous trajectories is ineffective for decision tasks.
  • Core idea: treat trajectories as a separate modality via a trajectory encoder; fuse its embedding with text embeddings via placeholder tokens (<|traj begin|>, <|traj end|>) and autoregressively predict continuous actions through an action head.
  • Architecture:
    • Trajectory encoder converts returns-to-go, states, and actions into modality-specific embeddings, interleaved by timestep.
    • Trajectory embedding replaces placeholder token embeddings in the LLM input.
    • LLM is finetuned end-to-end; a linear action head maps outputs back to continuous action space; training uses MSE.
  • Training & inference:
    • Autoregressive training on offline trajectories; sliding-window for long trajectories.
    • Inference iteratively conditions on predicted action, observed next state and updated returns-to-go.
  • Data quality handling:
    • Filter out low-return trajectories.
    • Reweight low-reward steps instead of outright removal to preserve coverage.
  • Empirical signals:
    • Prompt-based numeric encoding shows representation collapse (high pairwise similarity); DecisionLLM embeddings are structured and clusterable.
    • DecisionLLM-3B substantially outperforms Decision Transformer on maze2d-umaze-v1; achieves measurable gains on AuctionNet (paper reports inconsistent numeric values; improvements are small-to-moderate on auction benchmark).
  • Scaling laws: model size, data volume, and data quality all matter and interact — scaling one dimension alone has limited effect without the others.
  • Practical costs: approach requires finetuning large pretrained LLMs (authors finetuned Qwen2.5-Instruct variants) and uses substantial compute (A100s).

Data & Methods

  • Tasks / Benchmarks:
    • Maze2D (D4RL; long-horizon, sparse reward navigation; primary environment maze2d-umaze-v1).
    • AuctionNet (simulated bidding benchmark to test applicability in computational advertising).
  • Baselines compared: BC, TD3+BC, CQL, IQL, Decision Transformer (DT), prompt-based LLM input.
  • Key modelling details:
    • Initialize from Qwen2.5-Instruct pretrained weights at multiple scales; finetune entire model including input/output linear layers and LLM parameters.
    • Trajectory input: interleaved triplets (returns, state, action) embedded and positionally encoded.
    • Fusion: text tokens include placeholders; trajectory embedding substitutes placeholder embeddings.
    • Loss: MSE between predicted and ground-truth continuous actions.
    • Sliding window over last t timesteps (t=20 window used in experiments).
  • Training hyperparameters (as reported):
    • Batch size 64, learning rate 1e-5, training 5 epochs, evaluation every 200 steps, cosine annealing LR schedule.
    • Hardware: 8× NVIDIA A100 (40GB).
  • Data quality interventions:
    • Return-threshold filtering to remove low-quality trajectories.
    • Reweighting of low-reward steps to preserve exploration coverage.
  • Evaluation:
    • Maze2D metrics: return and normalized D4RL score; results averaged over 100 runs; they report peak checkpoint performance.
    • AuctionNet: online scoring with 48 players and 7 episodes per evaluation.

Implications for AI Economics

  • Practical application to markets (computational advertising / RTB):
    • DecisionLLM extends AI-Generated Bidding (AIGB) by enabling LLM-based agents to make long-horizon strategic bidding decisions that condition on trajectories and textual campaign objectives.
    • Better modeling of continuous bid and state dynamics can increase bid efficiency and seller revenue capture or buyer ROI depending on objective alignment.
  • Market structure and competitive effects:
    • The identified scaling law (model size × data volume × data quality) implies incumbents with larger high-quality datasets and compute budgets can gain outsized advantages in bidding efficiency, potentially increasing market concentration.
    • Firms that can collect/clean high-quality offline trajectory data and fine-tune large LLMs will be better positioned to deploy superior automated bidding strategies.
  • Welfare, efficiency and strategic behavior:
    • Improved long-horizon agents may change auction dynamics (e.g., temporal bidding strategies, pacing), with ambiguous welfare effects: could improve allocative efficiency but also enable more aggressive extraction or exploit complex auction features.
    • Multi-agent interaction: when many bidders adopt such agents, new equilibria may emerge; simple one-agent offline evaluation may not predict market outcomes.
  • Risks and limitations relevant to economics:
    • Offline imitation-learning sensitivity: DecisionLLM is trained offline and can inherit biases/limitations of historical data (e.g., selection bias, lack of coverage for strategic deviations), leading to suboptimal or unstable behavior in live markets.
    • Distributional shift: the model may overfit to historical auction environments; robust online adaptation or safe exploration is needed to avoid performance collapses.
    • Cost externalities: high compute and data costs raise barriers to entry and could exacerbate inequality across firms.
    • Regulatory/privacy concerns: richer trajectory data and user-level signals used to tune models raise privacy and regulatory considerations.
  • Research & policy directions:
    • For researchers: evaluate DecisionLLM in multi-agent simulated markets to study equilibrium dynamics, adversarial behaviors, and emergent pacing strategies; explore robust online fine-tuning and off-policy correction methods.
    • For economists and platform designers: assess how improved bidder agents alter auction outcomes, platform revenue, advertiser surplus, and consumer welfare; consider mechanisms (reserve pricing, throttling, transparency rules) to mitigate concentration or exploitative tactics.
    • For practitioners: invest in high-quality trajectory collection and cleaning; consider cost-benefit trade-offs of scaling model size vs. improving data quality; deploy conservative online testing (A/B tests, sandboxed simulations) before production rollout.

If you want, I can extract the exact experimental tables and numeric results from the paper, highlight the inconsistencies in reported AuctionNet gains, or draft a short briefing for product or policy teams focusing on market impact and mitigation strategies.

Assessment

Paper Typedescriptive Evidence Strengthlow — The paper reports offline benchmark and simulated auction results showing better task performance for an LLM-based decision model, but provides no causal identification of real-world economic impacts, no field experiments, and relies on simulated/benchmarked environments whose link to production outcomes is untested. Methods Rigormedium — The work appears to follow standard ML experimental practices (benchmark comparisons, ablations over scale/data/quality), but key methodological details relevant for evaluation are not described here (data sampling and preprocessing for auctions, hyperparameter sensitivity, robustness to distribution shift, statistical significance, and reproducibility information). The use of offline benchmarks and simulated auctions is appropriate for preliminary claims but limits claims about robustness and deployment. SampleOffline trajectory datasets from control benchmarks (e.g., Maze2D umaze-v1) and a simulated bidding environment (AuctionNet); models trained at multiple scales (DecisionLLM-3B reported) and compared to baselines such as Decision Transformer using varying amounts and qualities of trajectory data to study scaling laws. Themesinnovation adoption GeneralizabilityBenchmark-to-field gap: Maze2D and AuctionNet are simulated and may not reflect production ad-exchange complexity., Strategic interactions absent: Offline simulation likely omits adaptive competitor/market responses in live auctions., Offline-to-online shift: Performance in offline logged data may not translate to online policy deployment due to distributional shift and exploration needs., Value representation: The proposed modality alignment for continuous values may fail on different numeric ranges, noise, or heterogeneous feature sets., Compute and data requirements: Gains hinge on model scale and data volume, limiting applicability to firms with substantial compute/data resources.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
DecisionLLM-3B outperforms the traditional Decision Transformer (DT) by 69.4 on Maze2D umaze-v1. Decision Quality positive Maze2D umaze-v1 score (benchmark performance)
Reading fidelity high
Study strength medium
69.4
0.18
DecisionLLM-3B outperforms the traditional Decision Transformer (DT) by 0.085 on AuctionNet. Decision Quality positive AuctionNet performance (bidding benchmark metric)
Reading fidelity high
Study strength medium
0.085
0.18
Treating trajectories as a distinct modality and learning to align trajectory data with natural language task descriptions enables an autoregressive model (DecisionLLM) to predict future decisions within a cohesive framework. Decision Quality positive ability to predict future decisions / model performance on offline decision-making tasks
Reading fidelity high
Study strength medium
not reported
0.18
A fundamental challenge for applying LLMs to continuous-control decision tasks is their inherent inability to interpret continuous values, because they lack a native understanding of numerical magnitude and order when values are represented as text strings. Other negative LLMs' ability to interpret continuous numeric inputs
Reading fidelity high
Study strength medium
not reported
0.18
The authors establish a set of scaling laws for DecisionLLM showing that performance depends on three factors: model scale, data volume, and data quality. Decision Quality mixed DecisionLLM performance as a function of model scale, data volume, and data quality
Reading fidelity high
Study strength medium
not reported
0.18
DecisionLLM achieves strong performance in offline experimental benchmarks and bidding scenarios. Decision Quality positive overall benchmark and bidding scenario performance
Reading fidelity high
Study strength medium
not reported
0.18
DecisionLLM extends the AIGB (AI-driven guaranteed bidding?) paradigm and points to promising directions for future exploration in online bidding. Innovation Output positive applicability/role of DecisionLLM in the AIGB paradigm and online bidding research
Reading fidelity medium
Study strength speculative
not reported
0.02
LLMs operate at a much larger scale than Decision Transformer and share the same Transformer foundation. Other neutral model scale and architectural foundation
Reading fidelity high
Study strength low
not reported
0.09

Notes