<?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>deep learning for crop health &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/deep-learning-for-crop-health/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Sep 2026 23:00:16 +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>deep learning for crop health &#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>DAPR-AM-Net: explainable AI detects and forecasts tomato leaf diseases</title>
		<link>https://scienmag.com/dapr-am-net-explainable-ai-detects-and-forecasts-tomato-leaf-diseases/</link>
		
		<dc:creator><![CDATA[Alan Morgan]]></dc:creator>
		<pubDate>Tue, 08 Sep 2026 23:00:12 +0000</pubDate>
				<category><![CDATA[Agriculture]]></category>
		<category><![CDATA[adaptive data augmentation for crop health]]></category>
		<category><![CDATA[adaptive data augmentation in plant disease classification]]></category>
		<category><![CDATA[advances in AI for sustainable agriculture]]></category>
		<category><![CDATA[AI-based plant pathogen identification]]></category>
		<category><![CDATA[AI-powered plant disease diagnosis]]></category>
		<category><![CDATA[computer vision for large-scale crop monitoring]]></category>
		<category><![CDATA[deep learning for crop health]]></category>
		<category><![CDATA[dual-attention neural networks]]></category>
		<category><![CDATA[dual-attention neural networks in plant pathology]]></category>
		<category><![CDATA[early identification of plant pathogens]]></category>
		<category><![CDATA[explainable AI in agriculture]]></category>
		<category><![CDATA[field conditions tomato disease forecasting]]></category>
		<category><![CDATA[human-readable AI heatmaps for plant health]]></category>
		<category><![CDATA[human-readable heatmaps for plant disease explanation]]></category>
		<category><![CDATA[real-world field disease forecasting]]></category>
		<category><![CDATA[smart farming technology]]></category>
		<category><![CDATA[smart farming with deep learning]]></category>
		<category><![CDATA[tomato crop yield protection]]></category>
		<category><![CDATA[tomato crop yield protection with AI]]></category>
		<category><![CDATA[Tomato leaf disease detection]]></category>
		<guid isPermaLink="false">https://scienmag.com/dapr-am-net-explainable-ai-detects-and-forecasts-tomato-leaf-diseases/</guid>

					<description><![CDATA[Tomato growers may soon have a diagnostician in their pocket that rivals the experts, after researchers unveiled an artificial intelligence system capable of identifying tomato leaf diseases with near-perfect accuracy while explaining its reasoning in human-readable heatmaps. In a study published in the journal Plant Methods, a team led by Ran Wang and Xiao Yu [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Tomato growers may soon have a diagnostician in their pocket that rivals the experts, after researchers unveiled an artificial intelligence system capable of identifying tomato leaf diseases with near-perfect accuracy while explaining its reasoning in human-readable heatmaps. In a study published in the journal Plant Methods, a team led by Ran Wang and Xiao Yu of Shandong University of Technology in China describes DAPR-AM-Net, an end-to-end smart farming framework that combines dual-attention progressive refinement with a novel adaptive data augmentation scheme to classify and forecast tomato leaf diseases under real-world field conditions.</p>
<p>Tomatoes are among the world&#8217;s most economically significant vegetable crops, but they are also notoriously vulnerable to disease. The Food and Agriculture Organization estimates that plant diseases destroy between 20 and 40 percent of global crop yields every year, and tomato pathogens—from early and late blight to bacterial spot, leaf mold, and tomato yellow leaf curl virus—spread rapidly and produce symptoms that are maddeningly similar to one another and to pest damage. Traditional scouting by trained personnel is labor-intensive and poorly suited to large-scale monitoring, which has driven a decade-long push toward computer vision systems that can diagnose diseases automatically from photographs.</p>
<p>Deep learning models have made impressive progress on this problem, but the field has been haunted by three persistent failures. Field photographs contain cluttered backgrounds—soil, hands, tools, other plants—that lure models into focusing on the wrong visual cues. Many disease categories look almost identical in their early stages, producing high intra-class similarity that confounds fine-grained classification. And agricultural datasets are severely imbalanced: common diseases have tens of thousands of images while rare conditions have only a handful, causing models to systematically underperform on the very classes where a missed diagnosis costs the most. Interpretability has also lagged behind accuracy, with most explainability techniques bolted on after training rather than woven into the model itself.</p>
<p>DAPR-AM-Net attacks all of these problems simultaneously through four tightly coupled innovations. The first is a Dual Attention Fusion Mechanism, or DAFM, built on top of an EfficientNet-B0 backbone. DAFM chains together two complementary attention architectures: a squeeze-and-excitation block that recalibrates the importance of individual feature channels, followed by a convolutional block attention module that sharpens focus both on which channels matter and where in the image the informative regions lie. In practice, this means the network learns to amplify the texture, color, and structural signatures of lesions—concentric rings of late blight, browned margins, chlorotic halos—while actively suppressing soil and background noise.</p>
<p>The second innovation addresses the augmentation problem. Standard MixUp training blends two training images into a synthetic hybrid with a randomly drawn mixing coefficient, which improves generalization but can blur precisely the lesion semantics the model needs to learn. The researchers&#8217; Adaptive MixUp with Attention-Aware Sampling, or AMAAS, replaces the blind random blend with a guided one. The system consults attention maps from the previous training epoch, computes an importance score for each image reflecting how salient its diseased regions are, and rescales the mixing coefficient accordingly. Images with clear, informative lesions receive greater weight in the blend, while background-dominated or noisy samples are down-weighted. AMAAS additionally folds in a class-frequency compensation factor that boosts the representation of rare categories inside synthetic training samples, so that long-tailed diseases are not merely seen more often but seen more informatively.</p>
<p>The third component, Progressive Feature Refinement with Dual Attention (PFR-DA), reframes feature extraction as a multi-stage refinement rather than a single pass. Features from different network depths interact through gated cross-level fusion: high-level semantic information is progressively injected downward into low-level texture representations, and lightweight auxiliary classification heads attached to intermediate layers impose supervision at every stage. This design preserves fine-grained detail in early layers while ensuring the network&#8217;s final judgments remain consistent with its earlier visual evidence. The fourth element, an Imbalance-Aware Multi-Objective Optimization strategy called IAMOO, tackles class skew at three levels at once—through a weighted random sampler that oversamples rare classes, through the class-aware mixing already embedded in AMAAS, and through a composite training objective that balances overall accuracy against minority-class recall when selecting the final model.</p>
<p>The team evaluated the system on two datasets spanning opposite ends of the realism spectrum. The first is Plant-Village, a widely used public benchmark of 54,305 images across 38 disease classes and 14 crop species, captured under controlled conditions with plain backgrounds. The second is Tomato-DD, a self-constructed dataset of 48,584 images covering 11 tomato disease categories, compiled from independently collected field photographs and public sources and spanning multiple lighting conditions, occlusion levels, and background complexities. The dataset was rigorously re-annotated and deliberately includes ambiguous lesion boundaries, co-occurring symptoms, and environmental interference—the messy realities of an actual field.</p>
<p>The results were striking. On the Tomato-DD test set, DAPR-AM-Net achieved 99.73 percent accuracy, 99.73 percent precision, 99.74 percent recall, and a 99.73 percent F1-score, outperforming a battery of strengthened baselines including DenseNet-169, EfficientNet-B3, VGG-19, Xception, and a custom CNN, which reached 97.04, 99.16, 97.19, 96.19, and 85.98 percent respectively. On the full Plant-Village dataset, the model reached 99.85 percent accuracy with a 99.81 percent F1-score. Remarkably, it does so with a compact architecture of only 4.72 million parameters—VGG-19, by comparison, carries roughly 140 million—and sustains an end-to-end inference speed of about 302 frames per second on a standard GPU, including preprocessing and post-processing. That combination of speed and small footprint makes the model a realistic candidate for drones, mobile devices, and resource-constrained agricultural IoT nodes.</p>
<p>Ablation studies confirmed that every module earns its place. A baseline EfficientNet model scored 98.87 percent accuracy; adding each component in isolation pushed results upward, and the full four-module configuration delivered the best performance. The gains were most pronounced precisely where the design predicted they would be. For Powdery Mildew, a class with few training samples, the model achieved an F1-score of 99.73 percent, a 2.43-point improvement over the baseline; for Spider Mites it reached a perfect 100 percent. For the notoriously confusable pair of early blight and late blight, it posted F1-scores of 99.35 and 99.71 percent. Across all classes, the gap between precision and recall stayed below 0.65 percentage points, indicating consistent performance rather than strength concentrated in a few easy categories. Fivefold cross-validation yielded 99.64 percent on every metric with a standard deviation of just 0.12, signaling strong generalization.</p>
<p>Crucially, the system does not just answer—it shows its work. Grad-CAM visualizations integrated with the model&#8217;s own attention maps generate heatmaps that highlight the exact regions driving each diagnosis. For late blight, the channel attention first amplifies chromatic and textural descriptors of the lesion, and the spatial attention then locks onto browned leaf margins and concentric ring patterns, suppressing healthy green tissue. The model also proved sensitive to early-stage symptoms, detecting small initial lesions of leaf mold that could easily escape visual notice. Quantitative tests of explanation quality bore this out: the mean Insertion AUC of the saliency maps was approximately 0.85, and cosine robustness under Gaussian noise reached 0.985, meaning the explanations remain essentially stable even when inputs are perturbed. The model itself was similarly resilient, retaining 99.61 percent accuracy under motion blur and 99.62 percent under brightness changes, with only a modest dip to 99.27 percent under Gaussian noise.</p>
<p>To close the loop between laboratory and field, the researchers built a complete smart agriculture platform around DAPR-AM-Net. The three-tier web system lets growers capture or upload leaf images and receive, within seconds, the disease prediction, a confidence score, a Grad-CAM heatmap, and tailored pesticide recommendations. It links diagnosis to practical action: a spraying module fuses disease outputs with real-time meteorological data from Open-Meteo to compute a spray suitability index for the coming week, triggering recommendations when conditions are favorable and drift warnings when they are not. Additional modules provide three-day irrigation forecasts driven by weather and soil-moisture simulation, and early warnings for heavy rainfall, drought, and high winds. Performance testing on 40 CPU-only laptops showed an average latency of 0.87 seconds per image including visualization, and on mobile phones 1.12 seconds, with over 90 percent of requests completed within two seconds—fast enough for genuine field use. When confidence falls below 75 percent, the system prompts users for additional multi-angle images rather than guessing, and the researchers explicitly position the platform as a decision-support tool that keeps humans in charge of final calls, particularly in uncertain or high-risk scenarios.</p>
<p>The authors acknowledge limitations. RGB imagery constrains performance under extreme illumination or for spectrally subtle pathologies, and overconfident errors remain possible for extremely rare or unseen diseases—hence the emphasis on confidence thresholds and human review. They also note that the study has not yet included quantitative field trials measuring agronomic outcomes such as pesticide reduction or disease incidence, which they flag as a priority for future work, alongside multispectral data integration, pixel-level lesion segmentation, and active learning to adapt the model to regional and temporal shifts. Still, by unifying attention modeling, attention-guided augmentation, progressive refinement, and imbalance-aware optimization into a single deployable system, DAPR-AM-Net offers a blueprint for agricultural AI that is accurate, fast, and—perhaps most importantly—willing to explain itself.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> Explainable deep learning–based classification and forecasting of tomato leaf diseases within an end-to-end smart agriculture platform</p>
<p><strong>Article Title:</strong> DAPR-AM-Net: an end-to-end smart farming system powered by dual-attention progressive refinement and adaptive MixUp for explainable tomato leaf disease classification and forecasting</p>
<p><strong>Article References:</strong> Wang, R., Yu, X., Lu, L., &amp; Chen, C. (2026). DAPR-AM-Net: an end-to-end smart farming system powered by dual-attention progressive refinement and adaptive MixUp for explainable tomato leaf disease classification and forecasting. <em>Plant Methods, 22</em>(1), Article 67. <a href="https://doi.org/10.1186/s13007-026-01556-z" target="_blank" rel="noopener noreferrer">https://doi.org/10.1186/s13007-026-01556-z</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1186/s13007-026-01556-z" target="_blank" rel="noopener noreferrer">10.1186/s13007-026-01556-z</a></p>
<p><strong>Keywords:</strong> tomato disease detection, deep learning, dual attention mechanism, adaptive MixUp, progressive feature refinement, imbalance-aware learning, explainable AI, Grad-CAM, smart agriculture platform, convolutional neural networks</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">190434</post-id>	</item>
		<item>
		<title>Revolutionizing Root Disease Detection with AI Farming</title>
		<link>https://scienmag.com/revolutionizing-root-disease-detection-with-ai-farming/</link>
		
		<dc:creator><![CDATA[Alan Morgan]]></dc:creator>
		<pubDate>Mon, 29 Sep 2025 14:27:18 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advanced classification of root diseases]]></category>
		<category><![CDATA[AI in agriculture]]></category>
		<category><![CDATA[deep learning for crop health]]></category>
		<category><![CDATA[early detection of plant diseases]]></category>
		<category><![CDATA[enhancing crop yields with AI]]></category>
		<category><![CDATA[environmental impact of agriculture]]></category>
		<category><![CDATA[innovative agricultural solutions]]></category>
		<category><![CDATA[reducing chemical pesticide reliance]]></category>
		<category><![CDATA[root disease detection technology]]></category>
		<category><![CDATA[soil-borne pathogens in farming]]></category>
		<category><![CDATA[sustainable agricultural innovations]]></category>
		<category><![CDATA[sustainable farming practices]]></category>
		<guid isPermaLink="false">https://scienmag.com/revolutionizing-root-disease-detection-with-ai-farming/</guid>

					<description><![CDATA[In an era marked by the increasing pressure on agricultural systems due to climate change and population growth, the need for innovative and sustainable farming practices has never been more critical. A recent study led by a team of researchers, including Jackulin, Devi, and Priya, published in the journal Discover Artificial Intelligence, presents a groundbreaking [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In an era marked by the increasing pressure on agricultural systems due to climate change and population growth, the need for innovative and sustainable farming practices has never been more critical. A recent study led by a team of researchers, including Jackulin, Devi, and Priya, published in the journal <em>Discover Artificial Intelligence</em>, presents a groundbreaking approach to managing root diseases in crops. Utilizing an advanced deep learning model, their research aims to promote sustainable agricultural practices by enhancing the classification of root diseases. This development not only seeks to improve crop yields but also addresses the urgent need for environmentally friendly solutions within farming systems.</p>
<p>Root diseases, often caused by soil-borne pathogens, present a significant challenge to farmers across the globe. These diseases can compromise the health of plants, leading to reduced yields and increased reliance on chemical pesticides, which can harm both the environment and human health. The innovative model introduced by the researchers addresses this critical issue by employing what they refer to as a &#8220;remora improved invasive attention based deep learning model.&#8221; This sophisticated technology facilitates the early detection and accurate classification of root diseases, enabling farmers to take timely action against threats to their crops.</p>
<p>At the core of this study is the application of deep learning, a subset of artificial intelligence that mimics the way the human brain processes information. By training the model on vast datasets of images depicting various root diseases, the research team was able to enhance the model&#8217;s capability to discern intricate patterns and features associated with different diseases. This machine learning approach stands in stark contrast to traditional methods of disease identification, which often rely on manual inspection and subjective judgment. As a result, the possibility of human error is significantly reduced, leading to more reliable disease diagnostics.</p>
<p>One notable feature of the developed model is its adaptive nature. The researchers implemented an attention mechanism, enabling the model to focus on specific regions of input images that are more likely to exhibit signs of disease. This targeted approach not only streamlines the classification process but also enhances the overall accuracy of disease detection. By zeroing in on the most relevant portions of an image, the model can provide farmers with actionable insights more effectively, facilitating quicker responses to emerging threats.</p>
<p>The implications of this research extend beyond mere disease identification; they carry the potential to transform entire farming systems. With the capability to pinpoint diseases early on, farmers can adopt integrated pest management strategies and reduce their dependence on chemical treatments. Moreover, this model fosters a more sustainable approach to agriculture by enabling the cultivation of healthy crops without relying heavily on synthetic pesticides, which are known to degrade soil health and disrupt ecosystems.</p>
<p>Additionally, the researchers emphasize the importance of accessibility and usability of their model. By developing a user-friendly interface that can be easily integrated into existing agricultural practices, they aim to ensure that farmers, regardless of their technical expertise, can benefit from this cutting-edge technology. Given the dire need for sustainable responses to agricultural challenges, democratizing access to such innovations is a key priority for the research team.</p>
<p>Furthermore, the study highlights the power of collaboration in addressing environmental challenges. By bringing together experts from various fields, including agriculture, computer science, and environmental science, the researchers were able to tackle the complex issue of root disease management from multiple angles. This interdisciplinary approach not only enhances the robustness of the model but also sets a precedent for future research endeavors in the realm of sustainable agriculture solutions.</p>
<p>The study’s findings could also serve as a basis for future innovations in plant disease detection across different types of crops. While the current model has shown promising results in root disease classification, the underlying framework can be adapted for various other plant diseases, further broadening the scope of its application. This versatility makes the research not only relevant to immediate challenges but also a valuable contribution to the long-term sustainability of global agriculture.</p>
<p>As the agricultural sector grapples with the twin challenges of feeding a growing population while mitigating environmental impact, the introduction of such advanced technologies may provide a crucial lifeline. The intersection of deep learning and sustainable farming practices holds immense potential for reshaping how we approach food production, moving toward more resilient and efficient systems that prioritize ecological health.</p>
<p>In summary, the research led by Jackulin et al. represents a significant step forward in the application of artificial intelligence to agriculture. By harnessing deep learning and advanced image classification techniques, this study illuminates a path toward innovative disease management solutions that are not only effective but also sustainable. As farmers continue to confront the myriad challenges posed by root diseases and environmental degradation, the model presented in this research offers hope for a more productive and sustainable agricultural future.</p>
<p>Moving forward, it will be crucial to monitor how these technologies are adopted in real-world farming scenarios. The researchers encourage ongoing studies to evaluate the practical implications of their model within various agricultural contexts. Such assessments can provide invaluable insights that inform further improvements to the system, ensuring that it meets the evolving needs of farmers and contributes to a more sustainable food supply.</p>
<p>Through this groundbreaking research, Jackulin and colleagues have set a high bar for innovation in sustainable agriculture. Their work not only emphasizes the importance of advanced technology in addressing pressing agricultural challenges but also inspires a new generation of researchers and practitioners to pursue interdisciplinary solutions for a healthier planet.</p>
<p>As we look ahead, the success of this deep learning model could signal a transformative shift in agricultural practices worldwide. An increased focus on sustainable farming driven by intelligent technology may well be the key to ensuring food security for future generations while preserving the delicate balance of our ecosystems.</p>
<p>In closing, the ongoing exploration of artificial intelligence’s role in agriculture is a testament to human ingenuity and a commitment to the betterment of our planet. As we cultivate advancements like this deep learning model for root disease classification, we move closer to realizing a future where sustainable farming is not just an aspiration but a reality for farmers everywhere.</p>
<p><strong>Subject of Research</strong>: Sustainable farming practices through deep learning for root disease classification.</p>
<p><strong>Article Title</strong>: Promoting sustainable farming through remora improved invasive attention based deep learning model for root disease classification.</p>
<p><strong>Article References</strong>:</p>
<p class="c-bibliographic-information__citation">Jackulin, C., Devi, M.S., Priya, S. <i>et al.</i> Promoting sustainable farming through remora improved invasive attention based deep learning model for root disease classification.<br />
<i>Discov Artif Intell</i> <b>5</b>, 236 (2025). <a href="https://doi.org/10.1007/s44163-025-00513-4">https://doi.org/10.1007/s44163-025-00513-4</a></p>
<p><strong>Image Credits</strong>: AI Generated</p>
<p><strong>DOI</strong>: 10.1007/s44163-025-00513-4</p>
<p><strong>Keywords</strong>: Sustainable farming, deep learning, root disease classification, agricultural technology, environmental impact.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">83209</post-id>	</item>
	</channel>
</rss>
