Struct rust_bert::electra::ElectraConfig [−][src]
pub struct ElectraConfig {Show 19 fields
pub hidden_act: Activation,
pub attention_probs_dropout_prob: f64,
pub embedding_size: i64,
pub hidden_dropout_prob: f64,
pub hidden_size: i64,
pub initializer_range: f32,
pub layer_norm_eps: Option<f64>,
pub intermediate_size: i64,
pub max_position_embeddings: i64,
pub num_attention_heads: i64,
pub num_hidden_layers: i64,
pub type_vocab_size: i64,
pub vocab_size: i64,
pub pad_token_id: i64,
pub output_past: Option<bool>,
pub output_attentions: Option<bool>,
pub output_hidden_states: Option<bool>,
pub id2label: Option<HashMap<i64, String>>,
pub label2id: Option<HashMap<String, i64>>,
}Expand description
Electra model configuration
Defines the Electra model architecture (e.g. number of layers, hidden layer size, label mapping…)
Fields
attention_probs_dropout_prob: f64embedding_size: i64initializer_range: f32layer_norm_eps: Option<f64>intermediate_size: i64max_position_embeddings: i64num_attention_heads: i64type_vocab_size: i64vocab_size: i64pad_token_id: i64output_past: Option<bool>output_attentions: Option<bool>id2label: Option<HashMap<i64, String>>label2id: Option<HashMap<String, i64>>Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ElectraConfig
impl Send for ElectraConfig
impl Sync for ElectraConfig
impl Unpin for ElectraConfig
impl UnwindSafe for ElectraConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = T
Should always be Self
