Skip to main content

ConsolidationOp

Enum ConsolidationOp 

Source
pub enum ConsolidationOp {
    DeduplicateFacts {
        threshold: f32,
    },
    PruneOrphans {
        max_decay: f32,
    },
    LinkContradictions {
        threshold: f32,
    },
    CompressEpisodes {
        group_size: u32,
    },
    PromoteInferences {
        min_access: u32,
        min_confidence: f32,
    },
}
Expand description

A single consolidation operation to run.

Variants§

§

DeduplicateFacts

Merge near-duplicate Fact nodes. threshold is the minimum cosine similarity to consider two facts duplicates (typically 0.90 – 0.98).

Fields

§threshold: f32
§

PruneOrphans

Report orphaned nodes that could be pruned. max_decay is the ceiling on decay_score for a node to be considered orphaned (e.g. 0.1).

V1: dry-run only – the consolidation method will never remove nodes, only report them.

Fields

§max_decay: f32
§

LinkContradictions

Discover contradictory pairs and link them with Contradicts edges. threshold is the minimum cosine similarity between two Fact/Inference nodes for them to be candidates (the method additionally checks for negation words).

Fields

§threshold: f32
§

CompressEpisodes

Report groups of Episode nodes that could be compressed. group_size is the minimum number of contiguous episodes to consider compressible.

V1: dry-run only – the consolidation method will never compress episodes, only report them.

Fields

§group_size: u32
§

PromoteInferences

Promote well-established Inference nodes to Fact. Requires access_count >= min_access and confidence >= min_confidence.

Fields

§min_access: u32
§min_confidence: f32

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.