[][src]Struct tensorflow_proto::tensorflow::EmbeddingInfo

pub struct EmbeddingInfo {
    pub tensor_name: String,
    pub metadata_path: String,
    pub bookmarks_path: String,
    pub tensor_shape: Vec<u32>,
    pub sprite: Option<SpriteMetadata>,
    pub tensor_path: String,
}

Fields

tensor_name: Stringmetadata_path: Stringbookmarks_path: Stringtensor_shape: Vec<u32>

Shape of the 2D tensor [N x D]. If missing, it will be inferred from the model checkpoint.

sprite: Option<SpriteMetadata>tensor_path: String

Path to the TSV file holding the tensor values. If missing, the tensor is assumed to be stored in the model checkpoint.

Trait Implementations

impl Clone for EmbeddingInfo[src]

impl Debug for EmbeddingInfo[src]

impl Default for EmbeddingInfo[src]

impl Message for EmbeddingInfo[src]

impl PartialEq<EmbeddingInfo> for EmbeddingInfo[src]

impl StructuralPartialEq for EmbeddingInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.