[][src]Struct tensorflow_proto::tensorflow::tpu::tpu_embedding_configuration::TableDescriptor

pub struct TableDescriptor {
    pub name: String,
    pub vocabulary_size: i32,
    pub dimension: i32,
    pub num_features: i32,
    pub optimization_parameters: Option<OptimizationParameters>,
}

Description of the various embedding tables.

Fields

name: String

Name of the table.

vocabulary_size: i32

Size of the vocabulary (i.e., number of rows) in the table.

dimension: i32

The embedding dimension (i.e., the width of the embedding table).

num_features: i32

Number of features mapped to this table.

optimization_parameters: Option<OptimizationParameters>

Details of the learning algorithm used to update the embedding parameters.

Trait Implementations

impl Clone for TableDescriptor[src]

impl Debug for TableDescriptor[src]

impl Default for TableDescriptor[src]

impl Message for TableDescriptor[src]

impl PartialEq<TableDescriptor> for TableDescriptor[src]

impl StructuralPartialEq for TableDescriptor[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.