Struct tensorflow::ops::RaggedCrossInst
source · pub struct RaggedCrossInst {
pub op: Operation,
}
Expand description
An instance of ‘RaggedCross’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built RaggedCross Operation in a Tensorflow graph.
Implementations§
source§impl RaggedCrossInst
impl RaggedCrossInst
sourcepub fn output_values(&self) -> Output
pub fn output_values(&self) -> Output
Returns the ‘output_values’ Output of this ‘RaggedCross’ operation.
sourcepub fn output_row_splits(&self) -> Output
pub fn output_row_splits(&self) -> Output
Returns the ‘output_row_splits’ Output of this ‘RaggedCross’ operation.
sourcepub fn ragged_values(&self) -> Input<'_>
pub fn ragged_values(&self) -> Input<'_>
Returns the ‘ragged_values’ Input of this ‘RaggedCross’ operation.
sourcepub fn ragged_row_splits(&self) -> Input<'_>
pub fn ragged_row_splits(&self) -> Input<'_>
Returns the ‘ragged_row_splits’ Input of this ‘RaggedCross’ operation.
sourcepub fn sparse_indices(&self) -> Result<Vec<Input<'_>>>
pub fn sparse_indices(&self) -> Result<Vec<Input<'_>>>
Returns a Vector of sparse_indices for ‘sparse_indices’ Input of this RaggedCross operation.
sourcepub fn sparse_values(&self) -> Result<Input<'_>>
pub fn sparse_values(&self) -> Result<Input<'_>>
Returns the ‘sparse_values’ Input of this ‘RaggedCross’ operation.
sourcepub fn sparse_shape(&self) -> Result<Vec<Input<'_>>>
pub fn sparse_shape(&self) -> Result<Vec<Input<'_>>>
Returns a Vector of sparse_shape for ‘sparse_shape’ Input of this RaggedCross operation.
sourcepub fn dense_inputs(&self) -> Result<Input<'_>>
pub fn dense_inputs(&self) -> Result<Input<'_>>
Returns the ‘dense_inputs’ Input of this ‘RaggedCross’ operation.
Trait Implementations§
source§impl Clone for RaggedCrossInst
impl Clone for RaggedCrossInst
source§fn clone(&self) -> RaggedCrossInst
fn clone(&self) -> RaggedCrossInst
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 RaggedCrossInst
impl Debug for RaggedCrossInst
source§impl From<RaggedCrossInst> for Operation
impl From<RaggedCrossInst> for Operation
source§fn from(inst: RaggedCrossInst) -> Operation
fn from(inst: RaggedCrossInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for RaggedCrossInst
impl Send for RaggedCrossInst
impl Sync for RaggedCrossInst
impl Unpin for RaggedCrossInst
impl UnwindSafe for RaggedCrossInst
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