pub struct ProphetNetConfig {Show 32 fields
pub activation_function: Activation,
pub activation_dropout: f64,
pub attention_dropout: f64,
pub decoder_ffn_dim: i64,
pub decoder_start_token_id: Option<i64>,
pub disable_ngram_loss: bool,
pub dropout: f64,
pub encoder_ffn_dim: i64,
pub eps: f64,
pub hidden_size: i64,
pub init_std: f64,
pub is_encoder_decoder: bool,
pub max_position_embeddings: i64,
pub bos_token_id: i64,
pub eos_token_id: i64,
pub forced_bos_token_id: Option<i64>,
pub forced_eos_token_id: Option<i64>,
pub ngram: i64,
pub id2label: Option<HashMap<i64, String>>,
pub label2id: Option<HashMap<String, i64>>,
pub num_buckets: i64,
pub num_decoder_attention_heads: i64,
pub num_decoder_layers: i64,
pub num_encoder_attention_heads: i64,
pub num_encoder_layers: i64,
pub output_past: Option<bool>,
pub pad_token_id: i64,
pub relative_max_distance: i64,
pub vocab_size: i64,
pub output_attentions: Option<bool>,
pub output_hidden_states: Option<bool>,
pub add_cross_attention: Option<bool>,
}
Expand description
§ProphetNet model configuration
Defines the ProphetNet model architecture (e.g. number of layers, hidden layer size, label mapping…)
Fields§
§activation_function: Activation
§activation_dropout: f64
§attention_dropout: f64
§decoder_ffn_dim: i64
§decoder_start_token_id: Option<i64>
§disable_ngram_loss: bool
§dropout: f64
§encoder_ffn_dim: i64
§eps: f64
§init_std: f64
§is_encoder_decoder: bool
§max_position_embeddings: i64
§bos_token_id: i64
§eos_token_id: i64
§forced_bos_token_id: Option<i64>
§forced_eos_token_id: Option<i64>
§ngram: i64
§id2label: Option<HashMap<i64, String>>
§label2id: Option<HashMap<String, i64>>
§num_buckets: i64
§num_decoder_attention_heads: i64
§num_decoder_layers: i64
§num_encoder_attention_heads: i64
§num_encoder_layers: i64
§output_past: Option<bool>
§pad_token_id: i64
§relative_max_distance: i64
§vocab_size: i64
§output_attentions: Option<bool>
§add_cross_attention: Option<bool>
Trait Implementations§
Source§impl Clone for ProphetNetConfig
impl Clone for ProphetNetConfig
Source§fn clone(&self) -> ProphetNetConfig
fn clone(&self) -> ProphetNetConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Config for ProphetNetConfig
impl Config for ProphetNetConfig
Source§impl Debug for ProphetNetConfig
impl Debug for ProphetNetConfig
Source§impl Default for ProphetNetConfig
impl Default for ProphetNetConfig
Source§impl<'de> Deserialize<'de> for ProphetNetConfig
impl<'de> Deserialize<'de> for ProphetNetConfig
Source§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 Freeze for ProphetNetConfig
impl RefUnwindSafe for ProphetNetConfig
impl Send for ProphetNetConfig
impl Sync for ProphetNetConfig
impl Unpin for ProphetNetConfig
impl UnwindSafe for ProphetNetConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more