python - 如何使 ResNet 适应时间序列数据

标签 python machine-learning keras resnet

我正在尝试使用 convolutional residual network neural network architecture (ResNet)。到目前为止,我已经使用 Keras 实现了用于时间序列数据分类的简单卷积 (conv1D)。

现在,我正在尝试使用 Keras 构建 ResNet,但在尝试使其适应时间序列数据时遇到一些困难。 Keras 中 ResNet 或 Nasnet 的大多数实现(例如 this onethat one )都使用 conv2D 进行实现(这对于图像来说很有意义)。

有人可以帮我实现这个时间序列数据吗?

最佳答案

你知道论文“Time Series Classification from Scratch with Deep Neural Networks: A Strong Baseline”吗?如果没有,你应该检查一下。作者对不同模型进行了非常全面的概述,包括针对时间序列分类进行调整的 ResNet 实现。

他们的 ResNet 的 Keras/Tensorflow 实现可以在 here 找到.

更新:用于时间序列数据的 ResNet(和其他分类器)的更新版本可以在 here 中找到。 .

关于python - 如何使 ResNet 适应时间序列数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49337897/

相关文章:

python - Pygame 滚动条播放音量低还是高。?

Tensorflow 中的 Python SSL 认证问题

machine-learning - 机器学习方法如何应用于自然语言处理?

python - 尝试检查整数列表中每个元素的条件

machine-learning - 为什么我的 CNN 过度拟合?如何修复?

machine-learning - word2vec如何从向量中获取单词?

python-3.x - Early Stopping,模型经历了多少个epoch?

python - 为什么使用 Keras 制作的恢复后的 TensorFlow 模型给出的预测为 0?

python - 类型错误 : fit_generator() got an unexpected keyword argument 'nb_val_samples'

python - 在 Electron 应用程序中运行 python 脚本