<?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>cross-domain learning &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/cross-domain-learning/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Fri, 25 Sep 2026 00:26:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>cross-domain learning &#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>Lightweight AI Learns New Tasks From a Handful of Examples Without Breaking the Bank</title>
		<link>https://scienmag.com/lightweight-ai-learns-new-tasks-from-a-handful-of-examples-without-breaking-the-bank/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Fri, 25 Sep 2026 00:26:19 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[adversarial style perturbation]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[cross-domain generalization]]></category>
		<category><![CDATA[cross-domain learning]]></category>
		<category><![CDATA[data augmentation]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[domain adaptation]]></category>
		<category><![CDATA[domain adaptation in deep learning]]></category>
		<category><![CDATA[efficient transfer learning]]></category>
		<category><![CDATA[feature disentanglement]]></category>
		<category><![CDATA[Few-shot learning]]></category>
		<category><![CDATA[image classification]]></category>
		<category><![CDATA[image classification with limited data]]></category>
		<category><![CDATA[instance normalization]]></category>
		<category><![CDATA[lightweight AI models]]></category>
		<category><![CDATA[low-resource machine learning techniques]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[meta-learning]]></category>
		<category><![CDATA[minimizing computational cost in AI]]></category>
		<category><![CDATA[rare disease diagnosis using AI]]></category>
		<category><![CDATA[satellite imagery land use classification]]></category>
		<category><![CDATA[semantic gap in machine learning]]></category>
		<category><![CDATA[transfer learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=213655</guid>

					<description><![CDATA[Chinese researchers have unveiled a lightweight hierarchical deep learning framework that matches or beats state-of-the-art cross-domain few-shot learning methods while training roughly four times faster than leading rivals.]]></description>
										<content:encoded><![CDATA[<p>Deep learning systems have transformed how machines see the world, but their appetite for data remains a stubborn bottleneck. In many real-world settings, from diagnosing rare skin cancers to classifying satellite imagery of land use, collecting thousands of labeled examples is simply impossible. Few-shot learning promises a way around this constraint: models that can recognize entirely new categories after seeing only one or a handful of examples. Yet a new study published in the International Journal of Machine Learning and Cybernetics reveals a frustrating catch. When the new categories come from a domain different from the one the model was trained on, a scenario known as cross-domain few-shot learning, performance collapses. The semantic gap between base and novel classes, combined with shifts in feature distributions, can strip even the most sophisticated few-shot methods of their apparent power.</p>
<p>Researchers Leilei Ding and Shuliang Zhao of Hebei Normal University in Shijiazhuang, China, have now proposed a way to close that gap without paying the usual computational price. Their work arrives at a moment when the leading solutions to cross-domain generalization have become notoriously expensive. Recent approaches have attacked the problem from several directions at once: adversarial style perturbation, which deliberately scrambles the stylistic texture of training images to force the network to rely on shape and content; frequency-domain augmentation, which manipulates the spectral components of images to simulate the visual statistics of unseen domains; and feature normalization decoupling, which separates what an object is from how it happens to be rendered. Each of these strategies demonstrably improves generalization, but the authors point to a shared weakness that has limited their adoption: they are computationally expensive, which restricts their use in practice.</p>
<p>The new framework, described as a lightweight hierarchical representation learning approach, rests on three technical innovations that together reshape how a convolutional network processes visual information. The first targets the earliest stage of the network. Ding and Zhao add a hard instance-normalization gate and a shallow disentanglement loss to the first two layers of the backbone. The idea is to separate content features, the stable semantic essence of an image, from domain-specific style statistics, the surface-level characteristics such as color palettes, lighting conditions, and textural patterns that vary wildly between, say, medical photographs and natural scenes. Crucially, this separation happens before those features propagate to deeper layers, meaning the rest of the network operates on already-cleaned representations rather than trying to untangle style from content after the two have been thoroughly mixed.</p>
<p>The second innovation works at the opposite end of the architecture. In the last two layers of the backbone, the framework combines a rotation-augmented classification loss with low-texture augmentation. Rotation augmentation asks the network to correctly classify images that have been turned by various angles, encouraging it to encode orientation-invariant semantics. Low-texture augmentation strips away fine surface detail, pushing the model toward features that survive when texture cues are removed. Applied within the already-decoupled feature space created by the first two layers, these losses guide the deeper network to learn cross-domain invariant semantic features, representations that remain meaningful whether the input comes from a satellite sensor, a dermatology camera, or a wildlife photographer&#8217;s telephoto lens.</p>
<p>The third contribution is perhaps the most conceptually interesting, because it identifies a flaw in a technique that prior work had treated as an unalloyed good. Consistency losses, which penalize a model when its predictions change under different views or perturbations of the same input, are a standard tool for encouraging robust representations. But Ding and Zhao show that in the cross-domain setting, this loss anchors gradients to source-domain predictions. In other words, the model is being told to stay consistent with outputs shaped by the very domain it is trying to escape. Rather than promoting style-invariant features, the consistency loss actively suppresses their learning, pulling the network back toward source-domain habits at exactly the moment it should be generalizing away from them. Recognizing and correcting this failure mode is a subtle but consequential insight for anyone designing domain-generalization objectives.</p>
<p>To test the framework, the authors ran extensive experiments on five standard benchmarks that together span a remarkable range of visual domains. EuroSAT consists of satellite images of land cover, demanding that models reason about agricultural fields, forests, and urban areas from a top-down perspective. ISIC2018 is a dermatology dataset of skin lesions, where texture and color statistics differ radically from natural photographs. CUB-200-2011 contains fine-grained images of bird species, Places365 covers scene recognition across hundreds of environment categories, and Stanford Cars focuses on distinguishing vehicle models that differ in subtle geometric details. A method that performs well across all five must have genuinely learned domain-agnostic representations rather than exploiting quirks of any single dataset.</p>
<p>The results were strong across the board. The proposed framework outperformed state-of-the-art methods across different settings on the five benchmarks. Two headline numbers stand out. On EuroSAT in the one-shot setting, where the model sees a single labeled example per new class, it achieved a classification accuracy of 59.05 percent. On ISIC in the one-shot setting, it reached 34.78 percent. Both figures represent the kind of performance that cross-domain few-shot researchers have been chasing, and both were achieved by a system whose training cost is a fraction of its competitors&#8217;. The framework completed training in only 2.7 hours, roughly 3.7 times faster than SVasP, a self-versatility adversarial style perturbation method, and about 1.5 times faster than HAP, a harmonized amplitude perturbation approach. For laboratories without access to large GPU clusters, that difference can determine whether an experiment runs overnight or occupies hardware for the better part of two days.</p>
<p>The efficiency gains matter beyond convenience. Adversarial style perturbation methods, for instance, must repeatedly solve inner optimization problems to generate style attacks during training, multiplying the cost of every epoch. Frequency-domain methods add transformations that, while mathematically elegant, impose their own overhead. By contrast, the new framework concentrates its interventions at specific layers, using a hard gate for instance normalization in the shallow layers and targeted augmentation losses in the deep layers, avoiding the expensive global machinery that makes rival approaches slow. The design philosophy is almost surgical: intervene early where style and content first mix, intervene late where semantic invariance is forged, and leave the middle of the network to do its ordinary work on cleaner inputs.</p>
<p>The practical implications extend to fields where data scarcity and domain shift collide. Medical imaging is the obvious candidate: hospitals rarely have thousands of labeled examples of rare pathologies, and images collected at one institution with one scanner look systematically different from those collected elsewhere. Remote sensing faces a similar bind, since satellite imagery varies with sensor type, season, and geography. Fine-grained recognition tasks in ecology and engineering, from identifying bird species to distinguishing car models, also benefit from models that generalize from minimal supervision. A framework that trains in under three hours on standard benchmarks makes iterative experimentation feasible for research groups that could never afford the training budgets of the heavyweight alternatives.</p>
<p>The authors have made their source code publicly available on GitHub, a decision that lowers the barrier for other researchers to reproduce the results, stress-test the framework on new domains, and build on its insights. Among those insights, the critique of consistency losses in cross-domain settings may prove the most durable, since it suggests that several existing methods could be improved by rethinking how their robustness objectives interact with domain shift. As few-shot learning moves from benchmark papers toward deployed systems, the lesson of this work is that generalization and efficiency need not be traded against each other. Sometimes the path to a model that adapts quickly to a world it has never seen runs through a leaner architecture, not a heavier one.</p>
<p><strong>Subject of Research:</strong> A lightweight hierarchical deep learning framework for cross-domain few-shot image classification</p>
<p><strong>Article Title:</strong> A lightweight deep learning framework for cross-domain few-shot learning</p>
<p><strong>Article References:</strong> Ding, L., &amp; Zhao, S. (2026). A lightweight deep learning framework for cross-domain few-shot learning. <em>International Journal of Machine Learning and Cybernetics, 17</em>(10), Article 466. <a href="https://doi.org/10.1007/s13042-026-03291-2" rel="noopener noreferrer">https://doi.org/10.1007/s13042-026-03291-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s13042-026-03291-2" rel="noopener noreferrer">10.1007/s13042-026-03291-2</a></p>
<p><strong>Keywords:</strong> few-shot learning, cross-domain learning, deep learning, transfer learning, meta-learning, domain adaptation, computer vision, instance normalization, feature disentanglement, data augmentation, image classification, machine learning</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">213655</post-id>	</item>
		<item>
		<title>Dual-Branch AI Framework CrossBranch Sharpens Cell-Type Maps Across Omics Data</title>
		<link>https://scienmag.com/dual-branch-ai-framework-crossbranch-sharpens-cell-type-maps-across-omics-data/</link>
		
		<dc:creator><![CDATA[Nathaniel Bowman]]></dc:creator>
		<pubDate>Thu, 24 Sep 2026 23:51:49 +0000</pubDate>
				<category><![CDATA[Biology]]></category>
		<category><![CDATA[bioinformatics for tissue analysis]]></category>
		<category><![CDATA[BMC Genomics]]></category>
		<category><![CDATA[bulk RNA sequencing analysis]]></category>
		<category><![CDATA[bulk RNA-seq]]></category>
		<category><![CDATA[cancer biology]]></category>
		<category><![CDATA[cancer tissue architecture]]></category>
		<category><![CDATA[cell-type deconvolution]]></category>
		<category><![CDATA[cell-type mapping algorithms]]></category>
		<category><![CDATA[computational biology tools]]></category>
		<category><![CDATA[cross-domain learning]]></category>
		<category><![CDATA[cross-omics data analysis]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[multi-omics data integration]]></category>
		<category><![CDATA[pathway-level representation]]></category>
		<category><![CDATA[Proteomics]]></category>
		<category><![CDATA[representation learning]]></category>
		<category><![CDATA[single-cell reference atlases]]></category>
		<category><![CDATA[Single-Cell RNA Sequencing]]></category>
		<category><![CDATA[Spatial transcriptomics]]></category>
		<category><![CDATA[tissue composition estimation]]></category>
		<category><![CDATA[tissue heterogeneity mapping]]></category>
		<category><![CDATA[tumor microenvironment]]></category>
		<category><![CDATA[tumor microenvironment profiling]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=213515</guid>

					<description><![CDATA[A new dual-branch deep learning framework called CrossBranch improves the estimation of cell-type composition from bulk, proteomic, and spatial omics data by aligning simulated and real measurements across domains.]]></description>
										<content:encoded><![CDATA[<p>Every tissue in the human body is a mosaic. Tumor biopsies, blood samples, and frozen sections of diseased organs all contain swirling mixtures of immune cells, fibroblasts, epithelial cells, and blood vessel lining, each carrying its own molecular signature. For years, biologists have struggled with a deceptively simple question: given a bulk measurement of a tissue, can we work out exactly how many of each cell type are hiding inside it? A new computational tool called CrossBranch, described in BMC Genomics by Qianbei Yi, Jiaqi Yuan, Peng Xu, and Wenbin Liu of Guangzhou University, offers a fresh and technically ambitious answer to that question, and its implications stretch from basic tissue biology to the way oncologists read the architecture of tumors.</p>
<p>The problem the researchers set out to solve is known as cell-type deconvolution. Modern sequencing technologies allow scientists to profile gene expression in individual cells, building reference atlases that describe the molecular fingerprints of dozens of cell types. Bulk RNA sequencing, by contrast, measures the average expression of millions of cells at once, producing a single blended signal. Deconvolution methods attempt to reverse this blending, using single-cell references to estimate the proportions of each cell type in the mixed sample. The catch is that the reference data and the target data rarely come from the same world. Differences in tissue processing, sequencing platforms, donor populations, and even the fundamental physics of the measurement—counting RNA transcripts versus quantifying proteins—create distribution discrepancies that can quietly corrupt the estimates. Existing statistical and deep learning approaches, the authors note, are often undermined by exactly these cross-domain gaps.</p>
<p>CrossBranch attacks the problem with a dual-branch representation learning architecture, a design that processes the same data through two complementary channels before merging them. The first branch operates at the level of individual genes, capturing fine-grained expression patterns that distinguish one cell type from another. The second branch is pathway-informed, meaning it encodes the data through the lens of curated biological pathways—coordinated groups of genes that work together in processes such as immune signaling, metabolism, or cell division. By combining gene-level and pathway-level information, the framework aims to learn representations that are both precise and biologically meaningful, less likely to be thrown off by noise in any single gene and more likely to capture the coordinated programs that actually define cellular identity.</p>
<p>One of the most clever aspects of the method is how it sidesteps the chronic shortage of ground truth. In real tissues, nobody knows the exact proportions of every cell type, so there is nothing to train a supervised model on directly. CrossBranch solves this by generating labeled simulated mixtures from single-cell reference data. The software takes known single-cell profiles and artificially blends them in controlled proportions, producing training examples where the correct answer—the true cell-type composition—is known by construction. A prediction head, the final layer of the neural network, is then trained on these simulated mixtures to estimate cell-type proportions from mixed expression profiles.</p>
<p>But training on simulated data alone would recreate the very problem CrossBranch was designed to fix: the simulated mixtures would live in a slightly different statistical universe than the real target samples. The framework therefore adds a latent-space alignment strategy. Both the simulated mixtures and the real target data are encoded into a shared latent space, a compressed mathematical representation learned by the network, and the training process actively reduces the distribution discrepancies between them in that space. In effect, the model learns to view simulated and real data as if they came from the same domain, allowing knowledge gained from the labeled simulations to transfer accurately to real bulk RNA-seq, proteomic, and spatial measurements.</p>
<p>Spatial transcriptomics, a technology that measures gene expression while preserving the physical layout of a tissue slice, receives special treatment in the framework. Because neighboring spots on a spatial slide are likely to share similar cellular environments—cells do not arrange themselves randomly—CrossBranch incorporates a neighboring-spot-based spatial consistency loss. This additional term encourages the model to produce proportion estimates that vary smoothly across adjacent locations, suppressing implausible spatial flicker while still allowing genuine biological boundaries, such as the edge of a tumor nest, to show through. Ablation analyses, in which individual components of the model are removed one at a time, confirmed that the pathway-level representation, the cross-domain alignment, and the spatial neighborhood modeling each contribute measurably to the overall performance.</p>
<p>How well does it actually work? Across benchmark datasets spanning bulk RNA sequencing, proteomics, and spatial transcriptomics, CrossBranch consistently achieved competitive deconvolution performance compared with existing statistical and deep learning methods. That breadth matters. Most deconvolution tools are built for one modality and stumble when handed data from another, particularly proteomics, where the measured molecules are proteins rather than RNA transcripts and the correspondence between reference and target is even more tenuous. A single unified framework that performs well across all three modalities simplifies the analytical pipeline for research groups that routinely juggle multiple data types from the same patient samples.</p>
<p>The most striking results, however, come from the applications to cancer. The researchers applied CrossBranch to prostate, colorectal, and pancreatic tumor datasets, and the framework succeeded in identifying tumor-associated cellular changes—shifts in the cellular makeup of diseased tissue compared with healthy tissue—as well as cell-type patterns associated with patient survival. In the spatial analyses, CrossBranch pinpointed the localization of malignant epithelial cells within tissue sections, detected the co-localization of fibroblasts and endothelial cells, a pairing widely studied in tumor biology because cancer-associated fibroblasts and blood vessel cells cooperate to shape the tumor microenvironment, and revealed compartment-specific spatial organization within tumors. These are exactly the kinds of findings that turn a deconvolution tool from a mathematical curiosity into a biological instrument.</p>
<p>The significance of this work lies in what it says about the future of computational biology. Tissue heterogeneity is central to understanding disease mechanisms: a tumor that is 40 percent cancer-associated fibroblasts may respond very differently to immunotherapy than one dominated by cytotoxic T cells, even if the malignant cells themselves look identical. Tools like CrossBranch make it possible to extract that compositional information from the cheap, routine bulk measurements that hospitals already generate, rather than requiring expensive single-cell or spatial assays for every sample. By explicitly modeling the domain gap between reference and target data, the method addresses what many in the field consider the central weakness of deconvolution approaches, and the open availability of the source code on GitHub for academic and noncommercial use should accelerate adoption and independent testing.</p>
<p>There are, of course, the usual caveats that accompany any new machine learning method in biology. The framework depends on the quality and relevance of the single-cell reference atlases used to generate its simulated training mixtures, and performance on a given tissue will reflect how well those references capture the true cellular diversity of the sample. The published benchmarks and cancer applications are encouraging, but as with any computational tool, the broader community will need to stress-test it across additional tissues, diseases, and platforms. Still, the combination of pathway-informed representations, cross-domain alignment, and spatial consistency represents a thoughtful synthesis of biological knowledge and deep learning design. As spatial omics technologies mature and reference atlases grow, frameworks like CrossBranch point toward a future in which the cellular composition of any tissue—healthy or diseased—can be read out reliably from whatever measurement happens to be available, bringing the hidden mosaic of human tissue into sharper focus than ever before.</p>
<p><strong>Subject of Research:</strong> Cross-domain cell-type deconvolution using dual-branch representation learning for omics data</p>
<p><strong>Article Title:</strong> CrossBranch: cross-domain cell-type deconvolution with dual-branch representation learning</p>
<p><strong>Article References:</strong> Yi, Q., Yuan, J., Xu, P., &amp; Liu, W. (2026). CrossBranch: cross-domain cell-type deconvolution with dual-branch representation learning. <em>BMC Genomics</em>. <a href="https://doi.org/10.1186/s12864-026-13360-z" rel="noopener noreferrer">https://doi.org/10.1186/s12864-026-13360-z</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1186/s12864-026-13360-z" rel="noopener noreferrer">10.1186/s12864-026-13360-z</a></p>
<p><strong>Keywords:</strong> cell-type deconvolution, cross-domain learning, representation learning, single-cell RNA sequencing, bulk RNA-seq, proteomics, spatial transcriptomics, tumor microenvironment, pathway-level representation, deep learning, cancer biology, BMC Genomics</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">213515</post-id>	</item>
	</channel>
</rss>
