AbstractIntegratedModule 0.7.8__tar.gz → 0.7.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.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.egg-info/PKG-INFO +31 -18
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractOptimizedModules.c +200 -200
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/PKG-INFO +31 -18
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/README.md +30 -17
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/setup.py +1 -1
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.egg-info/SOURCES.txt +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.egg-info/dependency_links.txt +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.egg-info/requires.txt +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.egg-info/top_level.txt +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractIntegratedModule.py +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/AbstractOptimizedModules.pyx +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/MANIFEST.in +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/Cargo.toml +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/pyproject.toml +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/src/lib.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/debug/build/libsqlite3-sys-ed07b882cd2aa5e2/out/bindgen.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/debug/build/serde_core-ebc15f2e9cad7f5f/out/private.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/debug/build/target-lexicon-08527f45de28143d/out/host.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/release/build/libsqlite3-sys-bf0400df4523274c/out/bindgen.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/release/build/serde_core-5cdb76131825e4af/out/private.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/abstract_model_storage/target/release/build/target-lexicon-43eb95a0588bf457/out/host.rs +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/pyproject.toml +0 -0
- {abstractintegratedmodule-0.7.8 → abstractintegratedmodule-0.7.9}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: AbstractIntegratedModule
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.9
|
|
4
4
|
Summary: Library for Advanced Integrated Non-LLM AI Models - Optimized Backend Framework For Non-LLM AI Agent
|
|
5
5
|
Author: Micro-Novelty
|
|
6
6
|
Author-email: hernikpuspita5@gmail.com
|
|
@@ -51,29 +51,42 @@ https://github.com/Micro-Novelty/IntegratedPipeline-Specialized-Non-LLM-AI-Agent
|
|
|
51
51
|
pip install AbstractIntegratedModule
|
|
52
52
|
python -m install AbstractIntegratedModule
|
|
53
53
|
```
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
-
|
|
54
|
+
- Library installation if you dont have aarch64 setup, you can download the correct wheel for your setup in this repository or by using pip:
|
|
55
|
+
- ✨ use pip for downloading the correct wheels for your setup:
|
|
56
|
+
- ```bash
|
|
57
|
+
pip install abstractintegratedmodule --extra-index-url https://Micro-Novelty.github.io/abstract-modules/whl/ --break-system-packages
|
|
58
|
+
# ensures proper installation by bypassing pip strict external download setup.
|
|
59
|
+
```
|
|
60
|
+
- Note: By Using the above --extra-index installation method provides you with:
|
|
61
|
+
- x86_64 and aarch64 with manylinux (v. 2.17+) and musllinux (v. 1.2+) architecture only (No regular singular x86_64 arch wheel, tarball will be used for regular x86_64 and windows).
|
|
62
|
+
- macOS with aarch64 and x86_64 architecture. (v. 10.9+)
|
|
63
|
+
- All of this Wheels provided in the Repository Only Provides Wheels for python with version 3.10 3.11 and 3.12.
|
|
64
|
+
- This setup will automatically download the correct wheel Based on your python/pip version and OS / hardware architecture setup.
|
|
65
|
+
|
|
66
|
+
- For specific module in Rust for handling and loading Weights and Parsing JSON values with reduced memory lookup overhead.
|
|
67
|
+
- Consider using this Optimization library by using:
|
|
68
|
+
- ```bash
|
|
69
|
+
pip install abstract-weights-core
|
|
70
|
+
```
|
|
71
|
+
- Note: This Optimization would allow AbstractIntegratedModule faster JSON parsing and much more flexible database handling handled in Rust.
|
|
72
|
+
|
|
73
|
+
- Proven Capabilities:
|
|
61
74
|
- The library has been thoroughly tested in Multiple Environments from Windows to ARM64 Environment. The library is now Robust for Wider use and Deployment.
|
|
62
75
|
- Proven Works on ARM64 Environment, Training and Prediction works efficient on Docker ARM64 environment with QEMU, good parallelizing behavior is guaranteed.
|
|
63
76
|
- P2P Works efficiently in ARM64 Docker + QEMU, No conflicting socket and all prediction works efficiently.
|
|
64
77
|
- AWE setup Proven Efficient on Hard-uncontrolled dataset such as Activity Recognition from the given Database.
|
|
65
78
|
- LSTM is Optimized efficiently for scarce data with AWE method.
|
|
66
79
|
- Robust Advanced prediction capabilities proven effective on ARM64 Using MLP + LSTM Architectures.
|
|
67
|
-
- Transformer
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
80
|
+
- Transformer Optimized using Cython, to reduce Memory overhead and Reduce CPU Usage, With Reduced Training Time.
|
|
81
|
+
______________
|
|
82
|
+
- Changelog:
|
|
83
|
+
- v0.7.9:
|
|
84
|
+
- [=] New features:
|
|
85
|
+
- Fixed possible errors from inhomogenous shape during tokenizing arrays into a hash ID.
|
|
86
|
+
- fixed fragility where number of classes is not distributed well to sequence encoding function causing the model to use wrong number of classes.
|
|
87
|
+
- Added robustness for handling complex samples during prediction batching.
|
|
88
|
+
|
|
89
|
+
____________
|
|
77
90
|
<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" />
|
|
78
91
|
|
|
79
92
|
|