trustformers-models 0.1.1

Model implementations for TrustformeRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod model;
pub mod tasks;

pub use config::DebertaConfig;
pub use model::{
    DebertaAttention, DebertaDisentangledSelfAttention, DebertaEmbeddings, DebertaEncoder,
    DebertaForMaskedLM, DebertaForSequenceClassification, DebertaLayer, DebertaModel,
};
pub use tasks::{
    DebertaForMultipleChoice, DebertaForQuestionAnswering, DebertaForTokenClassification,
};