pub enum DeepFusionAggregation {
Mean,
Sum,
Max,
}Expand description
Neighborhood reduction used by a graph-aware deep-fusion propagation layer. This lives in the algebra crate so the IR does not depend on the ML runtime crate.
Variants§
Trait Implementations§
Source§impl Clone for DeepFusionAggregation
impl Clone for DeepFusionAggregation
Source§fn clone(&self) -> DeepFusionAggregation
fn clone(&self) -> DeepFusionAggregation
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 DeepFusionAggregation
Source§impl Debug for DeepFusionAggregation
impl Debug for DeepFusionAggregation
impl Eq for DeepFusionAggregation
Source§impl PartialEq for DeepFusionAggregation
impl PartialEq for DeepFusionAggregation
impl StructuralPartialEq for DeepFusionAggregation
Auto Trait Implementations§
impl Freeze for DeepFusionAggregation
impl RefUnwindSafe for DeepFusionAggregation
impl Send for DeepFusionAggregation
impl Sync for DeepFusionAggregation
impl Unpin for DeepFusionAggregation
impl UnsafeUnpin for DeepFusionAggregation
impl UnwindSafe for DeepFusionAggregation
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