Struct tensorflow::ops::CTCBeamSearchDecoderInst
source · pub struct CTCBeamSearchDecoderInst {
pub op: Operation,
}
Expand description
An instance of ‘CTCBeamSearchDecoder’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built CTCBeamSearchDecoder Operation in a Tensorflow graph.
Implementations§
source§impl CTCBeamSearchDecoderInst
impl CTCBeamSearchDecoderInst
sourcepub fn decoded_indices(&self) -> Result<Vec<Output>>
pub fn decoded_indices(&self) -> Result<Vec<Output>>
Returns a Vector of decoded_indices for ‘decoded_indices’ Output of this CTCBeamSearchDecoder operation.
sourcepub fn decoded_values(&self) -> Result<Vec<Output>>
pub fn decoded_values(&self) -> Result<Vec<Output>>
Returns a Vector of decoded_values for ‘decoded_values’ Output of this CTCBeamSearchDecoder operation.
sourcepub fn decoded_shape(&self) -> Result<Vec<Output>>
pub fn decoded_shape(&self) -> Result<Vec<Output>>
Returns a Vector of decoded_shape for ‘decoded_shape’ Output of this CTCBeamSearchDecoder operation.
sourcepub fn log_probability(&self) -> Result<Output>
pub fn log_probability(&self) -> Result<Output>
Returns the ‘log_probability’ Output of this ‘CTCBeamSearchDecoder’ operation.
sourcepub fn inputs(&self) -> Input<'_>
pub fn inputs(&self) -> Input<'_>
Returns the ‘inputs’ Input of this ‘CTCBeamSearchDecoder’ operation.
sourcepub fn sequence_length(&self) -> Input<'_>
pub fn sequence_length(&self) -> Input<'_>
Returns the ‘sequence_length’ Input of this ‘CTCBeamSearchDecoder’ operation.
Trait Implementations§
source§impl Clone for CTCBeamSearchDecoderInst
impl Clone for CTCBeamSearchDecoderInst
source§fn clone(&self) -> CTCBeamSearchDecoderInst
fn clone(&self) -> CTCBeamSearchDecoderInst
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 CTCBeamSearchDecoderInst
impl Debug for CTCBeamSearchDecoderInst
source§impl From<CTCBeamSearchDecoderInst> for Operation
impl From<CTCBeamSearchDecoderInst> for Operation
source§fn from(inst: CTCBeamSearchDecoderInst) -> Operation
fn from(inst: CTCBeamSearchDecoderInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for CTCBeamSearchDecoderInst
impl Send for CTCBeamSearchDecoderInst
impl Sync for CTCBeamSearchDecoderInst
impl Unpin for CTCBeamSearchDecoderInst
impl UnwindSafe for CTCBeamSearchDecoderInst
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