burn::tensor::quantization

Type Alias QuantizationParameters

pub type QuantizationParameters<B> = QParams<Tensor<B, 1>, Tensor<B, 1, Int>>;
Expand description

The tensor quantization parameters.

Aliased Type§

struct QuantizationParameters<B> {
    pub scale: Tensor<B, 1>,
    pub offset: Option<Tensor<B, 1, Int>>,
}

Fields§

§scale: Tensor<B, 1>

The scaling factor.

§offset: Option<Tensor<B, 1, Int>>

The zero-point offset.

Trait Implementations

§

impl<S, O> Clone for QParams<S, O>
where S: Clone, O: Clone,

§

fn clone(&self) -> QParams<S, O>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<S, O> Debug for QParams<S, O>
where S: Debug, O: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more