pub struct QuantizedWeights { /* private fields */ }Expand description
Quantized weight storage for reduced memory usage.
Stores neural network weights in a compressed format to reduce memory footprint while maintaining accuracy.
Implementations§
Trait Implementations§
Source§impl Clone for QuantizedWeights
impl Clone for QuantizedWeights
Source§fn clone(&self) -> QuantizedWeights
fn clone(&self) -> QuantizedWeights
Returns a duplicate 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 QuantizedWeights
impl Debug for QuantizedWeights
Source§impl<'de> Deserialize<'de> for QuantizedWeights
impl<'de> Deserialize<'de> for QuantizedWeights
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QuantizedWeights
impl RefUnwindSafe for QuantizedWeights
impl Send for QuantizedWeights
impl Sync for QuantizedWeights
impl Unpin for QuantizedWeights
impl UnwindSafe for QuantizedWeights
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