Skip to main content

Self-organizing knowledge systems for structural pattern learning

Project description

🚀 GeneralIntelligence

A composable, multi-knowledge architecture for building real intelligence — not just models.


What Makes This Library Unique

1. Intelligence as Knowledge, Not Parameters

You don’t train a giant opaque blob of weights. You build explicit knowledge modules — conceptual units that know when they apply, how they compute, and how to interact with other knowledge. This turns intelligence into software again.


2. A Flat, Distributed Cognitive Architecture

No scheduler. No central controller. Each knowledge class is an autonomous agent:

  • It decides when to activate
  • It maintains its own memory
  • It updates itself through experience
  • It collaborates by reading/writing shared context

This makes the system composable, extensible, and inherently multi-task.


3. Multiple Strategies Running in Parallel

A single GeneralIntelligence model can contain:

  • Mathematical hypothesis testers
  • Logical relational modules
  • Symbolic rules
  • Statistical heuristics
  • Tree/graph-based reasoning
  • Domain-specific knowledge
  • Autonomous background agents
  • Prompt/dialog knowledge
  • Perception plug-ins (e.g., DL model wrappers)

Modules that don’t apply simply hand off. This creates a parallel hypothesis-testing architecture where exact solutions are found whenever they exist.


4. Multi-Strategy ML: Explicit, Testable Hypotheses

Instead of forcing every dataset into linear models or trees, this architecture allows a single module to test hundreds or thousands of structured hypotheses, such as:

  • numeric relations
  • logical compositions
  • hybrid numeric-logical rules
  • approximate equalities
  • relational constraints
  • multi-layer rules discovered via nesting

Each hypothesis tracks its own failures and survives only if within tolerance. This is structured conceptual induction, not blind optimization.


5. Zero Coupling Between Knowledge Types

Knowledge modules:

  • are self-contained blocks of intelligence
  • don’t need to be registered in any config
  • don’t break when others change
  • can be activated reactively or run autonomously

They interop with the model and other knowledge through lifecycle methods and shared context enabling powerful cooperation patterns. This keeps the system modular, inspectable, and robust.


6. Compositional Reasoning Built-In

Knowledge can participate in compositional flows:

gi.compose(ctx, finalizer)

Each module can modify the context during composition, enabling:

  • multi-step pipelines
  • layered reasoning
  • implicit collaboration
  • custom “chains of thought”
  • tailorable reasoning workflows

This is structural composition, not sequential scripting.


7. Multi-Language by Design

The architecture uses only:

  • classes / objects
  • small methods
  • shared context objects

Zero reliance on Python-only tricks. This makes it trivially portable to other languages:

  • Julia
  • R
  • Rust
  • Go
  • C++
  • TypeScript
  • Java/Kotlin
  • Swift

The entire ecosystem can be replicated across languages and share conceptual knowledge.


8. The First General-Purpose “Knowledge Class” Ecosystem

This library is not just an API. It defines an ecosystem pattern where people can contribute:

  • universal hypothesis testers
  • symbolic reasoning modules
  • numerical/ML hybrids
  • perception plug-ins
  • planning/goal modules
  • domain knowledge packs

This scales intelligence with contributors rather than compute.


9. It’s a Foundation.

The architecture supports:

  • traditional machine learning
  • online learning
  • multi-subsystem reasoning
  • multi-task execution
  • hybrid exact + fuzzy learning
  • agentic autonomous modules
  • continual refinement
  • transparent introspection

This is what symbolic AI and deep learning have been trying to achieve.


In Short

GeneralIntelligence is:

A modular, distributed, multi-knowledge cognitive engine designed to build real intelligence by composing explicit, testable, autonomous knowledge modules.

It’s small. It’s simple. And it’s powerful enough that entire ML workflows, symbolic reasoning processes, dialog systems, and autonomous agents can all live in the same model without conflict.


Examples

Simple Addition Knowledge

Demonstrates how GeneralIntelligence can learn addition rules in tabular data:

from gi import GeneralIntelligence, Knowledge
from itertools import combinations

gi = GeneralIntelligence()


class AdditionKnowledge(Knowledge):
    def __init__(self, n_features):
        self.n_features = n_features
        self.valid_combinations = []

    def on(self, ctx, gi):
        if hasattr(ctx, "row") and hasattr(ctx, "target"):
            row, target = ctx.row, ctx.target
            # First time: cache all single-element combinations
            if not self.valid_combinations:
                all_combs = []
                for r in range(1, self.n_features + 1):
                    all_combs.extend(combinations(range(self.n_features), r))
                self.valid_combinations = [
                    comb for comb in all_combs if sum(row[i] for i in comb) == target
                ]
            # Keep only combinations that continue to hold
            self.valid_combinations = [
                comb for comb in self.valid_combinations
                if sum(row[i] for i in comb) == target
            ]
        elif hasattr(ctx, "row"):
            row = ctx.row
            for comb in self.valid_combinations:
                return sum(row[i] for i in comb)


additive = AdditionKnowledge(n_features=3)
gi.learn(additive)


# Training
class TrainCtx:
    def __init__(self, row, target):
        self.row = row
        self.target = target


for row, target in [([1, 2, 3], 3), ([0, 3, 1], 3)]:
    list(gi.on(TrainCtx(row, target)))


# Prediction
class PredictCtx:
    def __init__(self, row):
        self.row = row


print(next(gi.on(PredictCtx([2, 1, 0]))))  # Output: sum of matching combination

Dialog / Prompt-Response Knowledge

from gi import GeneralIntelligence, Knowledge
gi = GeneralIntelligence()


class DialogKnowledge(Knowledge):
    def __init__(self):
        self.history = []

    def on(self, ctx, gi):
        if hasattr(ctx, "user"):
            self.history.append(ctx.user)
            return f"Bot: I heard '{ctx.user}'"

dialog = DialogKnowledge()
gi.learn(dialog)

class MsgCtx:
    def __init__(self, user):
        self.user = user

for response in gi.on(MsgCtx("Hello")):
    print(response)  # Bot: I heard 'Hello'

Autonomous Knowledge Example

import threading, time
from gi import GeneralIntelligence, Knowledge
gi = GeneralIntelligence()

import threading, time


class TimerKnowledge(Knowledge):
    def __init__(self):
        self.count = 0

    def on_add(self, knowledge, gi):
        if self is knowledge:
            self.running = True
            self.thread = threading.Thread(target=self.run, args=(gi,), daemon=True)
            self.thread.start()

    def on_remove(self, knowledge, gi):
        if self is knowledge:
            self.running = False

    def run(self, gi):
        while getattr(self, "running", False):
            print("Tick:", self.count)
            self.count += 1
            time.sleep(1)

class TickCtx: pass
timer = TimerKnowledge()
gi.learn(timer)

# Let autonomous timer run a few ticks
time.sleep(5)
gi.unlearn(timer)  # stop autonomous loop

Compositional Reasoning

Knowledge can modify shared context and collaborate:

from gi import GeneralIntelligence, Knowledge
gi = GeneralIntelligence()


class AccumulateKnowledge(Knowledge):
    def compose(self, ctx, composer, gi):
        if not hasattr(ctx, "accum"):
            ctx.accum = []
        ctx.accum.append("step")

acc = AccumulateKnowledge()
gi.learn(acc)

def final_composer(ctx):
    return getattr(ctx, "accum", [])

class DummyCtx: pass

print(gi.compose(DummyCtx(), final_composer))  # ['step']

Multiple knowledge types—ML-style, dialog, autonomous—can coexist in the same model.


Combinatorial Knowledge (Experimental)

The CombinatorialKnowledge class is the first experimental ML-style knowledge subclass in the framework. It implements a hypothesis-driven approach to learning relationships between rows and targets:

Key Features

  • Accepts arbitrary functions for combining row subsets.
  • Can test relationships against targets, features, or constants.
  • Supports nested hypotheses for feature-based rules.
  • Tracks failures and removes hypotheses exceeding tolerance.
  • Prediction returns all applicable outputs, letting the caller decide how to aggregate.
  • Works with both simple (scaler) and complex features and targets (hypotheses
  • functions decide the interpretation)

⚠️ Important: This knowledge class has not been extensively tested. It is an ideal first contribution opportunity for developers to help identify any issues, improve robustness, add tests, and extend functionality.

Future contributions could include:

  • Combinator functions for math, logic, hybrid, and relational rules
  • Enhanced noise tolerance strategies
  • Integration examples for real-world datasets
  • Spotting and covering edge cases
  • Writing tests

By contributing tests, fixes, and extensions, you can help build the foundation of a rich, modular knowledge ecosystem.


Vision

GeneralIntelligence shifts AI from algorithm-driven to knowledge-driven.

Knowledge is:

  • Composable
  • Inspectable
  • Autonomous
  • Extensible across tasks and domains

A single model can host diverse knowledge types that cooperate, compete, or ignore irrelevant contexts.


Use Cases

  • Hierarchical or multimodal reasoning systems
  • Interactive chatbots or agents
  • Tabular ML tasks and feature discovery
  • Autonomous monitoring or simulation agents
  • Hybrid AI systems combining specialized knowledge modules

Next Steps

  • Specialized knowledge modules
  • Community-built knowledge libraries
  • Port to other languages
  • Tutorials demonstrating cross-cutting knowledge interactions

License

MIT License Copyright (c) 2025


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

general_intelligence-0.5.1.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

general_intelligence-0.5.1-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file general_intelligence-0.5.1.tar.gz.

File metadata

  • Download URL: general_intelligence-0.5.1.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for general_intelligence-0.5.1.tar.gz
Algorithm Hash digest
SHA256 9d4adbb81ddc4c6ff003d943af180ee774f8bdd5db9916ec83d79187591a9758
MD5 fc1a9a5958103e4ba71d952ad4db03f8
BLAKE2b-256 0f8dc931b3abe16c46c1f16258541298c9295c4e5d01c00852011169d2c86972

See more details on using hashes here.

File details

Details for the file general_intelligence-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for general_intelligence-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7f34ae1f7174c1442fdd39201325864e22a372e27bbb00513ec4075651153148
MD5 ff276ff767e9ec5e93f2d725a9d5af23
BLAKE2b-256 45b7d381540f5227edbb654efdcaa6d1117983787723a3cb5cec92364c94197b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page