pub struct GGufSharder {
pub source_gguf_path: String,
}Expand description
Extracts the Ontological mapping and Lexicon from a raw GGUF file
Fields§
§source_gguf_path: StringImplementations§
Source§impl GGufSharder
impl GGufSharder
pub fn new(source_gguf_path: String) -> Self
Sourcepub fn extract_ontology_to_superblock(&self) -> QualiaSuperBlock
pub fn extract_ontology_to_superblock(&self) -> QualiaSuperBlock
Step 1: Ontological Extraction & Tokenizer Ingestion
Parses the GGUF header to extract vocabulary and metadata into a .q42 SuperBlock.
Sourcepub fn generate_bidx_pointer_map(&self) -> Vec<NQuin>
pub fn generate_bidx_pointer_map(&self) -> Vec<NQuin>
Step 2: The Pointer-Quin Map (.q42.bidx) Generates the Master Record map connecting N3 logic semantic rules to the exact 60-bit byte offsets in the massive GGUF tensor payload.
pub fn generate_bidx_pointer_map_with_flag( &self, modality_flag: u8, ) -> Vec<NQuin>
Sourcepub fn map_wordnet_synset(&self, synset_id: u64, byte_offset: u64) -> NQuin
pub fn map_wordnet_synset(&self, synset_id: u64, byte_offset: u64) -> NQuin
Step 3: WordNet Lexicon Integration Maps a discrete WordNet Synset ID to its dense tensor representation.
Auto Trait Implementations§
impl Freeze for GGufSharder
impl RefUnwindSafe for GGufSharder
impl Send for GGufSharder
impl Sync for GGufSharder
impl Unpin for GGufSharder
impl UnsafeUnpin for GGufSharder
impl UnwindSafe for GGufSharder
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more