oxidized-transformers 0.1.1

Transformers library (not functional yet)
Documentation
mod albert;
pub use albert::{AlbertEncoder, AlbertEncoderConfig};

mod bert;
pub use bert::BertEncoder;

mod gpt_neox;
pub use gpt_neox::{GPTNeoXCausalLM, GPTNeoXDecoder};

pub mod hf;

mod llama;
pub use llama::{LlamaCausalLM, LlamaDecoder};

mod roberta;
pub use roberta::{RobertaEmbeddings, RobertaEmbeddingsConfig, RobertaEncoder};

pub mod transformer;

mod xlm_roberta;
pub use xlm_roberta::XLMREncoder;

pub mod util;