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 →

A single learned planner that coordinates assortment, sourcing, replenishment frequency and routing reduces simulated supply‑chain cost versus siloed departmental optimizers; gains stem from learning latent cross‑stage couplings rather than optimizing individual modules in isolation.

SCOPE: Supply-Chain Operations through Coupled Policies for End-to-End Coordination
Yunhao Liang, Xianqi Cao, Pujun Zhang, Yuan Qu, Yongzhi Qi, Ningxuan Kang, Max Z. J. Shen · July 30, 2026
arxiv other medium 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. Yunhao Liang unresolved corpus identity
  2. Xianqi Cao unresolved corpus identity
  3. Pujun Zhang unresolved corpus identity
  4. Yuan Qu unresolved corpus identity
  5. Yongzhi Qi unresolved corpus identity
  6. Ningxuan Kang unresolved corpus identity
  7. Max Z. J. Shen unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Yunhao Liang provider ID
  2. Xianqi Cao provider ID
  3. Pujun Zhang provider ID
  4. Yuan Qu provider ID
  5. Yongzhi Qi provider ID
  6. Ningxuan Kang provider ID
  7. Max Z.J. Shen provider ID
SCOPE learns a shared operational representation and coupled decision policies for assortment, sourcing, replenishment frequency, and routing, producing coordinated end-to-end plans that outperform decomposed, department-level baselines on public and large-scale proprietary supply-chain data.

Citation observations

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

Can supply-chain AI move beyond isolated decision modules toward unified operational planning? A complete replenishment plan specifies which products each location carries, which upstream facility supplies it, how often it is replenished, and how deliveries are routed. These decisions are operationally coupled: the selected assortment changes the demand and load passed to later stages; source assignment and replenishment frequency reshape the delivery requests; and route feasibility and cost, in turn, determine the system value of the earlier choices. Yet in modern supply chains, these decisions are often handled by separate departments and optimized through separate systems, which can lead to stockouts, inventory exposure, and avoidable transportation. We propose SCOPE: Supply-Chain Operations through Coupled Policies for End-to-End Coordination, a composite policy model that represents supply-chain entities as tokens, contextualizes them through a shared operational representation, and maps each token type to the corresponding decision interface. Each decision builds on the partial plan formed by earlier decisions while the completed plan is evaluated using a shared system-level utility. We instantiate this framework in urban fresh-retail replenishment, where service frequency, assortment, capacity pressure, and road-network routing interact strongly, and evaluate it on real operational data from Dingdong and JD.com, two large-scale supply chains operating at different replenishment echelons. Across both settings, SCOPE consistently outperforms methods that optimize each decision stage separately, as well as practice-oriented baselines commonly used in supply-chain operations. These results show that learning and coordinating cross-department operational couplings lead to more effective end-to-end supply-chain decisions.

Summary

Main Finding

SCOPE (Supply-Chain Operations through Coupled Policies for End-to-End Coordination) is a learned composite policy that jointly plans assortment, source assignment, replenishment intervals, and routing by (a) encoding supply-chain entities as tokens into a shared operational representation and (b) mapping token types to staged decision interfaces. Trained with stage-wise surrogates and selected by a shared system-level validation utility, SCOPE learns latent operational couplings among departmental decisions and produces end-to-end plans that outperform decomposed pipelines and industry baselines on real large-scale datasets (FreshRetailNet-50K and JD.com operational data).

Key Points

  • Problem framed: retail replenishment as a staged decision pipeline where upstream choices (assortment A, source σ, interval T) induce downstream routing instances R and change attainable system value — an effect the authors call latent operational coupling.
  • System-level utility U(s,c;y) used to evaluate complete plans: U = assortment value − uncovered-demand penalty − transportation cost − inventory-exposure cost. This single objective enables cross-stage comparison of complete plans.
  • Architecture:
    • Shared operational backbone Bθ (transformer-style encoder) produces embeddings for downstream locations, upstream nodes, SKUs, and cost/context.
    • Separate decision interfaces (πA, πσ, πT, πR) produce in sequence: assortment A, source assignment σ, interval plan T, and routing R, each conditioned on the shared representation and earlier decisions.
    • Routing: requests are grouped by assigned source and service day; a neural route decoder with capacity masks and multi-start rollouts picks feasible routes.
  • Training strategy:
    • S stage-wise surrogates (not a single end-to-end gradient): assortment learns from combined proxies (coverage, value, load, exposure) and one-for-one swap tests evaluated through the downstream pipeline; source assignment uses geometric/nearest feasible warm-start supervision; interval selection uses a global-fixed-interval scan as warm start plus per-unit prediction; router trained via imitation of OR-Tools solutions on subproblems.
    • Full-pipeline checkpoint selection is done by running candidate checkpoints on a validation set and picking the best by validation utility (no direct gradient from full utility to heads).
  • Empirical evidence:
    • Two operational regimes tested: FreshRetailNet-50K (public fresh-retail data) and a JD.com nationwide RDC→FDC setting (different echelon topology).
    • SCOPE outperforms decomposed baselines that pair rule-based upstream decisions with strong classical/metaheuristic/neural route solvers, as well as practice-oriented baselines; robust across ablations and stress tests.
  • Practical design point: same backbone-plus-interfaces architecture adapts across echelons by adding an interface (structural reuse).
  • Social/operational implications discussed by authors: improved cross-department visibility, auditability, and an auditable evaluation protocol for the JD collaboration; FreshRetailNet experiments are reproducible.

Data & Methods

  • Data
    • FreshRetailNet-50K: public fresh-retail dataset (Wang et al. 2025) used to evaluate store-level urban replenishment couplings (frequency, assortment, capacity, routing).
    • JD.com internal data: nationwide warehouse network where selected demand must be assigned from regional distribution centers (RDCs) to front distribution centers (FDCs); used to test the architecture’s adaptability at a different echelon/scale.
    • Cost and planning context c encodes dispatch, travel, vehicle limits, and inventory-exposure tradeoffs known at planning time.
  • Model details
    • Entities (stores/FDCs, RDCs, SKUs) are tokens with feature adapters; a transformer-style shared encoder produces embeddings E = [h_depot, h_operational, h_store...].
    • Scorers/decoders:
      • πAθ: assortment scorer combining location embeddings, SKU projections, demand/value/load features → pick top-K SKUs per location.
      • πσθ: source scorer compares eligible upstream nodes using embeddings, link features, and selected loads → assigns source for each downstream location.
      • πTθ: interval classifier predicts replenishment interval per replenishment unit Mz (discrete choices).
      • πRθ: autoregressive routing decoder trained by imitation (log-likelihood on OR-Tools reference sequences), uses capacity masks and multi-start decoding to return feasible route for each grouped subproblem.
  • Optimization and training regime
    • Assortment: supervised via proxy targets and validated by swap-based pipeline comparisons (retain swaps only if pipeline proxy utility improves while coverage/value preserved).
    • Source: nearest-feasible/geometric warm-start supervision (feasibility-constrained).
    • Interval: global scan for best single interval provides warm-start label; model predicts per-unit intervals.
    • Router: imitation loss LR using OR-Tools solutions on per-day subproblems.
    • Composite policy selection: train multiple candidate checkpoints; select final parameters by directly maximizing average validation utility (Equation 8).
  • Evaluation
    • Baselines: decomposed pipelines with rule-based upstream decisions combined with strong route solvers (OR-Tools, hybrid genetic search, neural route solvers).
    • Ablations and stress/proxy tests to probe couplings and robustness.
    • Metrics: the paper reports gains in the shared utility (transport cost reductions, better assortment value net of costs, reduced inventory exposure / uncovered demand proxies).

Implications for AI Economics

  • Quantified value of coordination: SCOPE demonstrates measurable welfare improvements from coordinating decisions that are typically siloed (merchandising, replenishment planning, logistics). Economically, this captures avoided externalities transferred across departments (e.g., assortment decisions creating routing/capacity costs) and shows gains from internalizing those externalities via learned policies.
  • Operational externalities and incentive design: the framework makes latent cross-stage externalities observable and comparable using a shared utility; this can inform contracting, internal pricing, or compensation schemes to align departmental incentives (e.g., show merchandisers how SKU choices increase logistics cost).
  • Organizational consequences: adopting end-to-end learned coordination requires integrated data pipelines, shared objective alignment, and governance/audit mechanisms. The paper’s validation-by-utility approach highlights the need for auditable evaluation in industry deployments.
  • Labor and role shifts: automating cross-department coordination could change the demand for roles focused on local optimization (e.g., manual assortment rules or heuristic routing) and increase demand for roles in systems-level planning, ML governance, and interdisciplinary validation.
  • Policy and market effects: larger platforms using coordinated policies may reduce aggregate transport inefficiency and stockouts, increasing consumer welfare and lowering carbon/travel externalities; at the same time, gains concentrated at platform level could change competitive dynamics (e.g., platforms with better integrated AI capture more margin).
  • Caution on proxies and robustness: the model relies on planning proxies (uncovered-demand proxy, inventory-exposure approximations, and approximate routing via learned decoder). From an economics perspective, welfare claims should be conditioned on proxy fidelity; mis-specified proxies or distributional shifts could misalign decisions and create hidden costs. Robustness, interpretability, and counterfactual auditing are important for deployment.
  • Research directions in AI economics:
    • Formal quantification of the size and distribution of cross-departmental externalities in large supply chains using learned models like SCOPE.
    • Mechanism design to convert the learned system utility into incentive-compatible contracts across departments or independent firms.
    • Welfare analyses that compare proxy-based planning gains to realized outcomes under stochastic demand and dynamic inventory (linking offline validation utility to realized consumer surplus and platform profit).
    • Investigation of broader equilibrium effects when coordinated supply-chain AI scales (labor displacement, market concentration, environmental externalities).

Limitations (economically relevant) - The framework optimizes against proxies rather than full dynamic inventory/lost-sales simulations; realized welfare gains may differ under stochastic dynamics. - Source-assignment and interval supervision are partially heuristic (geometric warm-starts, global interval scans), which may limit identification of globally optimal couplings. - Router is trained by imitation on OR-Tools subproblems and is approximate at inference; routing suboptimality can affect measured end-to-end gains. - Organizational and incentive constraints are not modeled; real-world adoption requires aligning objectives and data-sharing across departments.

Overall, SCOPE provides a practical, learnable architecture to capture and exploit latent operational couplings in multi-stage supply chains. For AI economics, it supplies a concrete method and empirical evidence that coordinating departmental decisions under a unified system-level objective can produce measurable efficiency gains and surface cross-department externalities relevant to contracting, governance, and welfare analyses.

Assessment

Paper Typeother Evidence Strengthmedium — The paper evaluates the proposed SCOPE framework on a public dataset (FreshRetailNet-50K) and proprietary operational data from Dingdong and JD.com, comparing end-to-end pipeline utility against decomposed baselines and ablations; this provides realistic, applied evidence of improvement. However, evidence is not causal in the econometric sense (no randomized or natural experiment), uses surrogate objectives and proxies (e.g., for inventory exposure and uncovered demand), and the proprietary JD evaluation includes reproducibility constraints, reducing external verifiability. Methods Rigormedium — Model and training procedure are clearly described: a shared operational encoder, staged policy heads, routing subproblem construction, imitation-based router training, and validation-by-pipeline-utility. The evaluation compares to multiple industrial and neural baselines and reports ablations. Weaknesses include use of proxy objective terms instead of realized lost-sales/inventory simulation, geometric warm-start supervision for source assignment (which biases training toward heuristics), router trained by imitation rather than integrated optimization, and limited detail about baseline tuning and JD reproducibility constraints; these reduce confidence that gains fully reflect learned cross-stage coupling rather than implementation or proxy choices. SampleExperiments use (1) FreshRetailNet-50K, a public fresh-retail dataset; (2) real operational data from Dingdong (urban fresh-retail replenishment); and (3) proprietary JD.com nationwide warehouse data with regional distribution centers (RDCs) and front distribution centers (FDCs). Scenario inputs include demand, SKU attributes, eligible supply links, physical road distances, vehicle capacity limits, and a cost context (dispatch, travel, inventory exposure proxies). The JD evaluation is described as audited but subject to data-sharing constraints. Themesproductivity org_design GeneralizabilityResults may depend on dataset-specific cost-context proxies (inventory exposure, uncovered-demand) rather than realized sales or end-customer outcomes., Framework assumes the same decision grammar (assortment, source, interval, routing) and fixed-K-assortment per location; other supply-chain structures (dynamic assortment sizes, different service models) may need adaptation., Router is trained by imitation of OR-Tools and executed approximately at inference, so performance may vary with different routing toolchains or vehicle/road-network structures., Proprietary JD results have restricted reproducibility; transfer to other geographies or last-mile modalities is untested., Scalability and computational cost on very large networks (beyond provided datasets) are not fully characterized.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
SCOPE jointly coordinates assortment selection, source assignment, replenishment intervals, and vehicle routing under a shared system-level utility rather than optimizing each decision stage independently. Organizational Efficiency positive End-to-end supply-chain system utility combining assortment value, uncovered-demand penalties, transportation cost, and inventory exposure.
Reading fidelity high
Study strength medium
not reported
0.12
Upstream assortment, source-assignment, and replenishment-interval decisions change the downstream routing problem and the attainable value of the complete supply-chain plan. Task Allocation mixed Downstream routing feasibility and complete-plan utility.
Reading fidelity high
Study strength high
not reported
0.2
SCOPE consistently outperforms separately optimized decision-stage methods and practice-oriented supply-chain baselines in the evaluated settings. Organizational Efficiency positive Complete-pipeline system utility or operational decision effectiveness.
Reading fidelity high
Study strength medium
not reported
0.12
The reported evaluation covers two real supply-chain settings: FreshRetailNet-50K fresh-retail data associated with Dingdong and a nationwide JD.com warehouse network involving regional distribution centers and front distribution centers. Organizational Efficiency positive Operational decision performance across supply-chain scales and echelons.
Reading fidelity high
Study strength medium
not reported
0.12
The same SCOPE backbone-and-interface design can be reused across the two operational regimes by adding a single interface for the changed network topology. Organizational Efficiency positive Structural reuse and cross-regime applicability of the operational-planning architecture.
Reading fidelity high
Study strength medium
not reported
0.12
SCOPE represents supply-chain entities and operational context in a shared representation while exposing separate interfaces for assortment, replenishment-cycle planning, and routing. Organizational Efficiency positive Coordination of cross-department operational decisions.
Reading fidelity high
Study strength medium
not reported
0.12
The SCOPE routing component is a feasible approximate executor rather than an exact optimizer of the downstream routing-completion value. Error Rate mixed Routing feasibility and route cost.
Reading fidelity high
Study strength high
not reported
0.2
The training procedure selects the final composite policy checkpoint using complete-pipeline validation utility. Organizational Efficiency positive Average validation system utility of the complete composite policy.
Reading fidelity high
Study strength high
not reported
0.2

Notes