pub struct Yolo26Config {
pub depth: f32,
pub width: f32,
pub mc: usize,
}Expand description
Per-variant scaling parameters derived from the yaml model definition.
Fields§
§depth: f32Depth multiplier, scaling block repeat counts.
width: f32Width multiplier, scaling channel counts.
mc: usizeMaximum channel count cap.
Trait Implementations§
Source§impl Clone for Yolo26Config
impl Clone for Yolo26Config
Source§fn clone(&self) -> Yolo26Config
fn clone(&self) -> Yolo26Config
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Yolo26Config
impl Debug for Yolo26Config
impl Copy for Yolo26Config
Auto Trait Implementations§
impl Freeze for Yolo26Config
impl RefUnwindSafe for Yolo26Config
impl Send for Yolo26Config
impl Sync for Yolo26Config
impl Unpin for Yolo26Config
impl UnsafeUnpin for Yolo26Config
impl UnwindSafe for Yolo26Config
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