Struct burn_core::nn::GateControllerRecord
source · pub struct GateControllerRecord<B: Backend> {
pub input_transform: <Linear<B> as Module<B>>::Record,
pub hidden_transform: <Linear<B> as Module<B>>::Record,
}Expand description
The record type for the module.
Fields§
§input_transform: <Linear<B> as Module<B>>::RecordThe module record associative type.
The module record associative type.
Trait Implementations§
source§impl<B: Backend> Record<B> for GateControllerRecord<B>
impl<B: Backend> Record<B> for GateControllerRecord<B>
§type Item<S: PrecisionSettings> = GateControllerRecordItem<B, S>
type Item<S: PrecisionSettings> = GateControllerRecordItem<B, S>
Type of the item that can be serialized and deserialized.
Auto Trait Implementations§
impl<B> RefUnwindSafe for GateControllerRecord<B>where
<B as Backend>::FloatTensorPrimitive<1>: RefUnwindSafe,
<B as Backend>::FloatTensorPrimitive<2>: RefUnwindSafe,
impl<B> Send for GateControllerRecord<B>
impl<B> Sync for GateControllerRecord<B>
impl<B> Unpin for GateControllerRecord<B>where
<B as Backend>::FloatTensorPrimitive<1>: Unpin,
<B as Backend>::FloatTensorPrimitive<2>: Unpin,
impl<B> UnwindSafe for GateControllerRecord<B>where
<B as Backend>::FloatTensorPrimitive<1>: UnwindSafe,
<B as Backend>::FloatTensorPrimitive<2>: UnwindSafe,
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