<?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>compression and decompression &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/compression-and-decompression/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 18:09:31 +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>compression and decompression &#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>Semi-Tensor Decomposition Slashes Neural Network Training Time and Memory</title>
		<link>https://scienmag.com/semi-tensor-decomposition-slashes-neural-network-training-time-and-memory/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 18:09:31 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[accelerated neural network training]]></category>
		<category><![CDATA[adaptive neuron allocation in neural networks]]></category>
		<category><![CDATA[adaptive resource allocation]]></category>
		<category><![CDATA[CIFAR-10]]></category>
		<category><![CDATA[compression and decompression]]></category>
		<category><![CDATA[computational complexity in neural networks]]></category>
		<category><![CDATA[deep learning optimization]]></category>
		<category><![CDATA[dynamic neural network reshaping]]></category>
		<category><![CDATA[hidden layer computation]]></category>
		<category><![CDATA[high-accuracy rapid training techniques]]></category>
		<category><![CDATA[IMDB]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[memory efficiency]]></category>
		<category><![CDATA[memory-efficient neural network models]]></category>
		<category><![CDATA[model convergence]]></category>
		<category><![CDATA[neural network compression strategies]]></category>
		<category><![CDATA[neural network training]]></category>
		<category><![CDATA[neural network training optimization]]></category>
		<category><![CDATA[reducing training time for large models]]></category>
		<category><![CDATA[scalable deep learning frameworks]]></category>
		<category><![CDATA[semi-tensor decomposition methods]]></category>
		<category><![CDATA[semi-tensor product]]></category>
		<category><![CDATA[tensor decomposition]]></category>
		<category><![CDATA[tensor decomposition in deep learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=197232</guid>

					<description><![CDATA[A new tensor decomposition framework dynamically compresses and decompresses neural network layers during training, achieving 95.81 percent accuracy in 12 seconds with only 850 MB of memory.]]></description>
										<content:encoded><![CDATA[<p>Training large neural networks has long been a battle against two unforgiving constraints: time and memory. Every epoch of learning demands billions of floating-point operations, and every hidden layer multiplies the storage burden on hardware that is already stretched to its limits. A new study published in the Journal of Big Data proposes a way out of this bind, introducing a unified tensor decomposition model that dynamically reshapes the computational fabric of a neural network while it learns. The result, according to the research team, is a training framework that reaches high accuracy in a matter of seconds rather than minutes, while consuming a fraction of the memory that conventional approaches require.</p>
<p>The model, which the authors call the training unified Tensor Decomposition model, or TUTDM, is built around a deceptively simple observation: not all portions of a neural network&#8217;s hidden layers work equally hard at every moment of training. Some computations are computationally trivial, while others spike in complexity as the network approaches saturation of its accuracy targets. Rather than assigning a fixed number of neurons to every hidden-layer task, TUTDM adapts the neuron count to the observed computational complexity, compressing the layer when demands are low and decompressing it when demands rise. This ebb and flow of resources is guided by saturation-level accuracy rates measured across successive training iterations.</p>
<p>At the mathematical heart of the approach lies the semi-tensor product, a matrix operation that allows multiplication between matrices of non-standard dimensions. In conventional linear algebra, multiplying two matrices requires their inner dimensions to match, a constraint that rigidly fixes the shape of neural network layers. The semi-tensor product relaxes this constraint, and in doing so opens the door to dynamic neuron allocation within hidden layers. The researchers exploit this property to shrink or expand the effective width of a layer on the fly, matching the computational budget to the difficulty of the task at hand without breaking the mathematical consistency of the network.</p>
<p>The compression step reduces the number of neurons assigned to hidden-layer computations when the observed complexity falls below defined thresholds, saving memory and processing cycles that would otherwise be wasted on redundant calculations. Decompression performs the opposite function: when a computation is judged to be highly complex, the model increases the number of participating neurons to preserve accuracy under load. The switching between these two states occurs at what the authors call converting points, thresholds at which the balance between performance and resource usage tips from one regime to the other. Training inputs are refined from these conversion points, ensuring that accuracy remains high even as the underlying structure of the network changes.</p>
<p>Central to the method is the concept of saturation levels, which serve as a proxy for computational intensity. As training proceeds, the accuracy of a neural network typically climbs steeply at first and then flattens as it approaches its achievable ceiling. The TUTDM monitors these saturation dynamics across increasing training iterations and uses them to decide when compression or decompression is warranted. When accuracy gains are rapid and the network is far from saturation, resources can be concentrated where they matter most; as the network nears its target accuracy, the model can reallocate capacity with fine granularity, avoiding the wasteful over-provisioning that plagues fixed architectures.</p>
<p>The unification aspect of the model comes from its use of multiple typical neurons to convert low-to-high saturation deviations. In practice, this means the framework does not rely on a single class of computational unit but instead blends several neuron types to bridge the gap between regimes of low and high computational saturation. The tensor decomposition model then revises neuron density from the identified converting point, improving the computational robustness of the network as it trains. This adaptive density control is what allows the system to maintain high accuracy in complex computations while shedding unnecessary overhead elsewhere.</p>
<p>The empirical results reported in the study are striking. When validated on the CIFAR-10 image classification benchmark and the IMDB sentiment analysis dataset, the proposed model achieved 95.81 percent accuracy while reducing training time to just 12 seconds, memory consumption to 850 megabytes, and convergence to 15 epochs. For context, these figures represent the kind of resource profile usually associated with lightweight models, yet the accuracy is competitive with far heavier architectures. The authors argue that this combination of speed, compactness, and precision demonstrates efficient and resource-aware neural network optimization, and that the framework could make sophisticated deep learning feasible on hardware that would otherwise be inadequate for the task.</p>
<p>The implications extend well beyond benchmark datasets. Cloud providers spend enormous sums on the electricity and cooling that large-scale training runs demand, and research groups with limited access to high-end graphics processors are often excluded from frontier experiments entirely. A training method that adapts its own resource footprint could democratize access to deep learning, allowing smaller laboratories, edge devices, and embedded systems to participate in model development. In domains such as medical imaging, autonomous navigation, and on-device natural language processing, where inference and sometimes training must happen close to the data source, the ability to compress and decompress neural capacity on demand could prove transformative.</p>
<p>The study was a collaborative effort spanning institutions in China and Saudi Arabia, with contributions from Zhejiang Shuren University, Nanjing Forestry University, the University of Bisha, the University of Business and Technology in Jeddah, Alexandria University, and Northern Border University. The work received support from the National Natural Science Foundation of China, the Zhejiang Provincial Department of Education, and the Deanship of Scientific Research at Northern Border University, among other funders. The authors report no competing interests, and the article is published open access, making the technical details freely available to the research community.</p>
<p>Like any new framework, TUTDM will need to prove itself on larger models, more diverse architectures, and the messy realities of production workloads. The benchmarks reported are modest in scale compared with the giant language and vision models that dominate headlines, and scaling adaptive tensor decomposition to networks with billions of parameters remains an open challenge. Nevertheless, the core idea, that a neural network should be able to breathe, expanding and contracting its computational structure in response to the difficulty of what it is learning, is a compelling one. If the approach generalizes, the era of rigid, resource-hungry training pipelines may give way to something far more flexible, in which the shape of intelligence is not fixed in advance but negotiated continuously with the hardware that hosts it.</p>
<p><strong>Subject of Research:</strong> Adaptive neural network training using semi-tensor decomposition for dynamic resource allocation</p>
<p><strong>Article Title:</strong> Revolutionizing neural training with semi-tensor decomposition and adaptive resource allocation</p>
<p><strong>Article References:</strong> Wang, J., Ye, F.-F., Zhao, L., Wang, T., Algarni, F., Lhioui, C., Yousef, A., &amp; Touti, E. (2026). Revolutionizing neural training with semi-tensor decomposition and adaptive resource allocation. <em>Journal of Big Data</em>. <a href="https://doi.org/10.1186/s40537-026-01538-x" rel="noopener noreferrer">https://doi.org/10.1186/s40537-026-01538-x</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1186/s40537-026-01538-x" rel="noopener noreferrer">10.1186/s40537-026-01538-x</a></p>
<p><strong>Keywords:</strong> tensor decomposition, semi-tensor product, neural network training, adaptive resource allocation, compression and decompression, hidden layer computation, machine learning, deep learning optimization, CIFAR-10, IMDB, model convergence, memory efficiency</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">197232</post-id>	</item>
	</channel>
</rss>
