[][src]Enum rust2vec::vocab::VocabWrap

pub enum VocabWrap {
    SimpleVocab(SimpleVocab),
    SubwordVocab(SubwordVocab),
}

Vocabulary types wrapper.

This crate makes it possible to create fine-grained embedding types, such as Embeddings<SimpleVocab, NdArray> or Embeddings<SubwordVocab, QuantizedArray>. However, in some cases it is more pleasant to have a single type that covers all vocabulary and storage types. VocabWrap and StorageWrap wrap all the vocabularies and storage types known to this crate such that the type Embeddings<VocabWrap, StorageWrap> covers all variations.

Variants

SimpleVocab(SimpleVocab)SubwordVocab(SubwordVocab)

Trait Implementations

impl Vocab for VocabWrap[src]

fn len(&self) -> usize[src]

Get the vocabulary size.

fn words(&self) -> &[String][src]

Get the words in the vocabulary.

impl From<SimpleVocab> for VocabWrap[src]

impl From<SubwordVocab> for VocabWrap[src]

impl Clone for VocabWrap[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VocabWrap[src]

Auto Trait Implementations

impl Send for VocabWrap

impl Sync for VocabWrap

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.