aiha 0.0.4

🦉 AIHA helps you to find the minimal requirements for any model on the 🤗 Hub.
Documentation
//! Module for handling Hugging Face models

// Base utilities for models
mod base;
pub use base::{ModelConfigTrait, ModelError, ModelLibraries};
// Bert model
pub mod bert;
pub use bert::{BertModelConfig, BertParams};
// BLOOM model
pub mod bloom;
pub use bloom::{BloomModelConfig, BloomParams};
// GPT2 model
pub mod gpt2;
pub use gpt2::{GPT2ModelConfig, GPT2Params};
// GPT-J model
pub mod gptj;
pub use gptj::{GPTJModelConfig, GPTJParams};
// GPT-Neo model
pub mod gptneo;
pub use gptneo::{GPTNeoModelConfig, GPTNeoParams};
// Llama model
pub mod llama;
pub use llama::{LlamaModelConfig, LlamaParams};
// OPT model
pub mod opt;
pub use opt::{OPTModelConfig, OPTParams};
// T5 model
pub mod t5;
pub use t5::{T5ModelConfig, T5Params};