pub enum PostProcessorConfig {
Sequence {
processors: Vec<PostProcessorConfig>,
},
ByteLevel {
add_prefix_space: bool,
trim_offsets: bool,
use_regex: bool,
},
TemplateProcessing {
single: Value,
pair: Value,
special_tokens: Value,
},
BertProcessing {
sep: (String, u32),
cls: (String, u32),
},
RobertaProcessing {
sep: (String, u32),
cls: (String, u32),
trim_offsets: bool,
add_prefix_space: bool,
},
Other(Value),
}Expand description
Post-processor pipeline step from tokenizer.json.
Variants§
Sequence
Fields
§
processors: Vec<PostProcessorConfig>ByteLevel
TemplateProcessing
BertProcessing
RobertaProcessing
Other(Value)
Trait Implementations§
Source§impl Clone for PostProcessorConfig
impl Clone for PostProcessorConfig
Source§fn clone(&self) -> PostProcessorConfig
fn clone(&self) -> PostProcessorConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PostProcessorConfig
impl Debug for PostProcessorConfig
Source§impl<'de> Deserialize<'de> for PostProcessorConfig
impl<'de> Deserialize<'de> for PostProcessorConfig
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
Source§impl<'_enum> From<&'_enum PostProcessorConfig> for PostProcessorKind
impl<'_enum> From<&'_enum PostProcessorConfig> for PostProcessorKind
Source§fn from(val: &'_enum PostProcessorConfig) -> PostProcessorKind
fn from(val: &'_enum PostProcessorConfig) -> PostProcessorKind
Converts to this type from the input type.
Source§impl From<PostProcessorConfig> for PostProcessorKind
impl From<PostProcessorConfig> for PostProcessorKind
Source§fn from(val: PostProcessorConfig) -> PostProcessorKind
fn from(val: PostProcessorConfig) -> PostProcessorKind
Converts to this type from the input type.
Source§impl IntoDiscriminant for PostProcessorConfig
impl IntoDiscriminant for PostProcessorConfig
Source§type Discriminant = PostProcessorKind
type Discriminant = PostProcessorKind
Enum listing the same variants as this enum but without any data fields
fn discriminant(&self) -> Self::Discriminant
Auto Trait Implementations§
impl Freeze for PostProcessorConfig
impl RefUnwindSafe for PostProcessorConfig
impl Send for PostProcessorConfig
impl Sync for PostProcessorConfig
impl Unpin for PostProcessorConfig
impl UnsafeUnpin for PostProcessorConfig
impl UnwindSafe for PostProcessorConfig
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> 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