Struct burn::tensor::quantization::QuantizationParameters
pub struct QuantizationParameters<B>where
B: Backend,{
pub scale: Tensor<B, 1>,
pub offset: Option<Tensor<B, 1, Int>>,
}
Expand description
The quantization parameters.
Fields§
§scale: Tensor<B, 1>
The scaling factor.
offset: Option<Tensor<B, 1, Int>>
The zero-point offset.
Trait Implementations§
§impl<B> Clone for QuantizationParameters<B>
impl<B> Clone for QuantizationParameters<B>
§fn clone(&self) -> QuantizationParameters<B>
fn clone(&self) -> QuantizationParameters<B>
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 more§impl<B> Debug for QuantizationParameters<B>
impl<B> Debug for QuantizationParameters<B>
§impl<B> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>where
B: Backend,
impl<B> From<QuantizationParameters<B>> for QuantizationParametersPrimitive<B>where
B: Backend,
§fn from(value: QuantizationParameters<B>) -> QuantizationParametersPrimitive<B>
fn from(value: QuantizationParameters<B>) -> QuantizationParametersPrimitive<B>
Converts to this type from the input type.
Auto Trait Implementations§
impl<B> Freeze for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: Freeze,
<B as Backend>::QuantizedTensorPrimitive: Freeze,
<B as Backend>::IntTensorPrimitive: Freeze,
impl<B> RefUnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: RefUnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: RefUnwindSafe,
<B as Backend>::IntTensorPrimitive: RefUnwindSafe,
impl<B> Send for QuantizationParameters<B>
impl<B> Sync for QuantizationParameters<B>
impl<B> Unpin for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::IntTensorPrimitive: Unpin,
impl<B> UnwindSafe for QuantizationParameters<B>where
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: UnwindSafe,
<B as Backend>::IntTensorPrimitive: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more