pub enum KgPairActivation {
LogFrequencyWeightedMean,
}Expand description
How a KG edge weight is computed from accumulated pair counts.
Variants§
LogFrequencyWeightedMean
(sum / count) * log10(count) when count > 1, else 0.
Implementations§
Trait Implementations§
Source§impl Clone for KgPairActivation
impl Clone for KgPairActivation
Source§fn clone(&self) -> KgPairActivation
fn clone(&self) -> KgPairActivation
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 moreSource§impl Debug for KgPairActivation
impl Debug for KgPairActivation
Source§impl Default for KgPairActivation
impl Default for KgPairActivation
Source§fn default() -> KgPairActivation
fn default() -> KgPairActivation
Returns the “default value” for a type. Read more
Source§impl PartialEq for KgPairActivation
impl PartialEq for KgPairActivation
Source§fn eq(&self, other: &KgPairActivation) -> bool
fn eq(&self, other: &KgPairActivation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for KgPairActivation
impl Eq for KgPairActivation
impl StructuralPartialEq for KgPairActivation
Auto Trait Implementations§
impl Freeze for KgPairActivation
impl RefUnwindSafe for KgPairActivation
impl Send for KgPairActivation
impl Sync for KgPairActivation
impl Unpin for KgPairActivation
impl UnsafeUnpin for KgPairActivation
impl UnwindSafe for KgPairActivation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.