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