Struct tensorflow::eager::raw_ops::QuantizedInstanceNorm
source · pub struct QuantizedInstanceNorm { /* private fields */ }
Expand description
QuantizedInstanceNorm
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/QuantizedInstanceNorm
Implementations§
source§impl QuantizedInstanceNorm
impl QuantizedInstanceNorm
sourcepub fn output_range_given<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn output_range_given<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the output_range_given
attribute.
sourcepub fn given_y_min<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn given_y_min<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the given_y_min
attribute.
sourcepub fn given_y_max<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn given_y_max<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the given_y_max
attribute.
sourcepub fn variance_epsilon<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn variance_epsilon<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the variance_epsilon
attribute.
sourcepub fn min_separation<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn min_separation<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the min_separation
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>, T2: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
x: &T0,
x_min: &T1,
x_max: &T2
) -> Result<[TensorHandle<'a>; 3]>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>( &self, ctx: &'a Context, x: &T0, x_min: &T1, x_max: &T2 ) -> Result<[TensorHandle<'a>; 3]>
Execute quantized_instance_norm.
Trait Implementations§
source§impl Clone for QuantizedInstanceNorm
impl Clone for QuantizedInstanceNorm
source§fn clone(&self) -> QuantizedInstanceNorm
fn clone(&self) -> QuantizedInstanceNorm
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 QuantizedInstanceNorm
impl Debug for QuantizedInstanceNorm
Auto Trait Implementations§
impl RefUnwindSafe for QuantizedInstanceNorm
impl Send for QuantizedInstanceNorm
impl Sync for QuantizedInstanceNorm
impl Unpin for QuantizedInstanceNorm
impl UnwindSafe for QuantizedInstanceNorm
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