pub struct FullDelta {
pub params: BTreeMap<String, Vec<f32>>,
}Expand description
Full-finetune diff: dense per-parameter delta tensors.
Fields§
§params: BTreeMap<String, Vec<f32>>Map from canonical parameter name to its dense delta.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FullDelta
impl<'de> Deserialize<'de> for FullDelta
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 StructuralPartialEq for FullDelta
Auto Trait Implementations§
impl Freeze for FullDelta
impl RefUnwindSafe for FullDelta
impl Send for FullDelta
impl Sync for FullDelta
impl Unpin for FullDelta
impl UnsafeUnpin for FullDelta
impl UnwindSafe for FullDelta
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