tsai_models 0.1.2

Model zoo for tsai-rs: CNN, Transformer, ROCKET, RNN, and Tabular architectures
Documentation
1
2
3
4
5
6
7
8
9
//! RNN models for time series.

mod rnn_attention;
mod rnn_plus;

pub use rnn_attention::{
    AdditiveAttention, AttentionType, RNNAttention, RNNAttentionConfig,
};
pub use rnn_plus::{RNNPlus, RNNPlusConfig, RNNType};