← Latest papers
🤖 AI

KAN vs LSTM Performance in Time Series Forecasting

This study demonstrates that while baseline Kolmogorov-Arnold Networks (KAN) converge faster during training, Long Short-Term Memory (LSTM) networks significantly outperform them in predictive accuracy for stochastic, non-stationary financial time series, establishing LSTM as the superior choice for accuracy-critical forecasting tasks.

Original authors: Tabish Ali Rather, S M Mahmudul Hasan Joy, Nadezda Sukhorukova, Federico Frascoli

Published 2026-07-07
📖 5 min read🧠 Deep dive

Original authors: Tabish Ali Rather, S M Mahmudul Hasan Joy, Nadezda Sukhorukova, Federico Frascoli

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

The Big Picture: A Race Between Two Forecasters

Imagine you are trying to predict the weather for the next few days, but the weather is chaotic, changing its mind constantly, and doesn't follow a simple rulebook. You have two different "forecasters" (computer models) to help you:

  1. The Veteran Detective (LSTM): This model has been around for a long time. It is famous for being excellent at looking at a story told over time (like a sequence of events) and remembering what happened yesterday to guess what happens tomorrow.
  2. The New Theoretical Genius (KAN): This is a brand-new model based on a fancy mathematical theorem. It promises to be very "transparent"—meaning you can easily see how it makes its decisions. However, it was originally designed for static puzzles, not for stories that unfold over time.

The authors of this paper put these two against each other to see who is better at predicting stock market prices (which are messy, random, and constantly changing).

The Setup: How They Played the Game

The researchers set up a specific challenge:

  • The Task: Predict future stock prices based on past data (Open, High, Low, Close, Volume).
  • The Rules: They used a "Direct Multi-Output" method. Imagine asking the model, "Here is the last 20 days of data; tell me exactly what the price will be for the next 1 day, 2 days, or even 100 days all at once."
  • The Scorecard: They measured success using RMSE (Root Mean Square Error). Think of this as a "mistake score." The lower the number, the better the model is.

The Results: The Veteran Wins Decisively

The results were clear and consistent across all timeframes (1 day, 2 days, and 100 days):

  • The Veteran (LSTM) was the clear winner. It predicted the stock prices with much higher accuracy. In fact, its mistakes were 6.5 to 10 times smaller than the New Genius's mistakes.
  • The New Genius (KAN) struggled. While it was theoretically interesting, it made huge errors. It was like trying to solve a moving puzzle by freezing the pieces in place; it just couldn't keep up with the flow of time.

The Analogy:
Imagine you are trying to predict where a runner will be in 10 seconds.

  • LSTM watches the runner, sees their speed, their stride, and their momentum, and calculates the future path.
  • Standard KAN takes a photo of the runner, flattens the photo into a single list of numbers (ignoring the order of the steps), and tries to guess the future. It's like trying to predict a movie's ending by looking at a pile of random frames from the middle of the film. It just doesn't work well for sequences.

The "Speed" Trap: Who was Faster?

You might think, "If KAN was so bad, maybe it was at least super fast?"

  • The Paper says: Yes, KAN finished its training faster (about 35 seconds vs. up to 120 seconds for LSTM).
  • The Catch: This isn't a fair comparison. It's like comparing a sprinter who ran 100 meters to a marathon runner who only jogged 10 meters.
    • LSTM trained for 25 "rounds" (epochs) using small batches of data.
    • KAN only did 10 "rounds" using the entire dataset at once.
    • Because KAN did so much less work, it finished quickly, but it didn't get a chance to learn as deeply. The paper warns that you can't say KAN is "faster" in a useful way because they didn't run the same amount of training.

Why Did KAN Fail? (The Core Problem)

The paper identifies a fundamental structural flaw in how the standard KAN model was used:

  • LSTM is built to understand time. It remembers the order of events (Step 1 happened before Step 2).
  • Standard KAN (the version tested here) treats time as static. To feed data into it, the researchers had to "flatten" the time sequence into a single long list of numbers. This destroyed the timeline. The model lost the context of when things happened, which is the most important part of predicting the future.

The Bottom Line for Practitioners

  • If you need accuracy: Stick with LSTM. It is the reliable, proven choice for financial forecasting.
  • If you want the "New Thing" (KAN): Don't use the standard version for stock prediction. It is not ready for this job yet.
  • The Caveat: The paper explicitly states that there are newer, modified versions of KAN (like "Temporal KAN" or "Time-Frequency KAN") that try to fix this time-tracking problem. However, this study did not test those. It only tested the "base" version.

Summary in One Sentence

When predicting chaotic stock prices, the old-school, time-aware LSTM model crushed the new, theoretically transparent KAN model because the standard KAN couldn't understand the flow of time, turning a sequence of events into a meaningless pile of numbers.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →