Struct tensorflow::ops::EditDistanceInst
source · pub struct EditDistanceInst {
pub op: Operation,
}
Expand description
An instance of ‘EditDistance’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built EditDistance Operation in a Tensorflow graph.
Implementations§
source§impl EditDistanceInst
impl EditDistanceInst
sourcepub fn hypothesis_indices(&self) -> Input<'_>
pub fn hypothesis_indices(&self) -> Input<'_>
Returns the ‘hypothesis_indices’ Input of this ‘EditDistance’ operation.
sourcepub fn hypothesis_values(&self) -> Input<'_>
pub fn hypothesis_values(&self) -> Input<'_>
Returns the ‘hypothesis_values’ Input of this ‘EditDistance’ operation.
sourcepub fn hypothesis_shape(&self) -> Input<'_>
pub fn hypothesis_shape(&self) -> Input<'_>
Returns the ‘hypothesis_shape’ Input of this ‘EditDistance’ operation.
sourcepub fn truth_indices(&self) -> Input<'_>
pub fn truth_indices(&self) -> Input<'_>
Returns the ‘truth_indices’ Input of this ‘EditDistance’ operation.
sourcepub fn truth_values(&self) -> Input<'_>
pub fn truth_values(&self) -> Input<'_>
Returns the ‘truth_values’ Input of this ‘EditDistance’ operation.
sourcepub fn truth_shape(&self) -> Input<'_>
pub fn truth_shape(&self) -> Input<'_>
Returns the ‘truth_shape’ Input of this ‘EditDistance’ operation.
Trait Implementations§
source§impl Clone for EditDistanceInst
impl Clone for EditDistanceInst
source§fn clone(&self) -> EditDistanceInst
fn clone(&self) -> EditDistanceInst
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 EditDistanceInst
impl Debug for EditDistanceInst
source§impl From<EditDistanceInst> for Operation
impl From<EditDistanceInst> for Operation
source§fn from(inst: EditDistanceInst) -> Operation
fn from(inst: EditDistanceInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for EditDistanceInst
impl Send for EditDistanceInst
impl Sync for EditDistanceInst
impl Unpin for EditDistanceInst
impl UnwindSafe for EditDistanceInst
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