pub struct RvqCodes {
pub frames: Vec<Vec<u32>>,
pub num_quantizers: usize,
}Expand description
Discrete residual-vector-quantizer codes in frame-major layout:
frames[t][q] is the codebook index at time step t for quantizer q.
This is the representation rlx-mimi (MimiCodes) and rlx-dac (DacCodes)
already use internally; RvqCodes is the neutral exchange type.
Fields§
§frames: Vec<Vec<u32>>[num_frames][num_quantizers] codebook indices.
num_quantizers: usizeQuantizers (codebooks) per frame.
Implementations§
Source§impl RvqCodes
impl RvqCodes
pub fn new(frames: Vec<Vec<u32>>, num_quantizers: usize) -> Self
pub fn num_frames(&self) -> usize
pub fn is_empty(&self) -> bool
Sourcepub fn to_quantizer_major(&self) -> Vec<Vec<u32>>
pub fn to_quantizer_major(&self) -> Vec<Vec<u32>>
Transpose to quantizer-major [num_quantizers][num_frames] (the layout
HF MimiModel.encode and the DAC reference use).
Sourcepub fn from_quantizer_major(rows: &[Vec<u32>]) -> Self
pub fn from_quantizer_major(rows: &[Vec<u32>]) -> Self
Build from quantizer-major [num_quantizers][num_frames] rows.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RvqCodes
impl<'de> Deserialize<'de> for RvqCodes
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
impl Eq for RvqCodes
impl StructuralPartialEq for RvqCodes
Auto Trait Implementations§
impl Freeze for RvqCodes
impl RefUnwindSafe for RvqCodes
impl Send for RvqCodes
impl Sync for RvqCodes
impl Unpin for RvqCodes
impl UnsafeUnpin for RvqCodes
impl UnwindSafe for RvqCodes
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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