Struct tensorflow::ops::CumulativeLogsumexp
source · pub struct CumulativeLogsumexp { /* private fields */ }
Expand description
Builder for the CumulativeLogsumexp
operation.
Implementations§
source§impl CumulativeLogsumexp
impl CumulativeLogsumexp
sourcepub fn exclusive<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn exclusive<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the exclusive
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>>(
&self,
x: O0,
axis: O1,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>>( &self, x: O0, axis: O1, scope: &mut Scope ) -> Result<Operation>
Builds the CumulativeLogsumexp
operation.
sourcepub fn build_instance(
&self,
x: Output,
axis: Output,
scope: &mut Scope
) -> Result<CumulativeLogsumexpInst>
pub fn build_instance( &self, x: Output, axis: Output, scope: &mut Scope ) -> Result<CumulativeLogsumexpInst>
Builds a new instance of ‘CumulativeLogsumexp’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for CumulativeLogsumexp
impl Debug for CumulativeLogsumexp
source§impl Default for CumulativeLogsumexp
impl Default for CumulativeLogsumexp
source§fn default() -> CumulativeLogsumexp
fn default() -> CumulativeLogsumexp
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CumulativeLogsumexp
impl Send for CumulativeLogsumexp
impl Sync for CumulativeLogsumexp
impl Unpin for CumulativeLogsumexp
impl UnwindSafe for CumulativeLogsumexp
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