pub struct DetectOutput {
pub boxes: SymTensor,
pub scores: SymTensor,
}Expand description
Output of the YOLO26 Detect head (training mode).
Fields§
§boxes: SymTensorRaw box predictions, concatenated across all FPN scales: (B, 4·A). A = H0·W0 + H1·W1 + H2·W2 total anchors. reg_max = 1.
scores: SymTensorRaw class logits, concatenated across all FPN scales: (B, nc·A).
Auto Trait Implementations§
impl Freeze for DetectOutput
impl !RefUnwindSafe for DetectOutput
impl !Send for DetectOutput
impl !Sync for DetectOutput
impl Unpin for DetectOutput
impl UnsafeUnpin for DetectOutput
impl !UnwindSafe for DetectOutput
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