Enum rust_bert::pipelines::common::ConfigOption
source · pub enum ConfigOption {
Show 24 variants
Bart(BartConfig),
Bert(BertConfig),
DistilBert(DistilBertConfig),
Deberta(DebertaConfig),
DebertaV2(DebertaV2Config),
Electra(ElectraConfig),
Marian(MarianConfig),
MobileBert(MobileBertConfig),
OpenAiGpt(OpenAiGptConfig),
T5(T5Config),
LongT5(LongT5Config),
Albert(AlbertConfig),
XLNet(XLNetConfig),
GPT2(Gpt2Config),
GPTJ(GptJConfig),
Reformer(ReformerConfig),
Roberta(RobertaConfig),
ProphetNet(ProphetNetConfig),
Longformer(LongformerConfig),
Pegasus(PegasusConfig),
GPTNeo(GptNeoConfig),
MBart(MBartConfig),
M2M100(M2M100Config),
FNet(FNetConfig),
}
Expand description
Variants§
Bart(BartConfig)
Bart configuration
Bert(BertConfig)
Bert configuration
DistilBert(DistilBertConfig)
DistilBert configuration
Deberta(DebertaConfig)
DeBERTa configuration
DebertaV2(DebertaV2Config)
DeBERTa V2 configuration
Electra(ElectraConfig)
Electra configuration
Marian(MarianConfig)
Marian configuration
MobileBert(MobileBertConfig)
MobileBert configuration
OpenAiGpt(OpenAiGptConfig)
OpenAI GPT configuration
T5(T5Config)
T5 configuration
LongT5(LongT5Config)
LongT5 configuration
Albert(AlbertConfig)
Albert configuration
XLNet(XLNetConfig)
XLNet configuration
GPT2(Gpt2Config)
GPT2 configuration
GPTJ(GptJConfig)
GPT-J configuration
Reformer(ReformerConfig)
Reformer configuration
Roberta(RobertaConfig)
RoBERTa configuration
ProphetNet(ProphetNetConfig)
ProphetNet configuration
Longformer(LongformerConfig)
Longformer configuration
Pegasus(PegasusConfig)
Pegasus configuration
GPTNeo(GptNeoConfig)
GPT-Neo configuration
MBart(MBartConfig)
MBart configuration
M2M100(M2M100Config)
M2M100 configuration
FNet(FNetConfig)
FNet configuration
Implementations§
source§impl ConfigOption
impl ConfigOption
sourcepub fn from_file<P: AsRef<Path>>(model_type: ModelType, path: P) -> Self
pub fn from_file<P: AsRef<Path>>(model_type: ModelType, path: P) -> Self
Interface method to load a configuration from file
pub fn get_label_mapping(&self) -> &HashMap<i64, String>
pub fn get_max_len(&self) -> Option<i64>
pub fn get_vocab_size(&self) -> i64
pub fn get_decoder_start_token_id(&self) -> Option<i64>
pub fn get_forced_bos_token_id(&self) -> Option<i64>
pub fn get_forced_eos_token_id(&self) -> Option<i64>
Trait Implementations§
source§impl TryFrom<&ConfigOption> for AlbertConfig
impl TryFrom<&ConfigOption> for AlbertConfig
§type Error = RustBertError
type Error = RustBertError
The type returned in the event of a conversion error.
source§impl TryFrom<&ConfigOption> for BertConfig
impl TryFrom<&ConfigOption> for BertConfig
§type Error = RustBertError
type Error = RustBertError
The type returned in the event of a conversion error.
source§impl TryFrom<&ConfigOption> for DistilBertConfig
impl TryFrom<&ConfigOption> for DistilBertConfig
§type Error = RustBertError
type Error = RustBertError
The type returned in the event of a conversion error.
source§impl TryFrom<&ConfigOption> for T5Config
impl TryFrom<&ConfigOption> for T5Config
§type Error = RustBertError
type Error = RustBertError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl RefUnwindSafe for ConfigOption
impl Send for ConfigOption
impl Sync for ConfigOption
impl Unpin for ConfigOption
impl UnwindSafe for ConfigOption
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