Struct tensorflow::eager::raw_ops::RaggedCross
source · pub struct RaggedCross { /* private fields */ }
Expand description
RaggedCross
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/RaggedCross
Implementations§
source§impl RaggedCross
impl RaggedCross
sourcepub fn input_order<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn input_order<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the input_order
attribute.
sourcepub fn hashed_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn hashed_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the hashed_output
attribute.
sourcepub fn num_buckets<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn num_buckets<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the num_buckets
attribute.
sourcepub fn out_values_type<ArgType: Into<DataType>>(self, value: ArgType) -> Self
pub fn out_values_type<ArgType: Into<DataType>>(self, value: ArgType) -> Self
Sets the out_values_type
attribute.
sourcepub fn out_row_splits_type<ArgType: Into<DataType>>(
self,
value: ArgType
) -> Self
pub fn out_row_splits_type<ArgType: Into<DataType>>( self, value: ArgType ) -> Self
Sets the out_row_splits_type
attribute.
sourcepub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the `` attribute.
sourcepub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
ragged_values: &T0,
ragged_row_splits: &T1,
sparse_indices: &[&T2],
sparse_values: &T3,
sparse_shape: &[&T4],
dense_inputs: &T5
) -> Result<[TensorHandle<'a>; 2]>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>>( &self, ctx: &'a Context, ragged_values: &T0, ragged_row_splits: &T1, sparse_indices: &[&T2], sparse_values: &T3, sparse_shape: &[&T4], dense_inputs: &T5 ) -> Result<[TensorHandle<'a>; 2]>
Execute ragged_cross.
Trait Implementations§
source§impl Clone for RaggedCross
impl Clone for RaggedCross
source§fn clone(&self) -> RaggedCross
fn clone(&self) -> RaggedCross
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 RaggedCross
impl Debug for RaggedCross
Auto Trait Implementations§
impl RefUnwindSafe for RaggedCross
impl Send for RaggedCross
impl Sync for RaggedCross
impl Unpin for RaggedCross
impl UnwindSafe for RaggedCross
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