[][src]Struct tract_tensorflow::tfpb::tensorflow::tensor_info::CooSparse

pub struct CooSparse {
    pub values_tensor_name: String,
    pub indices_tensor_name: String,
    pub dense_shape_tensor_name: String,
}

For sparse tensors, The COO encoding stores a triple of values, indices, and shape.

Fields

values_tensor_name: String

The shape of the values Tensor is [?]. Its dtype must be the dtype of the SparseTensor as a whole, given in the enclosing TensorInfo.

indices_tensor_name: String

The indices Tensor must have dtype int64 and shape [?, ?].

dense_shape_tensor_name: String

The dynamic logical shape represented by the SparseTensor is recorded in the Tensor referenced here. It must have dtype int64 and shape [?].

Trait Implementations

impl Clone for CooSparse[src]

impl Debug for CooSparse[src]

impl Default for CooSparse[src]

impl Message for CooSparse[src]

impl PartialEq<CooSparse> for CooSparse[src]

impl StructuralPartialEq for CooSparse[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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> DynClone for T where
    T: Clone
[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.