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