Struct tensorflow::eager::raw_ops::CTCGreedyDecoder
source · pub struct CTCGreedyDecoder { /* private fields */ }
Expand description
CTCGreedyDecoder
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/CTCGreedyDecoder
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 target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the `` attribute.
sourcepub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
inputs: &T0,
sequence_length: &T1
) -> Result<[TensorHandle<'a>; 4]>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>>( &self, ctx: &'a Context, inputs: &T0, sequence_length: &T1 ) -> Result<[TensorHandle<'a>; 4]>
Execute ctcgreedy_decoder.
Trait Implementations§
source§impl Clone for CTCGreedyDecoder
impl Clone for CTCGreedyDecoder
source§fn clone(&self) -> CTCGreedyDecoder
fn clone(&self) -> CTCGreedyDecoder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CTCGreedyDecoder
impl Debug for CTCGreedyDecoder
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