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