<?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>solute transport &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/solute-transport/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 13:03:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>solute transport &#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>Leaky ReLU Supercharges Neural Network That Hunts Hidden Groundwater Polluters</title>
		<link>https://scienmag.com/leaky-relu-supercharges-neural-network-that-hunts-hidden-groundwater-polluters/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 13:03:34 +0000</pubDate>
				<category><![CDATA[Earth Science]]></category>
		<category><![CDATA[AI-based solutions for groundwater pollution]]></category>
		<category><![CDATA[Bayesian inference]]></category>
		<category><![CDATA[computational efficiency in hydrogeology]]></category>
		<category><![CDATA[convolutional neural network]]></category>
		<category><![CDATA[deep learning in environmental science]]></category>
		<category><![CDATA[DREAM algorithm]]></category>
		<category><![CDATA[groundwater contamination]]></category>
		<category><![CDATA[Groundwater contamination source identification]]></category>
		<category><![CDATA[groundwater plume source localization]]></category>
		<category><![CDATA[hydrogeology]]></category>
		<category><![CDATA[hydrogeology journal research on pollution source tracking]]></category>
		<category><![CDATA[industrial solvent and heavy metal pollution detection]]></category>
		<category><![CDATA[inverse modeling with deep neural networks]]></category>
		<category><![CDATA[inverse problem]]></category>
		<category><![CDATA[inverse problems in groundwater contamination]]></category>
		<category><![CDATA[kriging]]></category>
		<category><![CDATA[leaky ReLU]]></category>
		<category><![CDATA[Leaky ReLU neural networks]]></category>
		<category><![CDATA[neural network acceleration for groundwater modeling]]></category>
		<category><![CDATA[Random Forest]]></category>
		<category><![CDATA[solute transport]]></category>
		<category><![CDATA[source inversion]]></category>
		<category><![CDATA[surrogate model]]></category>
		<category><![CDATA[surrogate modeling for hydrogeology]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=194659</guid>

					<description><![CDATA[A new convolutional neural network surrogate with leaky ReLU activation dramatically accelerates and sharpens the identification of hidden groundwater pollution sources.]]></description>
										<content:encoded><![CDATA[<p>When a plume of industrial solvent, nitrate, or heavy metal seeps into an aquifer, the most urgent question for regulators and communities is deceptively simple: where did it come from? Answering that question mathematically is anything but simple. Identifying the location, timing, and intensity of an unknown groundwater contamination source is a classic ill-posed inverse problem, meaning that many different release histories can produce nearly identical patterns of measured concentrations downstream. Traditional approaches tackle the problem by running a numerical groundwater model thousands of times, adjusting suspected source characteristics over and over until simulated concentrations match field observations. Each run can take minutes to hours, so the total computational bill of a full inversion can climb into days or weeks of supercomputer time. A new study published in Hydrogeology Journal by Xinjie Deng, Xingyu He, and Xue Jiang of the China University of Geosciences in Wuhan offers a way to slash that cost by more than two orders of magnitude without sacrificing accuracy, using a cleverly modified deep neural network as a stand-in for the expensive physical model.</p>
<p>The core idea behind the new work is the surrogate model, a fast statistical approximation trained to mimic the input-output behavior of a computationally demanding simulator. Surrogates have become workhorses in hydrogeology: once trained on a library of paired simulations, they can produce predictions in milliseconds, making it feasible to embed them inside Bayesian inversion frameworks that would otherwise be prohibitively slow. The research team compared four such surrogates within a standardized groundwater simulation framework: kriging, a geostatistical interpolation method long favored in the field; random forest, an ensemble machine-learning technique built from many decision trees; a conventional convolutional neural network, or CNN, using the standard rectified linear unit, ReLU, activation function; and their proposed alternative, a CNN enhanced with a leaky ReLU activation. The inversion itself was carried out with the differential evolution adaptive Metropolis algorithm, known as DREAM, a Markov chain Monte Carlo method specifically designed to efficiently explore the posterior distributions of source characteristics such as location, release magnitude, and timing.</p>
<p>The choice of activation function might sound like a minor architectural detail, but it turns out to be central to the performance gains. In a standard CNN, the ReLU activation passes positive inputs through unchanged and clamps all negative inputs to zero. This simplicity makes ReLU networks fast and easy to train, but it introduces a well-documented failure mode often called the dying neuron problem. If a neuron&#8217;s inputs consistently land on the negative side, its gradient becomes exactly zero, and it can never update its weights again; the neuron is effectively dead for the rest of training. In the context of groundwater transport, where solute concentrations, hydraulic gradients, and dispersion effects involve substantial negative-going signal variations after preprocessing, this one-sided behavior can discard precisely the information needed to represent strongly nonlinear transport relationships across spatially heterogeneous aquifers.</p>
<p>The leaky ReLU modification is elegantly minimal. Instead of zeroing negative inputs, it multiplies them by a small fixed slope, allowing a faint but nonzero signal to propagate backward during training. The authors introduced this change specifically to reduce the risk of neuron inactivation, maintain gradient flow for negative inputs, and improve the network&#8217;s representation of the nonlinear relationships that govern advective and dispersive solute transport. The consequences were measurable. Across the benchmark comparisons, the leaky ReLU-enhanced CNN achieved the best predictive performance of any surrogate tested. Relative to kriging, it increased the coefficient of determination, R-squared, by 11.76 percent and reduced the mean squared error by 67.61 percent. Relative to random forest, it improved R-squared by 13.10 percent and cut mean squared error by 67.86 percent. Even against its closest competitor, the conventional ReLU-based CNN, the leaky variant reduced mean squared error by 25 percent and lifted R-squared from 0.93 to 0.95.</p>
<p>Those predictive gains translated directly into superior inversion results. When embedded in the DREAM-based Bayesian framework, the leaky ReLU CNN surrogate reproduced the observed concentration data with remarkable fidelity, achieving an R-squared of 0.999 between simulated and observed values during the inversion process. More striking still was the speed. The full surrogate-assisted inversion required only about 1/380 of the computational time of running the underlying groundwater numerical model directly. In practical terms, an analysis that might have tied up computational resources for weeks can now be completed in a fraction of a day, opening the door to routine source identification at real contaminated sites rather than reserving such analyses for the most severe incidents.</p>
<p>The significance extends well beyond computational convenience. Groundwater supplies drinking water to roughly half the world&#8217;s population and irrigates a substantial share of global cropland, yet contamination events often go undetected until plumes have migrated far from their origin. Because regulatory liability and remediation design both hinge on attributing contamination to specific sources and release histories, the forensic capacity of inverse modeling carries enormous economic and legal weight. Slow inversion frameworks force practitioners to simplify: fewer candidate source locations, coarser time discretizations, fewer Monte Carlo iterations, and consequently broader, less defensible uncertainty bounds on the inferred source. A surrogate that is both faster and more accurate relaxes each of those constraints simultaneously.</p>
<p>Methodologically, the study also delivers a pointed lesson about the deep-learning components inside scientific machine learning pipelines. Much attention in the hydrogeology literature has focused on exotic architectures, including encoder-decoder networks, dense connected networks, and conditional neural processes, while comparatively little scrutiny has fallen on the humble activation function. The 25 percent reduction in mean squared error achieved by swapping ReLU for leaky ReLU, with all other factors held constant, demonstrates that mitigating dying-neuron behavior can yield gains rivaling those from architectural redesign. This finding resonates with recent work on neural activation dynamics and suggests that similar activation-function audits could benefit the many published surrogate models already deployed across water resources research, from DNAPL remediation design to salinity intrusion control.</p>
<p>The researchers situate their framework within a broader movement toward theory-guided and data-driven modeling of the subsurface, where machine learning surrogates increasingly bridge the gap between physics-based simulators and the statistical machinery of Bayesian inference. Prior studies have paired kriging surrogates with adaptive sampling, extreme learning machines with heuristic search, and neural networks with Markov chain Monte Carlo, each achieving partial improvements in the speed-accuracy trade-off. The present work pushes the frontier by combining a spatially aware convolutional architecture, which naturally encodes the two-dimensional structure of aquifer concentration fields, with an activation function chosen to preserve information flow during training in a strongly nonlinear, spatially heterogeneous setting.</p>
<p>Caveats remain, as they do in any modeling study. The reported benchmarks derive from a standardized simulation framework rather than a specific field site, and real-world applications will confront noisy and sparse monitoring data, uncertain hydraulic parameters, and possible model structural errors that can amplify in inverse settings. The authors note that their data are available upon request, inviting follow-up validation. Still, the combination of near-perfect concentration reproduction, a 380-fold computational speedup, and consistent superiority over established surrogates marks the leaky ReLU-enhanced CNN as a promising practical tool. For the communities living above unseen contamination and the agencies tasked with holding polluters accountable, faster and sharper source forensics cannot arrive soon enough.</p>
<p><strong>Subject of Research:</strong> A leaky ReLU-enhanced convolutional neural network surrogate model for groundwater contamination source inversion</p>
<p><strong>Article Title:</strong> Leaky rectified linear unit-enhanced convolutional neural network surrogate for groundwater contamination source inversion</p>
<p><strong>Article References:</strong> Leaky rectified linear unit-enhanced convolutional neural network surrogate for groundwater contamination source inversion. (n.d.). <a href="https://doi.org/10.1007/s10040-026-03163-7" rel="noopener noreferrer">https://doi.org/10.1007/s10040-026-03163-7</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10040-026-03163-7" rel="noopener noreferrer">10.1007/s10040-026-03163-7</a></p>
<p><strong>Keywords:</strong> groundwater contamination, source inversion, surrogate model, convolutional neural network, leaky ReLU, DREAM algorithm, Bayesian inference, kriging, random forest, hydrogeology, inverse problem, solute transport</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">194659</post-id>	</item>
	</channel>
</rss>
