//! SqueezeBERT (Iandola et al., 2020)
//!
//! SqueezeBERT follows the same architecture as BERT, but replaces most
//! matrix multiplications by grouped convolutions. This reduces the
//! number of parameters and speeds up inference.
pub use SqueezeBertConfig;
pub use SqueezeBertEncoder;
pub use SqueezeBertLayer;