examples
</> Example Implementation
Natural language to atoms
Shows how the semantic parser converts natural language into canonical graph structures (SENF).
; Semantic Parsing: NL -> SENF -> Atoms
; "The cat sat on the mat"
!(parse-to-senf
"The cat sat on the mat")
; => (EvaluationLink
; (Predicate "sat-on")
; (ListLink
; (Concept "cat")
; (Concept "mat")))