<?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>ROCKET &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/rocket/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Fri, 25 Sep 2026 02:34:27 +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>ROCKET &#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>Random Convolutions Get Smarter: New AI Picks Its Own Features for Time Series</title>
		<link>https://scienmag.com/random-convolutions-get-smarter-new-ai-picks-its-own-features-for-time-series/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Fri, 25 Sep 2026 02:34:27 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[comparison of time series classifiers]]></category>
		<category><![CDATA[computationally efficient time series analysis]]></category>
		<category><![CDATA[deep learning for time series]]></category>
		<category><![CDATA[efficient feature transformation]]></category>
		<category><![CDATA[ensemble classifiers for time series]]></category>
		<category><![CDATA[feature selection]]></category>
		<category><![CDATA[HYDRA]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[MiniRocket]]></category>
		<category><![CDATA[MiniRocket speed optimization]]></category>
		<category><![CDATA[MultiRocket]]></category>
		<category><![CDATA[MultiRocket feature extraction]]></category>
		<category><![CDATA[pooling operators]]></category>
		<category><![CDATA[random convolution kernels]]></category>
		<category><![CDATA[random kernel methods in AI]]></category>
		<category><![CDATA[ridge classifier]]></category>
		<category><![CDATA[ROCKET]]></category>
		<category><![CDATA[ROCKET machine learning method]]></category>
		<category><![CDATA[SelF-Rocket]]></category>
		<category><![CDATA[supervised learning for sequence data]]></category>
		<category><![CDATA[time series classification]]></category>
		<category><![CDATA[UCR archive]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=214235</guid>

					<description><![CDATA[A new adaptive algorithm called SelF-Rocket dynamically selects the best input representation and pooling operator for time series classification, matching state-of-the-art accuracy at low computational cost.]]></description>
										<content:encoded><![CDATA[<p>Time series data are everywhere: heart rhythms on a hospital monitor, sensor streams from a factory floor, stock prices ticking across a trading screen. Teaching a machine to classify such sequences, deciding whether an ECG trace is healthy or arrhythmic, whether a machine&#8217;s vibration signature signals a coming failure, is one of the oldest and most practical problems in supervised learning. For decades, researchers attacked it with distance measures such as Dynamic Time Warping, with deep networks like InceptionTime, and with heavyweight ensembles such as HIVE-COTE 2.0 that combine many classifiers at considerable computational cost. Then, in 2020, a deceptively simple idea upended the field: generate thousands of random convolution kernels, transform each time series into a large set of statistical features, and hand the result to a plain linear classifier. The approach, known as ROCKET, matched or beat the most sophisticated methods while running orders of magnitude faster.</p>
<p>The ROCKET family has since grown rapidly. MiniRocket stripped the original method down to a nearly deterministic transform with a fixed set of 84 kernel patterns containing only the values -1 and 2, dramatically accelerating convolution while keeping accuracy essentially unchanged. MultiRocket enriched the recipe by adding new pooling operators and a first-order difference representation of the input. HYDRA blended random convolutions with dictionary-based ideas, grouping kernels and building histograms of their strongest responses. Across benchmarks, these methods consistently sit at or near the state of the art, and because the only learned parameters are the weights of a linear classifier, they remain among the fastest options available. Yet a closer look reveals a hidden rigidity: nearly all of them commit, at design time, to a fixed input representation and a small, fixed menu of pooling operators.</p>
<p>A new study published in Data Mining and Knowledge Discovery argues that this rigidity is a genuine weakness. Mouhamadou Mansour Lo and colleagues at the University of Artois in France first ran a systematic experiment on the UCR time series archive, the standard benchmark collection for the field. They took MiniRocket and systematically swapped its pooling operator, testing five candidates: the proportion of positive values (PPV), zero crossing (ZC), the mean of positive values, the mean of the indices of positive values, and the longest stretch of positive values. They also varied the input representation, comparing the raw series, its first-order difference, and a concatenation of both. Across 112 datasets and 30 resamples each, the result was striking: no single combination of representation and pooling operator dominated. Even the best average performer, PPV applied to the mixed representation, was beaten on roughly 83 percent of individual datasets by some alternative.</p>
<p>The study did not stop at the aggregate numbers. The authors probed when each pooling operator shines, using synthetic activation maps in which two classes differ in a controlled way. When classes differ mainly in the amplitude of a discriminative pattern, the mean of positive values separates them best. When the pattern&#8217;s typical location shifts between classes, the mean of indices of positive values wins. When the pattern&#8217;s duration varies by class, the longest stretch of positive values is the strongest discriminator. PPV and zero crossing act as versatile generalists, coping well when a pattern simply appears at different frequencies in each class. A further regularity emerged with series length: PPV tends to excel on short time series, while zero crossing pulls ahead on longer ones, plausibly because longer sequences accumulate richer information in their sign changes. This observation also helps explain why MiniRocket, which relies entirely on PPV, performs so well on the UCR archive, which is dominated by short series.</p>
<p>Motivated by these findings, the team built SelF-Rocket, short for Selected Features Rocket, an extension of MiniRocket that refuses to commit in advance. Instead of fixing the pooling operator and input representation, SelF-Rocket generates features under all fifteen combinations of three input representations and five pooling operators, and then lets the data decide. The heart of the method is a wrapper-based feature selection module. The training set is repeatedly split into stratified train and validation subsets, either through repeated stratified k-fold cross-validation or a stratified shuffle split, depending on dataset size. For each representation-pooling combination, a set of small ridge classifiers, the same linear model used by the original ROCKET, is trained on these splits, and the combination with the highest median validation accuracy is chosen. The median, rather than the mean, guards against lucky runs on unusually easy splits.</p>
<p>One subtlety proved important for small datasets: vote validation. When a dataset contains few examples, the mini-classifiers inside the selection module are trained on very little data, and their votes can be unreliable. SelF-Rocket therefore checks whether the winning combination is broadly supported, requiring it to appear near the top of most voters&#8217; rankings within a configurable threshold. If the consensus is too weak, the method falls back to a sensible default, PPV or zero crossing on the mixed representation, chosen according to the length of the series. Across 112 datasets and 30 resamples, the fallback fired in about 41 percent of runs, and its benefit was most pronounced on datasets with at most 100 training examples, where an ill-validated vote could otherwise steer the classifier badly wrong.</p>
<p>The benchmark results are impressive. Evaluated on the same 112 UCR datasets and the same 30 train-test resamples used in recent community-wide bake-offs, SelF-Rocket improved on its baseline MiniRocket by roughly one percentage point of mean accuracy. Combined with HYDRA&#8217;s features, it ranked second only to HIVE-COTE 2.0 among eleven compared classifiers, edging out MultiRocket and Hydra plus MultiRocket on average, and the Wilcoxon signed-rank test found no statistically significant difference between Hydra plus SelF-Rocket, Hydra plus MultiRocket, and HIVE-COTE 2.0. In other words, a method that uses only a single pooling operator at a time matches the accuracy of methods that stack four operators, while enjoying a practical advantage at prediction time: SelF-Rocket feeds its classifier only 9,996 or 19,992 features, depending on the representation, compared with roughly 50,000 for MultiRocket, which translates into faster classification.</p>
<p>The authors are candid about the costs and the remaining headroom. Feature generation is heavier than MiniRocket&#8217;s, since roughly 9,996 kernels are instantiated per representation type, and the selection module adds training time, though with the mixed representation and default settings the module takes under two seconds per resample on average. Ablation studies showed that removing any single pooling operator does not significantly change accuracy, but removing PPV hurts more than removing the longest-stretch operator, and the mixed representation generally outperforms either raw or differenced inputs alone. To quantify the ceiling, the team also ran an oracle version of SelF-Rocket, in which the best representation-pooling pair is known in advance for each dataset. The oracle&#8217;s results sketch how much performance a better selection module might one day unlock, a question the authors leave explicitly open.</p>
<p>The implications reach beyond one benchmark. Random convolution kernel methods are already prized in domains from healthcare to industrial monitoring precisely because they are fast, simple, and accurate; making them adaptive removes a design decision that practitioners would otherwise have to guess. The implementation is open source on GitHub, and the authors outline clear next steps: richer input representations such as second-order differences, Fourier or Hilbert transforms, faster filter-based selection using chi-squared tests, and improved vote validation to close the gap to the oracle. For a field that has spent years squeezing accuracy out of fixed recipes, the message of this study is refreshingly simple: the best features depend on the data, and a classifier that checks, rather than assumes, is measurably better for it.</p>
<p><strong>Subject of Research:</strong> Adaptive feature selection with random convolution kernels for time series classification</p>
<p><strong>Article Title:</strong> Time series classification with random convolution kernels: pooling operators and input representations matter</p>
<p><strong>Article References:</strong> Lo, M. M., Morvan, G., Rossi, M., Morganti, F., &amp; Mercier, D. (2026). Time series classification with random convolution kernels: pooling operators and input representations matter. <em>Data Mining and Knowledge Discovery, 40</em>(6), Article 100. <a href="https://doi.org/10.1007/s10618-026-01269-w" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01269-w</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01269-w" rel="noopener noreferrer">10.1007/s10618-026-01269-w</a></p>
<p><strong>Keywords:</strong> time series classification, random convolution kernels, ROCKET, MiniRocket, pooling operators, feature selection, machine learning, SelF-Rocket, UCR archive, ridge classifier, HYDRA, MultiRocket</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">214235</post-id>	</item>
	</channel>
</rss>
