diff options
Diffstat (limited to 'name.scm')
-rw-r--r-- | name.scm | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -6,6 +6,10 @@ (use-modules (opencog query)) (use-modules (opencog exec)) +;; missing here: write own code. +;; - [ ] call scheme from opencog +;; - [ ] a way to understand crashes after they happen, even if is human-reboots-with-input + ; concept made from simple parts that nurture themselves ; define a part: (define name (ConceptNode "Name")) @@ -31,12 +35,12 @@ ; ^-- can also define in terms of time-relative-to-now. given list of steps, action is one after present one (define pattern-match (ConceptNode "PatternMatch")) - ; pattern matching + ; pattern matching; habit finding ; component: identify that a set of data matches a pattern ; component: identify that a pattern matches a set of data ; component: _find_ data to match pattern ; component: _find_ pattern to match data - ; simplest form: equality + (define brainstorm (ConceptNode "Brainstorm")) ; finds a new set of data that matches a pattern @@ -44,6 +48,10 @@ (define generalization (ConceptNode "Generalization")) ; finds a new pattern that matches a set of data +(define test-patternmatch-brainstorm (ConceptNode "TestPatternMatchBrainstorm")) + ; BRAINSTORM data that matches a pattern from IMAGINARY, RANDOM set + ; TEST that PATTERNMATCH identifies the data and pattern as matching + ; write steps in terms of each other with meaning ; our data is our process & code |