Struct tensorflow::ops::SparseToDenseInst
source · pub struct SparseToDenseInst {
pub op: Operation,
}
Expand description
An instance of ‘SparseToDense’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built SparseToDense Operation in a Tensorflow graph.
Implementations§
source§impl SparseToDenseInst
impl SparseToDenseInst
sourcepub fn sparse_indices(&self) -> Input<'_>
pub fn sparse_indices(&self) -> Input<'_>
Returns the ‘sparse_indices’ Input of this ‘SparseToDense’ operation.
sourcepub fn output_shape(&self) -> Input<'_>
pub fn output_shape(&self) -> Input<'_>
Returns the ‘output_shape’ Input of this ‘SparseToDense’ operation.
sourcepub fn sparse_values(&self) -> Input<'_>
pub fn sparse_values(&self) -> Input<'_>
Returns the ‘sparse_values’ Input of this ‘SparseToDense’ operation.
sourcepub fn default_value(&self) -> Input<'_>
pub fn default_value(&self) -> Input<'_>
Returns the ‘default_value’ Input of this ‘SparseToDense’ operation.
Trait Implementations§
source§impl Clone for SparseToDenseInst
impl Clone for SparseToDenseInst
source§fn clone(&self) -> SparseToDenseInst
fn clone(&self) -> SparseToDenseInst
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SparseToDenseInst
impl Debug for SparseToDenseInst
source§impl From<SparseToDenseInst> for Operation
impl From<SparseToDenseInst> for Operation
source§fn from(inst: SparseToDenseInst) -> Operation
fn from(inst: SparseToDenseInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SparseToDenseInst
impl Send for SparseToDenseInst
impl Sync for SparseToDenseInst
impl Unpin for SparseToDenseInst
impl UnwindSafe for SparseToDenseInst
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more