• HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
Saturday, September 5, 2026
BIOENGINEER.ORG
No Result
View All Result
  • Login
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
No Result
View All Result
Bioengineer.org
No Result
View All Result
Home NEWS Science News Technology

Adaptive progressive neural networks for evolving streaming time series data

Bioengineer by Bioengineer
September 5, 2026
in Technology
Reading Time: 6 mins read
0
Adaptive progressive neural networks for evolving streaming time series data
Share on FacebookShare on TwitterShare on LinkedinShare on RedditShare on Telegram

Machine learning models that work well in laboratories often stumble in the real world, where the data they must interpret never stops changing. A weather prediction system trained on last season’s patterns may find itself baffled by a shifting climate regime. A fraud detector tuned to yesterday’s scam tactics can be rendered useless overnight by criminals adopting a new strategy. This phenomenon, known in the research literature as concept drift, is one of the most stubborn obstacles standing between streaming data applications and reliable artificial intelligence. Now, a team of researchers at the Polytechnic University of Milan—Federico Giannini, Giacomo Ziffer, and Emanuele Della Valle—has unveiled a new neural architecture designed to tackle this problem head-on, in an open-access paper published in the journal Data Mining and Knowledge Discovery.

Their creation, called Dynamic Continuous Progressive Neural Networks, or DYNcPNN, addresses a scenario the authors term Evolving Streaming Time Series. In such settings, data arrives as an unbounded stream, past values influence future ones, the underlying statistical relationships shift without warning, and the model must somehow absorb new knowledge without erasing what it has already learned. Each of these demands has traditionally been the province of a separate research field. Streaming Machine Learning emphasizes rapid adaptation to drifts but happily abandons old knowledge in the process. Continual Learning protects deep networks from catastrophic forgetting but assumes drifts merely introduce new data distributions rather than contradictory ones. Time Series Analysis, particularly through recurrent architectures like Long Short-Term Memory networks, handles temporal dependence but is rarely deployed in true streaming contexts. The Milanese team’s Streaming Continual Learning paradigm, introduced in previous work and now embodied in DYNcPNN, unifies all three.

The problem DYNcPNN confronts is subtler than it first appears. Concept drift comes in flavors that demand different responses. The authors draw a novel distinction between what they call contradictory drifts and input drifts. A contradictory drift changes the decision boundary itself: the same input that once meant “normal conditions” may now signify a storm, perhaps because an agency has revised its alert thresholds. An input drift, by contrast, introduces unfamiliar data—new slang in customer reviews, novel sensor readings—without invalidating the old classification rules. The difference matters enormously. Contradictory drifts force a model to relearn, while input drifts reward a model that can weave new knowledge into existing structures without disturbing them. Real streams present both, often at once, along with temporal dependence, where the probability of an event at time t genuinely depends on what happened at t minus some lag. Standard streaming classifiers, which typically assume data points are independent, ignore this temporal structure entirely and pay for it in accuracy.

DYNcPNN builds on the team’s earlier architecture, cPNN, which itself adapted the Progressive Neural Networks strategy from Continual Learning to the streaming domain. The original Progressive Neural Networks grow by adding an entirely new “column” of neural network layers whenever a new task appears, while freezing the weights of previous columns so their knowledge remains intact. Transfer connections let new columns draw on old columns’ representations, enabling selective reuse of past expertise. The cPNN variant applied this logic on top of a Continuous LSTM—a recurrent base learner that buffers the incoming stream in fixed-size mini-batches and builds sequences with a hopping window—thereby capturing temporal dependence while learning continuously. But cPNN suffered from two crippling limitations: it required knowing the exact timestamps of concept drifts in advance, and it expanded its architecture every single time a drift was detected, whether or not such expansion was warranted.

The new work eliminates both limitations through two intertwined mechanisms. The first is an automatic concept drift detector based on ADWIN—ADaptive WINdowing—a well-established streaming technique that maintains a sliding window of recent observations, here a binary correctness signal of the model’s predictions. ADWIN continuously evaluates all ways of splitting the window into a recent half and an older half; when the difference between the means of the two sub-windows exceeds a statistically motivated threshold, a drift is signaled and the oldest observations are discarded. By wiring this detector into the architecture, DYNcPNN no longer needs to be told when the world has changed—it notices on its own, without manual intervention.

The second and arguably more consequential innovation is the dynamic decision mechanism that governs when the network actually expands. When a drift is detected, expanding the architecture is not always the right response. Adding a column costs memory, and if the new concept is mild or closely related to the current one, simple continued training on the existing network may suffice. DYNcPNN therefore evaluates whether the drift is severe enough to justify growth. If the drift is judged contradictory and substantial, a new column is added and the old ones are frozen, preserving their knowledge forever. If, however, the model decides to adapt without expanding—continuing to train the existing network—it risks overwriting previously learned knowledge. To prevent exactly this form of catastrophic forgetting, the authors introduce a protective strategy that safeguards the relevant prior knowledge during this no-expansion adaptation phase. The net effect is a model that spends memory only when necessary and consistently outperforms its predecessors in both accuracy and footprint.

The severity of a drift, which drives this decision, is formalized in the paper as the discrepancy between the joint probability distributions before and after the change. Mild drifts require only minor adjustments; severe ones demand substantial relearning. For contradictory drifts, severity can be gauged through the “influence zone”—the proportion of the previously observed input space where the new concept changed the labels. This quantitative framing allows the architecture to make principled rather than arbitrary choices about when to grow.

The experimental campaign is notably thorough. The team benchmarked DYNcPNN against its own predecessor cPNN, against the underlying cLSTM trained continuously, and against the heavyweights of the Streaming Machine Learning world, including Hoeffding Adaptive Trees and Adaptive Random Forests. The benchmarks were crafted to include significant temporal dependence: the authors injected elaborate temporal dependencies into the labels of synthetic streams, and they also tested on real-world data covering weather prediction, air pollution, and power consumption—domains where sensor readings evolve continuously and past measurements genuinely shape the future. The results, reported in the paper, show DYNcPNN consistently outperforming all competitors, adapting more quickly to concept drifts, mitigating catastrophic forgetting effectively, and optimizing memory usage. Equally revealing were the failures of the baselines: the streaming decision-tree and forest models, unable to account for temporal dependence, lagged behind on all temporally structured tasks.

The significance of this work extends beyond a single architecture. It serves as a pointed critique of the assumptions underpinning much of classical machine learning. Offline learning rests on the i.i.d. assumption—that data are independent and identically distributed—which the Empirical Risk Minimization principle requires for meaningful statistical guarantees. Streaming data with temporal dependence and concept drift violates both conditions at once. Correlated samples reduce the effective number of independent observations, biasing risk estimates, while shifting distributions make convergence impossible in principle. The authors’ response is not to patch the old framework but to build one designed for the violation, drawing on an emerging body of SCL research that has recently begun to emphasize taming temporal dependence in streams.

Practical applications are easy to imagine. The paper’s own motivating example is environmental nowcasting: a classifier receiving an unbounded stream of temperature, humidity, and radiation measurements from sensors must predict the current weather condition in real time, before official meteorological confirmation arrives. Seasonal transitions produce input drifts; revised alert thresholds produce contradictory drifts; rain persistence and gradual temperature trends produce temporal dependence; and recurring phenomena—summer storms, winter snow showers—demand that old knowledge remain retrievable rather than destroyed. The same structure applies to network security, financial monitoring, industrial sensor networks, and any Internet of Things deployment where the ground truth arrives late or never.

The authors are candid about limits and future directions, and DYNcPNN is presented as a pioneering embodiment of a young paradigm rather than a finished solution. Yet the trajectory is clear: as data-hungry applications proliferate and the gap between laboratory conditions and operational reality widens, architectures that learn continuously, remember selectively, and adapt autonomously will become less exotic and more essential. With DYNcPNN, the Streaming Continual Learning paradigm has gained a concrete, benchmarked, and open blueprint for what that future might look like—neural networks that grow only when they must, forget only what they should, and never stop reading the stream.

Subject of Research: Streaming Continual Learning; dynamic progressive neural networks for evolving streaming time series with concept drift and temporal dependence

Subject of Research: Technology and Engineering

Article Title: Dynamic continuous progressive neural networks for evolving streaming time series

Article References: Giannini, F., Ziffer, G., & Della Valle, E. (2026). Dynamic continuous progressive neural networks for evolving streaming time series. Data Mining and Knowledge Discovery, 40(4), Article 49. https://doi.org/10.1007/s10618-026-01213-y

Image Credits: AI Generated

DOI: 10.1007/s10618-026-01213-y

Keywords: Streaming Continual Learning, concept drift, catastrophic forgetting, temporal dependence, progressive neural networks, streaming machine learning, time series analysis

Cite Scienmag News
APA MLA Chicago

Cassandra Pierce. (September 5, 2026). Adaptive progressive neural networks for evolving streaming time series data. Scienmag. https://scienmag.com/adaptive-progressive-neural-networks-for-evolving-streaming-time-series-data/

Cassandra Pierce. “Adaptive progressive neural networks for evolving streaming time series data.” Scienmag, 5 September 2026, https://scienmag.com/adaptive-progressive-neural-networks-for-evolving-streaming-time-series-data/. Accessed 5 September 2026.

Cassandra Pierce. “Adaptive progressive neural networks for evolving streaming time series data.” Scienmag. September 5, 2026. https://scienmag.com/adaptive-progressive-neural-networks-for-evolving-streaming-time-series-data/

Copy citation Download RIS

Tags: adaptive neural networks for concept driftadaptive streaming time series modelingaddressing concept drift in time series analysiscombating data distribution changes in AI systemsconcept drift in machine learningcontinuous learning in AIdynamic continuous progressive neural networksdynamic neural network architecturesevolving data streamsevolving streaming time series modelinghandling non-stationary datahandling non-stationary data in machine learningincremental learning for streaming datainnovative solutions for real-world data variabilitylifelong learning in neural networksneural architectures for real-time data streamsneural network adaptabilityneural network design for shifting data distributionsneural networks for changing environmentsopen-access data mining researchopen-access research on streaming AIprogressive neural networksreal-time time series analysistechniques for incremental learning in streaming data

Share12Tweet7Share2ShareShareShare1

Related Posts

Tuning AlCrCuFeNbNi high-entropy alloys for nuclear fuel cladding performance

Tuning AlCrCuFeNbNi high-entropy alloys for nuclear fuel cladding performance

September 5, 2026
Machine learning force fields reveal carboxylate ligand binding on CdSe quantum dots

Machine learning force fields reveal carboxylate ligand binding on CdSe quantum dots

September 5, 2026

Generative AI reshapes educational meaning: a critical review of inclusion and exclusion

September 5, 2026

Consistency-aligned guided diffusion improves cross-domain recommendations

September 5, 2026

POPULAR NEWS

  • New MFCAMNet predicts miRNA-disease links via cascade attention

    29 shares
    Share 12 Tweet 7
  • Deep learning identifies cell death types in ischemia reperfusion injury

    29 shares
    Share 12 Tweet 7
  • Single-cell RNA sequencing reveals heterogeneity in chicken gonadal germ cells

    29 shares
    Share 12 Tweet 7
  • AI models predict blood clot risk in septic ICU patients

    29 shares
    Share 12 Tweet 7

About

We bring you the latest biotechnology news from best research centers and universities around the world. Check our website.

Follow us

Recent News

New MFCAMNet predicts miRNA-disease links via cascade attention

Deep learning identifies cell death types in ischemia reperfusion injury

Single-cell RNA sequencing reveals heterogeneity in chicken gonadal germ cells

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 85 other subscribers
  • Contact Us

Bioengineer.org © Copyright 2023 All Rights Reserved.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Homepages
    • Home Page 1
    • Home Page 2
  • News
  • National
  • Business
  • Health
  • Lifestyle
  • Science

Bioengineer.org © Copyright 2023 All Rights Reserved.