aGLM

    Related articles

    fundamental AGI

    putting the fun into a fundamental augmented general intelligence framework as funAGI funAGI is a development branch of easyAGI. easyAGI was not being easy and SimpleMind neural network was proving to not be simple. For that reason is was necessary to remove reasoning.py and take easyAGI back to its roots of BDI Socratic Reasoning from belief, desire and intention. So this back to basics release should be taken as a verbose logging audit of SocraticReasoning […]

    Learn More
    Symbolic Logic

    LogicTables Class: Managing Logic and Beliefs

    The LogicTables class in logic.py is designed to handle logical expressions, evaluate their truth values, and manage beliefs as valid truths. It integrates with the SimpleMInd or similar neural network system to process and use truths effectively. Key Features: Initialization and Logging The LogicTables class initializes with logging configuration to capture debug information: Adding Variables and Expressions Truth tables are generated to evaluate logical expressions: Expressions are evaluated using logical operators: def evaluate_expression(self, expr, values):allowed_operators […]

    Learn More
    concurrency

    concurrency in Python with asyncio

    Concurrency is a vital concept in modern programming, enabling systems to manage and execute multiple tasks simultaneously. This capability is crucial for improving the efficiency and responsiveness of applications, especially those dealing with I/O-bound operations such as web servers, database interactions, and network communications. In Python, concurrency can be achieved through several mechanisms, with the asyncio library being a prominent tool for asynchronous programming. What is Concurrency? Concurrency refers to the ability of a program […]

    Learn More