[][src]Struct tensorflow_proto::tensorflow::tpu::tpu_embedding_output_layout::FeatureDescriptor

pub struct FeatureDescriptor {
    pub output_location: Vec<OutputLocation>,
}

Description of the output placement for one feature.

Fields

output_location: Vec<OutputLocation>

Typically, only one copy of each feature is used, but multiple are allowed and the same data will be copied to all of them (with the gradients summed in the backward pass).

Trait Implementations

impl Clone for FeatureDescriptor[src]

impl Debug for FeatureDescriptor[src]

impl Default for FeatureDescriptor[src]

impl Message for FeatureDescriptor[src]

impl PartialEq<FeatureDescriptor> for FeatureDescriptor[src]

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