AbstractIntegratedModule 0.3.8__tar.gz → 0.3.9__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.
- abstractintegratedmodule-0.3.9/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.cpython-310-aarch64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.cpython-312-x86_64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9/AbstractIntegratedModule.egg-info}/PKG-INFO +3 -3
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.py +5 -4
- {abstractintegratedmodule-0.3.8/AbstractIntegratedModule.egg-info → abstractintegratedmodule-0.3.9}/PKG-INFO +3 -3
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/README.md +2 -2
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/setup.py +1 -1
- abstractintegratedmodule-0.3.8/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.egg-info/SOURCES.txt +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.egg-info/dependency_links.txt +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.egg-info/requires.txt +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.egg-info/top_level.txt +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/MANIFEST.in +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/pyproject.toml +0 -0
- {abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/setup.cfg +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework
|
|
5
5
|
Author: Micro-Novelty
|
|
6
6
|
Author-email: hernikpuspita5@gmail.com
|
|
@@ -42,7 +42,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
42
42
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
43
43
|
|
|
44
44
|
### Library Short Description:
|
|
45
|
-
- Development Stage: Beta, 0.3.
|
|
45
|
+
- Development Stage: Beta, 0.3.9.
|
|
46
46
|
- Maintainer: Micro-Novelty.
|
|
47
47
|
- library Source-Code is Open-sourced on github.
|
|
48
48
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -66,7 +66,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
66
66
|
-----
|
|
67
67
|
|
|
68
68
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
69
|
-
|
|
69
|
+
[](https://pepy.tech/projects/abstractintegratedmodule)
|
|
70
70
|
|
|
71
71
|
## [+] MANN Intro
|
|
72
72
|
[=] Memory augmented Neural network (MANN) is a neural network architecture coupled with an external, dynamic memory module, allowing it to store, retrieve, and update information similarly to a computer's RAM. Unlike traditional networks that store knowledge only in weight parameters, MANNs excel at fast learning, long-term dependency handling, and episodic recall, In IntegratedPipeline, Its memory is stored in a custom database inside your local machine, then later used for memory retrieval, transfered to the AI Dictionary where it can finnaly recall its memory when input condition matched with memory.
|
{abstractintegratedmodule-0.3.8 → abstractintegratedmodule-0.3.9}/AbstractIntegratedModule.py
RENAMED
|
@@ -295,6 +295,7 @@ class Singleton(metaclass=SingletonMeta):
|
|
|
295
295
|
# allowing it to better process data with varying geometric complexity, and providing a more stable training process in scarce data environment.
|
|
296
296
|
# It can be used as a general weight initialization and shaping method for various models, especially in scenarios where data geometry is complex and data is scarce.
|
|
297
297
|
|
|
298
|
+
|
|
298
299
|
class GeometricWeightShaping:
|
|
299
300
|
def __init__(self, input_size, output_size):
|
|
300
301
|
self.input_size = input_size
|
|
@@ -313,7 +314,7 @@ class GeometricWeightShaping:
|
|
|
313
314
|
|
|
314
315
|
anisotropy = self.anisotropy_measurement(raw_X)
|
|
315
316
|
|
|
316
|
-
structured_noise = np.random.uniform(
|
|
317
|
+
structured_noise = np.random.uniform(eps, mag, size=raw_X.shape)
|
|
317
318
|
X = np.vstack((raw_X, structured_noise))
|
|
318
319
|
if X.ndim == 2 and X.shape[1] == 1:
|
|
319
320
|
X = np.hstack((raw_X, structured_noise))
|
|
@@ -336,7 +337,7 @@ class GeometricWeightShaping:
|
|
|
336
337
|
if np.isnan(trC) or np.isinf(trC):
|
|
337
338
|
trC = anisotropy * (1.0 - np.std(x)) + eps
|
|
338
339
|
|
|
339
|
-
floating_point = np.random.uniform(
|
|
340
|
+
floating_point = np.random.uniform(1e-10, trC, size=X.shape)
|
|
340
341
|
return k, floating_point, structured_noise
|
|
341
342
|
|
|
342
343
|
|
|
@@ -417,7 +418,7 @@ class GeometricWeightShaping:
|
|
|
417
418
|
if np.isnan(efficient_distributed_energy) or np.isinf(efficient_distributed_energy):
|
|
418
419
|
efficient_distributed_energy = (1 - AMR) + eps
|
|
419
420
|
|
|
420
|
-
floating_context = rng.uniform(
|
|
421
|
+
floating_context = rng.uniform(1e-10, efficient_distributed_energy, size=(input_size, output_size))
|
|
421
422
|
self.floating_context = floating_context
|
|
422
423
|
|
|
423
424
|
return floating_context
|
|
@@ -439,7 +440,6 @@ class GeometricWeightShaping:
|
|
|
439
440
|
return floating_context
|
|
440
441
|
|
|
441
442
|
|
|
442
|
-
|
|
443
443
|
# ________ UTILITY functions for activations and losses, can be used across different models and architectures _________
|
|
444
444
|
|
|
445
445
|
def sigmoid(x):
|
|
@@ -1710,6 +1710,7 @@ class LSTMEngine:
|
|
|
1710
1710
|
# cell state c is untouched —
|
|
1711
1711
|
# preserves long-term memory
|
|
1712
1712
|
if self.model.Wy is None:
|
|
1713
|
+
|
|
1713
1714
|
self.model.Wy = self.model.weight_shaper.weight_shaping(x_seq)
|
|
1714
1715
|
|
|
1715
1716
|
pred = h @ self.model.Wy.T + self.model.by
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework
|
|
5
5
|
Author: Micro-Novelty
|
|
6
6
|
Author-email: hernikpuspita5@gmail.com
|
|
@@ -42,7 +42,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
42
42
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
43
43
|
|
|
44
44
|
### Library Short Description:
|
|
45
|
-
- Development Stage: Beta, 0.3.
|
|
45
|
+
- Development Stage: Beta, 0.3.9.
|
|
46
46
|
- Maintainer: Micro-Novelty.
|
|
47
47
|
- library Source-Code is Open-sourced on github.
|
|
48
48
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -66,7 +66,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
66
66
|
-----
|
|
67
67
|
|
|
68
68
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
69
|
-
|
|
69
|
+
[](https://pepy.tech/projects/abstractintegratedmodule)
|
|
70
70
|
|
|
71
71
|
## [+] MANN Intro
|
|
72
72
|
[=] Memory augmented Neural network (MANN) is a neural network architecture coupled with an external, dynamic memory module, allowing it to store, retrieve, and update information similarly to a computer's RAM. Unlike traditional networks that store knowledge only in weight parameters, MANNs excel at fast learning, long-term dependency handling, and episodic recall, In IntegratedPipeline, Its memory is stored in a custom database inside your local machine, then later used for memory retrieval, transfered to the AI Dictionary where it can finnaly recall its memory when input condition matched with memory.
|
|
@@ -10,7 +10,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
10
10
|
#### Note: The README here you are reading is a direct copy from my README Repository, to download the necessary files, you can visit my Repository with the provided link above.
|
|
11
11
|
|
|
12
12
|
### Library Short Description:
|
|
13
|
-
- Development Stage: Beta, 0.3.
|
|
13
|
+
- Development Stage: Beta, 0.3.9.
|
|
14
14
|
- Maintainer: Micro-Novelty.
|
|
15
15
|
- library Source-Code is Open-sourced on github.
|
|
16
16
|
- Purpose: Specifically Designed for providing Non-LLM AI Agent Framework for edge Devices, Optimized for ARM64 architecture.
|
|
@@ -34,7 +34,7 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
34
34
|
-----
|
|
35
35
|
|
|
36
36
|
<img width="1280" height="600" alt="WhatsApp Image 2026-05-27 at 07 16 32" src="https://github.com/user-attachments/assets/4b58a556-45a3-419b-96fd-9c1b76cac574" />
|
|
37
|
-
|
|
37
|
+
[](https://pepy.tech/projects/abstractintegratedmodule)
|
|
38
38
|
|
|
39
39
|
## [+] MANN Intro
|
|
40
40
|
[=] Memory augmented Neural network (MANN) is a neural network architecture coupled with an external, dynamic memory module, allowing it to store, retrieve, and update information similarly to a computer's RAM. Unlike traditional networks that store knowledge only in weight parameters, MANNs excel at fast learning, long-term dependency handling, and episodic recall, In IntegratedPipeline, Its memory is stored in a custom database inside your local machine, then later used for memory retrieval, transfered to the AI Dictionary where it can finnaly recall its memory when input condition matched with memory.
|
|
@@ -8,7 +8,7 @@ class BinaryDistribution(Distribution):
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="AbstractIntegratedModule",
|
|
11
|
-
version="0.3.
|
|
11
|
+
version="0.3.9",
|
|
12
12
|
description="Framework for Advanced Integrated Non-LLM AI Module library - Backend Framework for Non-LLM AI Agent Framework",
|
|
13
13
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
14
14
|
long_description_content_type="text/markdown",
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|