entro-net 1.0.0__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.
- entro_net-1.0.0/AUTHORS.md +43 -0
- entro_net-1.0.0/CHANGELOG.md +39 -0
- entro_net-1.0.0/CITATION.cff +49 -0
- entro_net-1.0.0/CODE_OF_CONDUCT.md +55 -0
- entro_net-1.0.0/CONTRIBUTING.md +78 -0
- entro_net-1.0.0/LICENSE +21 -0
- entro_net-1.0.0/MANIFEST.in +40 -0
- entro_net-1.0.0/NOTICE +29 -0
- entro_net-1.0.0/PKG-INFO +351 -0
- entro_net-1.0.0/README.md +324 -0
- entro_net-1.0.0/SECURITY.md +64 -0
- entro_net-1.0.0/entro_net/__init__.py +1 -0
- entro_net-1.0.0/entro_net/collective_aew.py +182 -0
- entro_net-1.0.0/entro_net/fault_isolation.py +64 -0
- entro_net-1.0.0/entro_net/net_threshold.py +61 -0
- entro_net-1.0.0/entro_net/psi_sync.py +162 -0
- entro_net-1.0.0/entro_net/simulator.py +1 -0
- entro_net-1.0.0/entro_net.egg-info/PKG-INFO +351 -0
- entro_net-1.0.0/entro_net.egg-info/SOURCES.txt +45 -0
- entro_net-1.0.0/entro_net.egg-info/dependency_links.txt +1 -0
- entro_net-1.0.0/entro_net.egg-info/top_level.txt +1 -0
- entro_net-1.0.0/examples/basic_usage.py +1 -0
- entro_net-1.0.0/examples/fault_isolation_demo.py +1 -0
- entro_net-1.0.0/examples/multi_node_simulation.py +1 -0
- entro_net-1.0.0/examples/transfer_learning.py +1 -0
- entro_net-1.0.0/pyproject.toml +36 -0
- entro_net-1.0.0/requirements-dev.txt +27 -0
- entro_net-1.0.0/requirements.txt +8 -0
- entro_net-1.0.0/scripts/detailed_phase_analysis.py +92 -0
- entro_net-1.0.0/scripts/final_scaling_analysis.py +72 -0
- entro_net-1.0.0/scripts/generate_figure.py +76 -0
- entro_net-1.0.0/scripts/phase_analysis.py +138 -0
- entro_net-1.0.0/scripts/run_benchmarks.py +1 -0
- entro_net-1.0.0/scripts/scale_test.py +133 -0
- entro_net-1.0.0/scripts/scaling_analysis.py +76 -0
- entro_net-1.0.0/scripts/setup.sh +2 -0
- entro_net-1.0.0/scripts/visualize_results.py +1 -0
- entro_net-1.0.0/setup.cfg +4 -0
- entro_net-1.0.0/tests/__init__.py +1 -0
- entro_net-1.0.0/tests/integration/__init__.py +1 -0
- entro_net-1.0.0/tests/integration/test_network.py +1 -0
- entro_net-1.0.0/tests/unit/__init__.py +1 -0
- entro_net-1.0.0/tests/unit/test_collective_aew.py +1 -0
- entro_net-1.0.0/tests/unit/test_fault_isolation.py +1 -0
- entro_net-1.0.0/tests/unit/test_net_threshold.py +1 -0
- entro_net-1.0.0/tests/unit/test_psi_sync.py +1 -0
- entro_net-1.0.0/tests/unit/test_simulator.py +1 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# 👥 Authors
|
|
2
|
+
|
|
3
|
+
## Project: ENTRO-NET (E-LAB-06)
|
|
4
|
+
## Distributed Entropy Synchronization Protocols for Collective Neural Networks
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
### Lead Author
|
|
9
|
+
|
|
10
|
+
**Samir Baladi**
|
|
11
|
+
- Interdisciplinary AI & Theoretical Physics Researcher
|
|
12
|
+
- Ronin Institute / Rite of Renaissance
|
|
13
|
+
- 📧 gitdeeper@gmail.com
|
|
14
|
+
- 🆔 ORCID: 0009-0003-8903-0029
|
|
15
|
+
|
|
16
|
+
**Contributions:**
|
|
17
|
+
- Theoretical design of Ψ-Sync protocol
|
|
18
|
+
- Collective-AEW algorithm development
|
|
19
|
+
- Distributed network simulation architecture
|
|
20
|
+
- Research documentation and paper preparation
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
### Contributors
|
|
25
|
+
|
|
26
|
+
*Open for contributions from researchers*
|
|
27
|
+
|
|
28
|
+
| Name | Affiliation | Contribution | Dates |
|
|
29
|
+
|------|-------------|--------------|-------|
|
|
30
|
+
| *Available* | *Available* | *Available* | *Available* |
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
### Acknowledgments
|
|
35
|
+
|
|
36
|
+
- EntropyLab Research Program (E-LAB-01 through E-LAB-06)
|
|
37
|
+
- Open Science Community
|
|
38
|
+
- Anonymous peer reviewers
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
**📅 Last updated:** April 2026
|
|
43
|
+
**📜 License:** MIT License
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# 📋 Changelog
|
|
2
|
+
|
|
3
|
+
## [1.0.0] - 2026-04-08
|
|
4
|
+
|
|
5
|
+
### 🎉 Initial Release of ENTRO-NET (E-LAB-06)
|
|
6
|
+
|
|
7
|
+
#### ✨ Added
|
|
8
|
+
- **Ψ-Sync Protocol:** Real-time entropy state synchronization between nodes
|
|
9
|
+
- **Collective-AEW:** Collective adaptive entropy weighting algorithm
|
|
10
|
+
- **θ_net Threshold:** Dynamic network-wide activation threshold
|
|
11
|
+
- **Fault Isolation:** Node isolation system to prevent cascading failure
|
|
12
|
+
- **DistributedSimulator:** Multi-node distributed simulation engine (up to 10 nodes)
|
|
13
|
+
|
|
14
|
+
#### 🔧 Changed
|
|
15
|
+
- Migrated from ENTRO-EVO (E-LAB-05) to ENTRO-NET (E-LAB-06)
|
|
16
|
+
- Extended AEW interface to support collective learning
|
|
17
|
+
|
|
18
|
+
#### 🐛 Fixed
|
|
19
|
+
- None (initial release)
|
|
20
|
+
|
|
21
|
+
#### ⚠️ Known Issues
|
|
22
|
+
- Performance depends on network quality between nodes
|
|
23
|
+
- Recommended maximum: 10 nodes
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
### [0.1.0] - 2026-03-25 (Pre-release)
|
|
28
|
+
|
|
29
|
+
#### ✨ Added
|
|
30
|
+
- Prototype Ψ-Sync protocol
|
|
31
|
+
- Basic 3-node simulation tests
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
**📅 Dates:**
|
|
36
|
+
- v1.0.0: 2026-04-08
|
|
37
|
+
- v0.1.0: 2026-03-25
|
|
38
|
+
|
|
39
|
+
**📜 License:** MIT License
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: "If you use ENTRO-NET in your research, please cite it as follows:"
|
|
3
|
+
title: "ENTRO-NET: Distributed Entropy Synchronization Protocols for Collective Neural Networks"
|
|
4
|
+
authors:
|
|
5
|
+
- family-names: "Baladi"
|
|
6
|
+
given-names: "Samir"
|
|
7
|
+
orcid: "https://orcid.org/0009-0003-8903-0029"
|
|
8
|
+
affiliation: "Ronin Institute / Rite of Renaissance"
|
|
9
|
+
date-released: 2026-04-08
|
|
10
|
+
version: 1.0.0
|
|
11
|
+
doi: 10.5281/zenodo.19474217
|
|
12
|
+
license: MIT
|
|
13
|
+
repository-code: "https://github.com/gitdeeper10/ENTRO-NET"
|
|
14
|
+
url: "https://entro-net.netlify.app"
|
|
15
|
+
keywords:
|
|
16
|
+
- entropy
|
|
17
|
+
- distributed-systems
|
|
18
|
+
- synchronization
|
|
19
|
+
- collective-intelligence
|
|
20
|
+
- neural-networks
|
|
21
|
+
- cascading-failure
|
|
22
|
+
- fault-isolation
|
|
23
|
+
abstract: "ENTRO-NET (E-LAB-06) extends entropy-based control from individual systems to distributed networks. It introduces Ψ-Sync protocol for real-time entropy state sharing between nodes, Collective-AEW for collaborative weight adaptation, and fault isolation to prevent cascading failures. Built upon ENTRO-EVO (E-LAB-05), this work demonstrates that stability is not an individual property but a collective effort."
|
|
24
|
+
references:
|
|
25
|
+
- authors:
|
|
26
|
+
- Samir Baladi
|
|
27
|
+
title: "ENTROPIA: Statistical Dynamics of Information Dissipation"
|
|
28
|
+
year: 2026
|
|
29
|
+
doi: 10.5281/zenodo.19416737
|
|
30
|
+
- authors:
|
|
31
|
+
- Samir Baladi
|
|
32
|
+
title: "ENTRO-AI: Entropy-Resistant Inference Architecture"
|
|
33
|
+
year: 2026
|
|
34
|
+
doi: 10.5281/zenodo.19284086
|
|
35
|
+
- authors:
|
|
36
|
+
- Samir Baladi
|
|
37
|
+
title: "ENTRO-CORE: Self-Regulated Intelligence"
|
|
38
|
+
year: 2026
|
|
39
|
+
doi: 10.5281/zenodo.19431029
|
|
40
|
+
- authors:
|
|
41
|
+
- Samir Baladi
|
|
42
|
+
title: "ENTRO-ENGINE: Entropy Flow Regulator"
|
|
43
|
+
year: 2026
|
|
44
|
+
doi: 10.5281/zenodo.19441032
|
|
45
|
+
- authors:
|
|
46
|
+
- Samir Baladi
|
|
47
|
+
title: "ENTRO-EVO: Adaptive Entropy Weighting for Self-Calibrating Intelligence Systems"
|
|
48
|
+
year: 2026
|
|
49
|
+
doi: 10.5281/zenodo.19464489
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes
|
|
24
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
25
|
+
overall community (collective stability)
|
|
26
|
+
|
|
27
|
+
## Enforcement Responsibilities
|
|
28
|
+
|
|
29
|
+
Project maintainers are responsible for clarifying and enforcing our standards of
|
|
30
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
31
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
32
|
+
or harmful.
|
|
33
|
+
|
|
34
|
+
## Scope
|
|
35
|
+
|
|
36
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
37
|
+
an individual is officially representing the community in public spaces.
|
|
38
|
+
|
|
39
|
+
## Enforcement
|
|
40
|
+
|
|
41
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
42
|
+
reported to the project team at gitdeeper@gmail.com. All complaints will be
|
|
43
|
+
reviewed and investigated promptly and fairly.
|
|
44
|
+
|
|
45
|
+
## Attribution
|
|
46
|
+
|
|
47
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
48
|
+
version 2.0, available at
|
|
49
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
50
|
+
|
|
51
|
+
[homepage]: https://www.contributor-covenant.org
|
|
52
|
+
|
|
53
|
+
## For ENTRO-NET (E-LAB-06)
|
|
54
|
+
|
|
55
|
+
*"Stability is not an individual property — it is a collective effort."*
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Contributing to ENTRO-NET
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to **ENTRO-NET** (E-LAB-06)!
|
|
4
|
+
|
|
5
|
+
## How to Contribute
|
|
6
|
+
|
|
7
|
+
### 1. Report Bugs
|
|
8
|
+
- Use GitHub/GitLab Issues
|
|
9
|
+
- Include: Python version, OS, steps to reproduce
|
|
10
|
+
- Label: `bug`
|
|
11
|
+
|
|
12
|
+
### 2. Suggest Features
|
|
13
|
+
- Open an issue with label `enhancement`
|
|
14
|
+
- Describe the use case and expected behavior
|
|
15
|
+
- Reference related EntropyLab projects if applicable
|
|
16
|
+
|
|
17
|
+
### 3. Submit Code Changes
|
|
18
|
+
|
|
19
|
+
#### Prerequisites
|
|
20
|
+
```bash
|
|
21
|
+
pip install -e .[dev]
|
|
22
|
+
pre-commit install
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Development Workflow
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Fork and clone your fork
|
|
29
|
+
git clone https://github.com/YOUR_USERNAME/ENTRO-NET
|
|
30
|
+
cd ENTRO-NET
|
|
31
|
+
|
|
32
|
+
# Create a feature branch
|
|
33
|
+
git checkout -b feature/your-feature-name
|
|
34
|
+
|
|
35
|
+
# Make changes and run tests
|
|
36
|
+
pytest tests/ -v
|
|
37
|
+
|
|
38
|
+
# Commit with conventional commit format
|
|
39
|
+
git commit -m "feat: add new synchronization protocol"
|
|
40
|
+
|
|
41
|
+
# Push and create Pull Request
|
|
42
|
+
git push origin feature/your-feature-name
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
4. Update Documentation
|
|
46
|
+
|
|
47
|
+
· Edit README.md, docs/, or docstrings
|
|
48
|
+
· Ensure make docs builds successfully
|
|
49
|
+
|
|
50
|
+
Code Style
|
|
51
|
+
|
|
52
|
+
· Python: PEP 8 (use black)
|
|
53
|
+
· Type hints: Required for all public functions
|
|
54
|
+
· Docstrings: Google style
|
|
55
|
+
|
|
56
|
+
Testing Requirements
|
|
57
|
+
|
|
58
|
+
· All tests must pass: pytest tests/ -v
|
|
59
|
+
· Coverage should not decrease: pytest --cov=entro_net
|
|
60
|
+
· New features require tests
|
|
61
|
+
|
|
62
|
+
Commit Convention
|
|
63
|
+
|
|
64
|
+
Type Description
|
|
65
|
+
feat New feature
|
|
66
|
+
fix Bug fix
|
|
67
|
+
docs Documentation
|
|
68
|
+
test Testing
|
|
69
|
+
refactor Code refactor
|
|
70
|
+
perf Performance improvement
|
|
71
|
+
|
|
72
|
+
Questions?
|
|
73
|
+
|
|
74
|
+
Open an issue or email: gitdeeper@gmail.com
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
Thank you for contributing to collective intelligence stability! 🚀
|
entro_net-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Samir Baladi
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# ENTRO-NET (E-LAB-06) Manifest File
|
|
2
|
+
|
|
3
|
+
include README.md
|
|
4
|
+
include LICENSE
|
|
5
|
+
include AUTHORS.md
|
|
6
|
+
include CHANGELOG.md
|
|
7
|
+
include CONTRIBUTING.md
|
|
8
|
+
include CODE_OF_CONDUCT.md
|
|
9
|
+
include SECURITY.md
|
|
10
|
+
include CITATION.cff
|
|
11
|
+
|
|
12
|
+
include pyproject.toml
|
|
13
|
+
include requirements.txt
|
|
14
|
+
include requirements-dev.txt
|
|
15
|
+
|
|
16
|
+
include run_simulation.py
|
|
17
|
+
|
|
18
|
+
recursive-include entro_net *.py
|
|
19
|
+
recursive-include tests *.py
|
|
20
|
+
recursive-include examples *.py
|
|
21
|
+
recursive-include scripts *.sh *.py
|
|
22
|
+
|
|
23
|
+
recursive-include Netlify *.html *.css *.js
|
|
24
|
+
|
|
25
|
+
exclude .gitignore
|
|
26
|
+
exclude .dockerignore
|
|
27
|
+
exclude .gitlab-ci.yml
|
|
28
|
+
exclude .pre-commit-config.yaml
|
|
29
|
+
exclude .readthedocs.yaml
|
|
30
|
+
exclude Dockerfile
|
|
31
|
+
exclude Makefile
|
|
32
|
+
exclude COMPLETION.md
|
|
33
|
+
exclude COMPLETION_CERTIFICATE.txt
|
|
34
|
+
exclude ENTRO_EVO_COMPLETE_HISTORY.md
|
|
35
|
+
|
|
36
|
+
prune __pycache__
|
|
37
|
+
prune *.pyc
|
|
38
|
+
prune .pytest_cache
|
|
39
|
+
prune .coverage
|
|
40
|
+
prune htmlcov
|
entro_net-1.0.0/NOTICE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
ENTRO-NET (E-LAB-06)
|
|
2
|
+
Distributed Entropy Synchronization Protocols for Collective Neural Networks
|
|
3
|
+
Copyright (c) 2026 Samir Baladi
|
|
4
|
+
|
|
5
|
+
This product includes software developed as part of the EntropyLab Research Program:
|
|
6
|
+
|
|
7
|
+
- ENTROPIA (E-LAB-01) - Statistical Dynamics of Information Dissipation
|
|
8
|
+
DOI: 10.5281/zenodo.19416737
|
|
9
|
+
|
|
10
|
+
- ENTRO-AI (E-LAB-02) - Entropy-Resistant Inference Architecture
|
|
11
|
+
DOI: 10.5281/zenodo.19284086
|
|
12
|
+
|
|
13
|
+
- ENTRO-CORE (E-LAB-03) - Self-Regulated Intelligence
|
|
14
|
+
DOI: 10.5281/zenodo.19431029
|
|
15
|
+
|
|
16
|
+
- ENTRO-ENGINE (E-LAB-04) - Entropy Flow Regulator
|
|
17
|
+
DOI: 10.5281/zenodo.19441032
|
|
18
|
+
|
|
19
|
+
- ENTRO-EVO (E-LAB-05) - Adaptive Entropy Weighting for Self-Calibrating Intelligence Systems
|
|
20
|
+
DOI: 10.5281/zenodo.19464489
|
|
21
|
+
|
|
22
|
+
- ENTRO-NET (E-LAB-06) - Distributed Entropy Synchronization Protocols
|
|
23
|
+
DOI: 10.5281/zenodo.19474217
|
|
24
|
+
|
|
25
|
+
This software is released under the MIT License.
|
|
26
|
+
See the LICENSE file for details.
|
|
27
|
+
|
|
28
|
+
For more information: https://entro-net.netlify.app
|
|
29
|
+
Contact: gitdeeper@gmail.com
|