creating-intelligence 0.1.0a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- creating_intelligence-0.1.0a1/MANIFEST.in +2 -0
- creating_intelligence-0.1.0a1/PKG-INFO +51 -0
- creating_intelligence-0.1.0a1/README.md +20 -0
- creating_intelligence-0.1.0a1/c_build/memory.c +833 -0
- creating_intelligence-0.1.0a1/c_build/memory.h +102 -0
- creating_intelligence-0.1.0a1/creating_intelligence/__init__.py +27 -0
- creating_intelligence-0.1.0a1/creating_intelligence/circuits.py +1910 -0
- creating_intelligence-0.1.0a1/creating_intelligence/memory_c_ffi.py +137 -0
- creating_intelligence-0.1.0a1/creating_intelligence/memory_python.py +131 -0
- creating_intelligence-0.1.0a1/creating_intelligence.egg-info/PKG-INFO +51 -0
- creating_intelligence-0.1.0a1/creating_intelligence.egg-info/SOURCES.txt +16 -0
- creating_intelligence-0.1.0a1/creating_intelligence.egg-info/dependency_links.txt +1 -0
- creating_intelligence-0.1.0a1/creating_intelligence.egg-info/requires.txt +15 -0
- creating_intelligence-0.1.0a1/creating_intelligence.egg-info/top_level.txt +1 -0
- creating_intelligence-0.1.0a1/pyproject.toml +42 -0
- creating_intelligence-0.1.0a1/requirements.txt +15 -0
- creating_intelligence-0.1.0a1/setup.cfg +4 -0
- creating_intelligence-0.1.0a1/setup.py +54 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: creating-intelligence
|
|
3
|
+
Version: 0.1.0a1
|
|
4
|
+
Summary: A computational foundation for AGI, based on hyperdimensional sparse data and framed in set theory.
|
|
5
|
+
Author-email: Peter Overmann <mail@creatingintelligence.org>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://creatingintelligence.org
|
|
8
|
+
Project-URL: Documentation, https://creatingintelligence.org/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/peterovermann/creatingintelligence
|
|
10
|
+
Keywords: artificial intelligence,computational theory of mind,hyperdimensional computing,sparse distributed representations,topological associative memory,subset matching algorithm,spiking neural networks,neuromorphic computing,theoretical neuroscience
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: C
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
Requires-Dist: contourpy>=1.3.3
|
|
17
|
+
Requires-Dist: cycler>=0.12.1
|
|
18
|
+
Requires-Dist: fonttools>=4.64.0
|
|
19
|
+
Requires-Dist: kiwisolver>=1.5.1
|
|
20
|
+
Requires-Dist: matplotlib>=3.11.1
|
|
21
|
+
Requires-Dist: networkx>=3.6.1
|
|
22
|
+
Requires-Dist: numpy>=2.5.1
|
|
23
|
+
Requires-Dist: packaging>=26.3
|
|
24
|
+
Requires-Dist: pillow>=12.3.0
|
|
25
|
+
Requires-Dist: pydot>=4.0.1
|
|
26
|
+
Requires-Dist: pyparsing>=3.3.2
|
|
27
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
28
|
+
Requires-Dist: python-dotenv>=1.2.3
|
|
29
|
+
Requires-Dist: scipy>=1.18.1
|
|
30
|
+
Requires-Dist: six>=1.17.0
|
|
31
|
+
|
|
32
|
+
# Creating Intelligence
|
|
33
|
+
|
|
34
|
+
A computational foundation for AGI, based on hyperdimensional sparse data and framed in set theory.
|
|
35
|
+
|
|
36
|
+
The mind performs computations on sparse binary data using Sparse Distributed Representations (SDRs) for perceptual information and Sparse Holographic Representations (SHRs) for symbols. The centerpiece of this project is Topological Associative Memory — a newly discovered associative memory for sparse data, serving as the computational kernel that models the brain's core algorithm.
|
|
37
|
+
|
|
38
|
+
### Links
|
|
39
|
+
|
|
40
|
+
* **Website:** https://creatingintelligence.org
|
|
41
|
+
* **Documentation:** https://creatingintelligence.org/docs
|
|
42
|
+
* **GitHub Repository:** https://github.com/PeterOvermann/CreatingIntelligence
|
|
43
|
+
* **Preprint:** [arXiv:2606.31819](https://arxiv.org/abs/2606.31819)
|
|
44
|
+
|
|
45
|
+
### Installation
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install creating-intelligence
|
|
50
|
+
```
|
|
51
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Creating Intelligence
|
|
2
|
+
|
|
3
|
+
A computational foundation for AGI, based on hyperdimensional sparse data and framed in set theory.
|
|
4
|
+
|
|
5
|
+
The mind performs computations on sparse binary data using Sparse Distributed Representations (SDRs) for perceptual information and Sparse Holographic Representations (SHRs) for symbols. The centerpiece of this project is Topological Associative Memory — a newly discovered associative memory for sparse data, serving as the computational kernel that models the brain's core algorithm.
|
|
6
|
+
|
|
7
|
+
### Links
|
|
8
|
+
|
|
9
|
+
* **Website:** https://creatingintelligence.org
|
|
10
|
+
* **Documentation:** https://creatingintelligence.org/docs
|
|
11
|
+
* **GitHub Repository:** https://github.com/PeterOvermann/CreatingIntelligence
|
|
12
|
+
* **Preprint:** [arXiv:2606.31819](https://arxiv.org/abs/2606.31819)
|
|
13
|
+
|
|
14
|
+
### Installation
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install creating-intelligence
|
|
19
|
+
```
|
|
20
|
+
|