pub struct FloretIndexer { /* private fields */ }
Expand description
floret subword indexer.
By default, floret does not use a separate word embedding matrix. Every n-gram and the full word is mapped to 1 to 4 hash functions.
Implementations§
Trait Implementations§
Source§impl Clone for FloretIndexer
impl Clone for FloretIndexer
Source§fn clone(&self) -> FloretIndexer
fn clone(&self) -> FloretIndexer
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 Debug for FloretIndexer
impl Debug for FloretIndexer
Source§impl Indexer for FloretIndexer
impl Indexer for FloretIndexer
Source§fn index_ngram(&self, ngram: &StrWithCharLen<'_>) -> NGramVec
fn index_ngram(&self, ngram: &StrWithCharLen<'_>) -> NGramVec
Map an n-gram to indices in the subword embedding matrix.
Source§fn upper_bound(&self) -> u64
fn upper_bound(&self) -> u64
Return the (exclusive) upper bound of this indexer.
Source§fn infallible() -> bool
fn infallible() -> bool
Indicates whether this Indexer never fails to produce an index.
Source§fn scope() -> IndicesScope
fn scope() -> IndicesScope
The scope of the indexer.
Source§impl PartialEq for FloretIndexer
impl PartialEq for FloretIndexer
impl Copy for FloretIndexer
impl Eq for FloretIndexer
impl StructuralPartialEq for FloretIndexer
Auto Trait Implementations§
impl Freeze for FloretIndexer
impl RefUnwindSafe for FloretIndexer
impl Send for FloretIndexer
impl Sync for FloretIndexer
impl Unpin for FloretIndexer
impl UnwindSafe for FloretIndexer
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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