Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding basic RNN implementation #798

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/nn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ mod npz;
mod pool2d;
mod pool_global;
pub mod prelu;
#[cfg(feature = "nightly")]
mod rec;
mod repeated;
mod reshape;
mod residual;
Expand Down Expand Up @@ -255,6 +257,8 @@ pub mod modules {
#[cfg(feature = "nightly")]
pub use super::pool2d::{AvgPool2D, MaxPool2D, MinPool2D};
pub use super::pool_global::{AvgPoolGlobal, MaxPoolGlobal, MinPoolGlobal};
#[cfg(feature = "nightly")]
pub use super::rec::{GRU, RNN};
pub use super::repeated::Repeated;
pub use super::residual::Residual;
pub use super::split_into::SplitInto;
Expand Down Expand Up @@ -292,6 +296,8 @@ pub mod builders {
pub use super::pool2d::{AvgPool2D, MaxPool2D, MinPool2D};
pub use super::pool_global::{AvgPoolGlobal, MaxPoolGlobal, MinPoolGlobal};
pub use super::prelu::builder::{PReLU, PReLU1D};
#[cfg(feature = "nightly")]
pub use super::rec::builder::{GRU, RNN};
pub use super::repeated::Repeated;
pub use super::reshape::Reshape;
pub use super::residual::Residual;
Expand Down
Loading
Loading