syntaxdot_transformers/models/albert/
mod.rs

1//! ALBERT (Lan et al., 2020)
2
3mod config;
4pub use config::AlbertConfig;
5
6mod embeddings;
7pub(crate) use embeddings::AlbertEmbeddingProjection;
8pub use embeddings::AlbertEmbeddings;
9
10mod encoder;
11pub use encoder::AlbertEncoder;