Struct tensorflow::ops::Concat
source · pub struct Concat { /* private fields */ }
Expand description
Builder for the Concat
operation.
Implementations§
source§impl Concat
impl Concat
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,
concat_dim: O0,
values: O1,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>>( &self, concat_dim: O0, values: O1, scope: &mut Scope ) -> Result<Operation>
Builds the Concat
operation.
sourcepub fn build_instance(
&self,
concat_dim: Output,
values: Vec<Output>,
scope: &mut Scope
) -> Result<ConcatInst>
pub fn build_instance( &self, concat_dim: Output, values: Vec<Output>, scope: &mut Scope ) -> Result<ConcatInst>
Builds a new instance of ‘Concat’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Concat
impl Send for Concat
impl Sync for Concat
impl Unpin for Concat
impl UnwindSafe for Concat
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