AbstractIntegratedModule 0.3.6__tar.gz → 0.3.7__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.7/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.cpython-310-aarch64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.cpython-312-x86_64-linux-gnu.so +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7/AbstractIntegratedModule.egg-info}/PKG-INFO +2 -2
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.py +6 -4
- {abstractintegratedmodule-0.3.6/AbstractIntegratedModule.egg-info → abstractintegratedmodule-0.3.7}/PKG-INFO +2 -2
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/README.md +1 -1
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/setup.py +1 -1
- abstractintegratedmodule-0.3.6/AbstractIntegratedModule.cp313-win_amd64.pyd +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.egg-info/SOURCES.txt +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.egg-info/dependency_links.txt +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.egg-info/requires.txt +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.egg-info/top_level.txt +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/MANIFEST.in +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/pyproject.toml +0 -0
- {abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/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.7
|
|
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.7.
|
|
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.
|
{abstractintegratedmodule-0.3.6 → abstractintegratedmodule-0.3.7}/AbstractIntegratedModule.py
RENAMED
|
@@ -333,8 +333,11 @@ class GeometricWeightShaping:
|
|
|
333
333
|
trB = (1/2 + mag_G) / (1.0 + trA**2)
|
|
334
334
|
trC = (1/6 + K_G) / (trB**2 - 1.0)
|
|
335
335
|
|
|
336
|
+
if np.isnan(trC) or np.isinf(trC):
|
|
337
|
+
trC = anisotropy * (1.0 - mag_G) + eps
|
|
338
|
+
|
|
336
339
|
floating_point = np.random.uniform(0, trC, size=X.shape)
|
|
337
|
-
return
|
|
340
|
+
return k, floating_point, structured_noise
|
|
338
341
|
|
|
339
342
|
|
|
340
343
|
def spectral_signature(self, x, structured_noise, k=5):
|
|
@@ -400,11 +403,10 @@ class GeometricWeightShaping:
|
|
|
400
403
|
anisotropy = self.anisotropy_measurement(x)
|
|
401
404
|
mag = np.mean(np.linalg.norm(x))
|
|
402
405
|
|
|
403
|
-
|
|
406
|
+
k, floating_point, structured_noise = self.eigenvalue_encoder(x)
|
|
404
407
|
AME = self.AME_Encoder(x)
|
|
405
408
|
AMR = 1.0 / (1.0 + np.exp(-AME)) # abstract modelling rate
|
|
406
|
-
|
|
407
|
-
trC = (1.0 - AMR) + eps
|
|
409
|
+
|
|
408
410
|
|
|
409
411
|
spectral_similarity = self.spectral_similarity(x, floating_point, structured_noise)
|
|
410
412
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
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.7.
|
|
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.
|
|
@@ -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.7.
|
|
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.
|
|
@@ -8,7 +8,7 @@ class BinaryDistribution(Distribution):
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="AbstractIntegratedModule",
|
|
11
|
-
version="0.3.
|
|
11
|
+
version="0.3.7",
|
|
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
|