summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Semich <fuzzyTew@gmail.com>2019-10-23 17:42:32 -0400
committerKarl Semich <fuzzyTew@gmail.com>2019-10-23 17:42:32 -0400
commit98f75822bdd339f8bd95245ed80873e0b14ff6d2 (patch)
tree90e2b9cf2f4b834417a3967da3963b119ad12426
parent54992d489504b7b1f8dbb8d5fab6dd8e480c70c7 (diff)
downloadstandingwithresilience-98f75822bdd339f8bd95245ed80873e0b14ff6d2.tar.gz
standingwithresilience-98f75822bdd339f8bd95245ed80873e0b14ff6d2.zip
add wip change cruft
-rw-r--r--name.scm12
1 files changed, 10 insertions, 2 deletions
diff --git a/name.scm b/name.scm
index 50c1a1b..b5ae21c 100644
--- a/name.scm
+++ b/name.scm
@@ -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