Core theory of negative space intelligence — what you learn to AVOID is the knowledge
Project description
negative-space-core-python
Python implementation of negative space intelligence — the core theory that intelligence is what you learn to AVOID.
The 5 Laws
- Negative space discovers hidden structure (60% avoidance through feedback alone)
- Avoidance dominates choice (294:1 ratio)
- Strategy species coexist stably (100% resilience)
- Population > Individual (+0.075 fitness advantage)
- Avoidance ratio CONSERVED across scales (std=0.001 from 10 to 5000 agents)
Install
pip install negative-space-core
Usage
from negative_space_core import AvoidanceTracker, ConservationLaw, BatchAnalyzer
# Track avoidance across generations
tracker = AvoidanceTracker(positions=100)
for _ in range(50):
actions = simulate_population(100)
tracker.record(actions)
print(f"Avoid ratio: {tracker.avoid_ratio():.3f} ± {tracker.avoid_std():.4f}")
# Verify conservation law
cl = ConservationLaw(threshold=0.02)
data = {10: [...], 100: [...], 1000: [...], 5000: [...]}
results = cl.test_all_scales(data)
print(cl.report())
API
- AvoidanceTracker — ratio tracking, std computation, conservation verification
- ConservationLaw — multi-scale conservation testing with reports
- InferenceEngine — deduce knowledge from gaps between avoidances
- FeedbackLoop — balanced v5 learning with forced exploration and decay
- BatchAnalyzer — batch statistics, avoid:choose ratio, conservation std
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file negative_space_core-0.1.0.tar.gz.
File metadata
- Download URL: negative_space_core-0.1.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19e03dc6cfdc992bcbc836156a4f67033ddd6ce27b3292776d30d0c28c024977
|
|
| MD5 |
95aae73dd4150cafee09e2ac9f57983a
|
|
| BLAKE2b-256 |
96ee60ad3e503b310254531238632632bb3c09cd4c19d499acc38fb4f84e38f0
|
File details
Details for the file negative_space_core-0.1.0-py3-none-any.whl.
File metadata
- Download URL: negative_space_core-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af1ce68a01d79ff67c09c26772846a50581066e54e6d30d3db75f52144a66adc
|
|
| MD5 |
305467ccbaaf2340fe8abf625ecc0068
|
|
| BLAKE2b-256 |
ee92bf0711b40c743c34180941b237249ccfdfed28abeb83649d0a7cd266b0e0
|