paper-with-me

Papers

Parallelizing non-linear sequential models over the sequence length

2023-09-21 · Yi Heng Lim, Qi Zhu, Joshua Selfridge, Muhammad Firmansyah Kasim

Sequential models, such as Recurrent Neural Networks and Neural Ordinary Differential Equations, have long suffered from slow training due to their inherent sequential nature. For many years this bottleneck has persisted, as many thought sequential models could not be parallelized. We challenge this long-held belief with our parallel algorithm that accelerates GPU evaluation of sequential models by up to 3 orders of magnitude faster without compromising output accuracy. The algorithm does not need any special structure in the sequential models' architecture, making it applicable to a wide range of architectures. Using our method, training sequential models can be more than 10 times faster than the common sequential method without any meaningful difference in the training results. Leveraging this accelerated training, we discovered the efficacy of the Gated Recurrent Unit in a long time series classification problem with 17k time samples. By overcoming the training bottleneck, our work serves as the first step to unlock the potential of non-linear sequential models for long sequence problems.

📄 PDF Abstract BibTeX arXiv:2309.12252

Code (2)

machine-discovery/deer 공식 구현 jax
lindermanlab/elk jax

Tasks

GPUTime SeriesTime Series Classification

Similar Papers 제목 키워드 기반

Parallelizing Linear Recurrent Neural Nets Over Sequence Length

2017-09-12 · ICLR 2018 1 · Eric Martin, Chris Cundy

Recurrent neural networks (RNNs) are widely used to model sequential data but their non-linear dependencies between sequence elements prevent parallelizing training over sequence length. We show the training of RNNs with…

The Impossibility of Parallelizing Boosting

2023-01-23 · Amin Karbasi, Kasper Green Larsen

The aim of boosting is to convert a sequence of weak learners into a strong learner. At their heart, these methods are fully sequential. In this paper, we investigate the possibility of parallelizing boosting. Our main c…

A Unifying Framework for Parallelizing Sequential Models with Linear Dynamical Systems

2025-09-26 · Xavier Gonzalez, E. Kelly Buchanan, Hyun Dong Lee, Jerry Weihong Liu 외 arxiv

Harnessing parallelism in seemingly sequential models is a central challenge for modern machine learning. Several approaches have been proposed for evaluating sequential processes in parallel using iterative fixed-point …

DeepPCR: Parallelizing Sequential Operations in Neural Networks

2023-09-28 · NeurIPS 2023 11

Parallelization techniques have become ubiquitous for accelerating inference and training of deep neural networks. Despite this, several operations are still performed in a sequential manner. For instance, the forward an…

Denoising

Parallel Training of GRU Networks with a Multi-Grid Solver for Long Sequences

2022-03-07 · Gordon Euhyun Moon, Eric C. Cyr

Parallelizing Gated Recurrent Unit (GRU) networks is a challenging task, as the training procedure of GRU is inherently sequential. Prior efforts to parallelize GRU have largely focused on conventional parallelization st…