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