From 1b3139bba8da6ec2d1688db31792a2c4b7fd43d0 Mon Sep 17 00:00:00 2001 From: Patrick Hammer Date: Fri, 19 Jan 2024 05:49:23 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 19dd2eb..1db9fc3 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ This project builds upon an [implementation of Berick Cook's AIRIS](https://gist Several AI systems, as referenced in related works, employ a form of Cognitive Schematics. These systems learn and use empirically-causal temporal relations, typically in the form of **(precondition, operation) => consequence**. This approach allows the AI to develop a goal-independent understanding of its environment, primarily derived from correlations with the AI's actions. However, albeit not "necessarily causal" these "hypotheses" are not passively obtained correlations, as they can be re-tested and seeked for by the AI to improve its predictive power. This is a significant advantage over the axiomatic relations proposed by Judea Pearl. Pearl's approach is fundamentally limited, as it cannot learn from correlation alone, but only through adjusting probabilities of already-given causal relations. This limitation is not present in the cognitive schematic approach, which makes it a more general adaptive learning model better-suited for autonomous agents. Additionally, the use of the NAL frequency and confidence values to represent hypothesis truth value enables efficient revision of the agent's knowledge in realistic settings. Unlike the probabilistic approach, this method can function effectively even with small sample sizes, can handle novel events (unknown unknowns) and has a low computational cost since only local memory updates are necessary. +## Architecture + +![image](https://github.com/patham9/NACE/assets/8284677/451c19ae-e38d-416b-be2c-569cd901a55e) + ## Related works: [Autonomous Intelligent Reinforcement Interpreted Symbolism (AIRIS)](https://github.com/berickcook/AIRIS_Public) From 1778587ca071566f033a10f8d76a0a40f99bc4b9 Mon Sep 17 00:00:00 2001 From: Patrick Hammer Date: Fri, 19 Jan 2024 05:57:05 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1db9fc3..6e8c97d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Several AI systems, as referenced in related works, employ a form of Cognitive S ## Architecture -![image](https://github.com/patham9/NACE/assets/8284677/451c19ae-e38d-416b-be2c-569cd901a55e) +![image](https://github.com/patham9/NACE/assets/8284677/778e4639-e079-4cce-8a4f-caed7d139c46) ## Related works: