pub enum TimeDummyEncoding {
IntegerIndex,
OneHot,
}Expand description
How the synthetic time dummy is embedded in the pooled frame.
Variants§
IntegerIndex
Single integer raw-time index column (legacy opt-in).
OneHot
One-hot over distinct raw times in the pooled effective rows (T−1 columns;
last level is the reference category — same convention as space dummies).
Paper-faithful Günther embedding (up to the dropped reference column).
Trait Implementations§
Source§impl Clone for TimeDummyEncoding
impl Clone for TimeDummyEncoding
Source§fn clone(&self) -> TimeDummyEncoding
fn clone(&self) -> TimeDummyEncoding
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 moreimpl Copy for TimeDummyEncoding
Source§impl Debug for TimeDummyEncoding
impl Debug for TimeDummyEncoding
Source§impl Default for TimeDummyEncoding
impl Default for TimeDummyEncoding
Source§fn default() -> TimeDummyEncoding
fn default() -> TimeDummyEncoding
Returns the “default value” for a type. Read more
impl Eq for TimeDummyEncoding
Source§impl Hash for TimeDummyEncoding
impl Hash for TimeDummyEncoding
Source§impl PartialEq for TimeDummyEncoding
impl PartialEq for TimeDummyEncoding
impl StructuralPartialEq for TimeDummyEncoding
Auto Trait Implementations§
impl Freeze for TimeDummyEncoding
impl RefUnwindSafe for TimeDummyEncoding
impl Send for TimeDummyEncoding
impl Sync for TimeDummyEncoding
impl Unpin for TimeDummyEncoding
impl UnsafeUnpin for TimeDummyEncoding
impl UnwindSafe for TimeDummyEncoding
Blanket Implementations§
impl<T> Allocation for T
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