pub struct BigDetRecord<B: Backend> {
pub stem: <Linear<B> as Module<B>>::Record,
pub blocks: <Vec<Linear<B>> as Module<B>>::Record,
pub box_head: <Linear<B> as Module<B>>::Record,
pub score_head: <Linear<B> as Module<B>>::Record,
pub max_boxes: <usize as Module<B>>::Record,
pub input_dim: <usize as Module<B>>::Record,
}Expand description
The record type for the module.
Fields§
§stem: <Linear<B> as Module<B>>::RecordThe module record associative type.
blocks: <Vec<Linear<B>> as Module<B>>::RecordThe module record associative type.
box_head: <Linear<B> as Module<B>>::RecordThe module record associative type.
score_head: <Linear<B> as Module<B>>::RecordThe module record associative type.
max_boxes: <usize as Module<B>>::RecordThe module record associative type.
input_dim: <usize as Module<B>>::RecordThe module record associative type.
Trait Implementations§
Source§impl<B: Backend> Record<B> for BigDetRecord<B>
impl<B: Backend> Record<B> for BigDetRecord<B>
Source§type Item<S: PrecisionSettings> = BigDetRecordItem<B, S>
type Item<S: PrecisionSettings> = BigDetRecordItem<B, S>
Type of the item that can be serialized and deserialized.
Auto Trait Implementations§
impl<B> !Freeze for BigDetRecord<B>
impl<B> !RefUnwindSafe for BigDetRecord<B>
impl<B> Send for BigDetRecord<B>
impl<B> !Sync for BigDetRecord<B>
impl<B> Unpin for BigDetRecord<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::Device: Unpin,
impl<B> !UnwindSafe for BigDetRecord<B>
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