Problem: time series classification

shallow RNNs: the first layer splits the input sequence and runs several independent RNNs.  The second layer consumes the output of the first layer to capture long dependencies.

We improve inference time over standard RNNs without compromising accuracy.

Time series -------- temporal dependencies. Sequential models such as RNN are particularly well-suited in this context.

Directly leveraging RNNs for prediction in constrained scenarios is challenging, and requires large training and inference costs.

?? how long the recurrence of RNN should be?

Each time series is divided into independent parts, and a shared RNN operates on each brick independently, thus ensuring a small model size and short recurrence.

Only has a short recurrence.

Supplementary knowledge:

1. theoretical justification

2. weak/ strong assumptions; Model flow:

  • assumption/ environment ~ weak or strong
  • model
  • results
  • evaluation ~ baseline or indicator.

3. Sequential models: RNN;

最新文章

  1. 算法与数据结构(十三) 冒泡排序、插入排序、希尔排序、选择排序(Swift3.0版)
  2. Java FtpClient 实现文件上传服务
  3. ModelDataExchange - Import
  4. Python之路【第十九章】:Django 数据库对象关系映射
  5. [原]__FILE__宏
  6. 完整成功配置wamp server小记
  7. android fragment 博客 学习记录
  8. 机器学习之单变量线性回归(Linear Regression with One Variable)
  9. ZeroBrane Lua脚本编辑器代码自动补全
  10. js过滤emoji表情符号
  11. Atom编辑器之加快React开发的插件汇总
  12. 剑指架构师系列-Redis安装与使用
  13. ubuntu创建新用户
  14. maven将依赖的jar包复制到指定位置
  15. FormatMessage
  16. 011 Linux环境下配置eclipse,以及创建maven工程
  17. Spring------生命周期
  18. tcl脚本
  19. gitlab、openvpn配置ldap认证
  20. ajax访问WebService跨域问题

热门文章

  1. python3-cookbook笔记:第八章 类与对象
  2. MySQL导出数据时提示文件损坏
  3. Orleans[NET Core 3.1] 学习笔记(四)( 2 )获取Grain的方式
  4. 使用CSV Data Set Config配置原件,参数化数据
  5. python 语言打印直角三角形的几种方法
  6. 如何修改Tomcat运行时jvm编码
  7. 基于SSM开发大学食堂采购管理系统源码
  8. 9个常用的正则表达式-sunziren
  9. linq to sql 比较字符串形式的时间
  10. 方法(定义、调用、重载)—Java