How to adapt ResNet to time series data
Asked Answered
D

2

10

I am trying to use the convolutional residual network neural network architecture (ResNet). So far, I have implemented simple convolutions (conv1D) for time series data classification using Keras.

Now, I am trying to build ResNet using Keras but I'm having some difficulties trying to adapt it to time series data. Most of the implementations of ResNet or Nasnet in Keras (such as this one or that one) use conv2D for their implementation (which makes sense for images).

Could someone help me in implementing this for time series data?

Democracy answered 17/3, 2018 at 14:16 Comment(0)
A
21

Do you know about the paper "Time Series Classification from Scratch with Deep Neural Networks: A Strong Baseline"? If not, you should check it out. The authors provide a very comprehensive overview of different models, including a ResNet implementation adjusted for time series classification.

Their Keras/Tensorflow implementation of ResNet can be found here.

Update: A more recent version of ResNet (and other classifiers) for time series data can be found here.

Alcoholic answered 13/9, 2018 at 10:34 Comment(0)
H
2

tsai provides a range of SOTA methods, including ResNet (doc) of course.

Henri answered 5/2, 2023 at 8:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.