<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>reward generation &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/reward-generation/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Sep 2026 00:13:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>reward generation &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>AI That Imagines Rewards: Diffusion Models Rewrite Traffic Signal Control</title>
		<link>https://scienmag.com/ai-that-imagines-rewards-diffusion-models-rewrite-traffic-signal-control/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Wed, 23 Sep 2026 00:13:28 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[AI for traffic flow optimization]]></category>
		<category><![CDATA[Applied Intelligence]]></category>
		<category><![CDATA[autonomous traffic signal decision-making]]></category>
		<category><![CDATA[black-box optimization]]></category>
		<category><![CDATA[credit assignment]]></category>
		<category><![CDATA[decentralized traffic control]]></category>
		<category><![CDATA[diffusion model]]></category>
		<category><![CDATA[diffusion models for reinforcement learning]]></category>
		<category><![CDATA[diffusion models in traffic management]]></category>
		<category><![CDATA[generative modeling in transportation]]></category>
		<category><![CDATA[multi-agent reinforcement learning]]></category>
		<category><![CDATA[multi-intersection coordination]]></category>
		<category><![CDATA[offline reinforcement learning]]></category>
		<category><![CDATA[queue length]]></category>
		<category><![CDATA[reward generation]]></category>
		<category><![CDATA[reward signal generation]]></category>
		<category><![CDATA[semi-offline learning]]></category>
		<category><![CDATA[smart infrastructure]]></category>
		<category><![CDATA[traffic congestion reduction]]></category>
		<category><![CDATA[traffic network performance improvement]]></category>
		<category><![CDATA[traffic signal control]]></category>
		<category><![CDATA[Traffic signal optimization]]></category>
		<category><![CDATA[travel time]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=209017</guid>

					<description><![CDATA[A new framework called BootDiffLights uses a conditional diffusion model to generate reward signals for decentralized traffic signal control, outperforming state-of-the-art multi-agent reinforcement learning baselines on regional traffic metrics.]]></description>
										<content:encoded><![CDATA[<p>City traffic grids are among the most stubborn optimization problems in modern engineering. Every intersection acts as its own decision-maker, yet the performance that matters — average queue length, travel time, congestion across a whole district — emerges from the interaction of dozens of signals acting simultaneously. A new framework called BootDiffLights, described in Applied Intelligence by researchers at Chengdu University of Information Technology and Chengdu Jiaotou Information, proposes a strikingly different way to coordinate these lights: instead of painstakingly assigning credit for a region&#8217;s traffic outcomes to each individual signal, it lets a generative diffusion model imagine what good reward signals should look like, and then optimizes against those imagined rewards.</p>
<p>The work targets a long-standing pain point in multi-agent reinforcement learning (MARL), the dominant modern approach to decentralized traffic signal control. In a MARL setup, each intersection hosts an agent that learns its own policy — when to switch phases, how long to hold green, when to yield to cross traffic. The trouble is that the global reward, such as a network-wide reduction in travel time, is shared among all agents. Determining which intersection&#8217;s decisions actually produced the improvement is the credit assignment problem, and it is notoriously difficult when the effects of one signal ripple through neighboring blocks.</p>
<p>Conventional solutions tackle credit assignment with critic networks that attempt to decompose the global reward into per-agent contributions. These approaches carry two fundamental limitations, the authors argue. First, they are sample-hungry: agents must engage in extensive trial-and-error interactions with the traffic environment before the critics learn to allocate credit meaningfully, and every trial in a live or simulated network is expensive. Second, the critics must possess strong extrapolation and generalization capabilities — they must interpret policies they were never trained on and still distribute credit sensibly. When traffic patterns shift, as they constantly do, critic networks can produce misleading credit signals that push agents toward worse policies.</p>
<p>BootDiffLights sidesteps this entire machinery. The key insight is a reframing: rather than asking how to divide a global reward among agents, the framework adopts a semi-offline multi-agent reinforcement learning paradigm that transforms the problem from credit assignment into black-box optimization. In practical terms, the system no longer focuses on exploring optimal policies directly. Instead, it concentrates on generating optimal sample data — high-quality trajectories of traffic states and actions — and optimizes in that data space. The generative engine doing this work is a conditional diffusion model, the same class of model that has powered recent breakthroughs in image synthesis and, increasingly, decision-making.</p>
<p>Diffusion models work by learning to reverse a gradual noising process. Trained on data, they learn to transform pure noise into samples that resemble the training distribution, and conditioning signals can steer what they generate. In BootDiffLights, the conditional diffusion model serves as an implicit credit-assignment mechanism: it learns the relationship between traffic conditions, agent behaviors, and resulting rewards, and can then synthesize reward signals consistent with desired regional outcomes. Because the model captures the joint structure of the multi-intersection system, it implicitly encodes how each signal&#8217;s actions contribute to network-level performance — without an explicit critic network attempting the decomposition.</p>
<p>The semi-offline aspect matters as much as the diffusion engine. Fully offline reinforcement learning restricts agents to a fixed dataset, which is safe but often suboptimal; fully online learning requires costly and sometimes dangerous exploration. A semi-offline approach lets the system bootstrap from logged traffic data while selectively gathering new interaction data where it matters most. This is what enables BootDiffLights to improve sampling efficiency: the diffusion model can propose promising regions of the behavior space, and the learning system refines its data generation around those regions rather than wandering blindly through trial and error. The framework essentially shifts computational effort from interacting with the environment to generating better synthetic experience.</p>
<p>The authors evaluated the framework on both synthetic and real-world traffic datasets, running all experiments with five random seeds and reporting results as mean plus or minus standard deviation — a rigorous protocol that guards against lucky draws inflating performance claims. Across these benchmarks, BootDiffLights outperformed state-of-the-art baselines on regional traffic metrics, including average queue length and travel time. The comparison field includes well-established MARL techniques built on value decomposition and multi-agent actor-critic architectures, meaning the generative approach did not merely match conventional methods but surpassed them on the metrics that commuters actually feel.</p>
<p>The significance of this work extends beyond one benchmark suite. Traffic signal control has been dominated for decades by fixed-time plans and adaptive schemes such as SCOOT and SCATS, with reinforcement learning offering a data-driven alternative since the late 2010s. The field&#8217;s persistent obstacle has been scale: methods that work beautifully on a handful of intersections degrade as networks grow, because credit assignment becomes combinatorially harder. By replacing explicit credit decomposition with generative reward synthesis, BootDiffLights offers a path that may scale more gracefully. The diffusion model&#8217;s capacity to model complex joint distributions could prove decisive in dense urban cores where dozens of signals interact within a few blocks.</p>
<p>The approach also connects to a broader trend in machine learning: the migration of generative modeling into sequential decision-making. Diffusion-based policies and planners have recently shown impressive results in robotics and offline control, and BootDiffLights brings that momentum to a civic infrastructure problem with enormous practical stakes. Congestion costs cities billions annually in lost time and fuel, and emissions from idling vehicles degrade urban air quality. A control framework that learns efficiently from existing data, requires no explicit reward decomposition, and improves region-wide metrics could translate into real deployments — though the authors note that data availability constraints limit what can be shared publicly for now.</p>
<p>Challenges remain before such systems direct real intersections. Diffusion models carry their own computational burden at inference time, and traffic agencies will demand robustness guarantees that simulation studies alone cannot fully provide. Yet the conceptual shift is compelling: where previous frameworks asked a critic to guess who deserved credit, BootDiffLights asks a generative model to imagine the rewards worth pursuing — and then optimizes toward that imagination. For a problem as tangled as city-wide traffic coordination, that creative reframing may be exactly the kind of fresh thinking the field has been waiting for.</p>
<p><strong>Subject of Research:</strong> Diffusion-based reward generation for decentralized multi-intersection traffic signal control in semi-offline multi-agent reinforcement learning</p>
<p><strong>Article Title:</strong> BootDiffLights: Decentralized traffic signal control via diffusion-based reward generation</p>
<p><strong>Article References:</strong> Hao, B., He, J., Zheng, J., Dong, W., Yang, Q., &amp; Ma, X. (2026). BootDiffLights: Decentralized traffic signal control via diffusion-based reward generation. <em>Applied Intelligence, 56</em>(15), Article 437. <a href="https://doi.org/10.1007/s10489-026-07487-5" rel="noopener noreferrer">https://doi.org/10.1007/s10489-026-07487-5</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10489-026-07487-5" rel="noopener noreferrer">10.1007/s10489-026-07487-5</a></p>
<p><strong>Keywords:</strong> diffusion model, traffic signal control, multi-agent reinforcement learning, credit assignment, offline reinforcement learning, semi-offline learning, black-box optimization, reward generation, queue length, travel time, smart infrastructure, Applied Intelligence</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">209017</post-id>	</item>
	</channel>
</rss>
