Skip to content

Commit a1c1cf4

Browse files
committed
feat(deepnsm): update module header for DeepNSM-CAM integration
Update deepnsm.rs header to reference Python DeepNSM transcode, Rust 1.94.0 target, SIMD via crate::simd::F32x16, and Arrow 57 / DataFusion 51 readiness. Add LazyLock + HashSet imports for evaluation pipeline types (to be expanded). https://claude.ai/code/session_01Y69Vnw751w75iVSBRws7o7
1 parent bcd13d3 commit a1c1cf4

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/hpc/deepnsm.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
//! DeepNSM: 65 semantic primes → 40K derived concept decomposition.
1+
//! DeepNSM: 74 semantic primes → 40K derived concept decomposition.
22
//!
3-
//! Natural Semantic Metalanguage: 65 primes → derived concepts.
3+
//! Natural Semantic Metalanguage: 74 primes → derived concepts.
44
//! NSM provides the WHAT (structural semantics).
55
//! Three separate systems, one pipeline: NSM is the parser.
6+
//!
7+
//! Transcoded from Python DeepNSM (<https://github.com/AdaWorldAPI/DeepNSM>).
8+
//! Rust 1.94.0 · SIMD via `crate::simd::F32x16` · Arrow 57 / DataFusion 51 ready.
69
7-
use std::collections::HashMap;
10+
use std::collections::{HashMap, HashSet};
11+
use std::sync::LazyLock;
812

913
/// The 65 universal semantic primes.
1014
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]

0 commit comments

Comments
 (0)