Technical Documentation · API Reference · Distributed Entropy Synchronization

ENTRO-NET

Documentation

Complete guide for distributed entropy synchronization in collective neural networks.
Ψ-Sync Protocol: E_sync,i = Σ κ·(Ψ_j - Ψ_i) · Collective-AEW: ∇L_collective = ∇L_local + β·∇L_network

DOI: 10.5281/zenodo.19474217 Python 3.11+ MIT License 40+ Tests E-LAB-06
v1.0.0 · ENTRO-NET Released: April 8, 2026 Saturation Ceiling: σ²_max ≈ 0.23 Critical N: ≈ 6-8

From self-calibration to collective synchronization

"Stability is not an individual property — it is a collective effort." — Samir Baladi, April 2026

ENTRO-NET extends adaptive entropy weighting from individual systems to distributed networks. Multiple nodes physically share stability states through the Ψ-Sync protocol, preventing cascading failure via synchronized entropy flow. Built upon ENTRO-EVO (E-LAB-05), this work demonstrates that stability emerges from collective coordination.

0.0002
Min Variance (N=5)
Optimal stability regime
0.22
Saturation Ceiling
σ²_max at large N
57.1%
Variance Reduction
N=5 scraper regime
15
Max Validated N
Stable up to 50

Entropy Sync · Collective AEW · θ_net

// ENTRO-NET builds on ENTRO-EVO's AEW optimizer // Extended to distributed multi-node networks // Ψ-Sync Protocol (Entropy Exchange Law) E_sync,i = Σ κ·(Ψ_j - Ψ_i) // Collective-AEW Update (with cooperation) ∇L_collective = ∇L_local + β·∇L_network // Networked Threshold (variance-sensitive) θ_net = θ_base + γ·Var(Ψ_i)

Entropy Exchange Law

// Collective State Equation Ψ_total(t) = Σ λ_i·Ψ_i(t) + C_sync(t) // Entropy Exchange (stability flows to stressed nodes) E_sync,i = Σ κ·(Ψ_j - Ψ_i) // Enhanced with adaptive cubic term for aggression E_sync,i = Σ [α·κ·(Ψ_j - Ψ_i) + α²·(Ψ_j - Ψ_i)³]
ParameterSymbolValueDescription
Synchronization constantκ0.1-2.0Controls stability transfer speed
Coupling coefficientC_sync0.05-0.9Network coupling strength
Node weightsλ_i1/NRelative importance in network

Collaborative Weight Adaptation

// Local gradient (from individual node) ∇L_local = 2·(Ψ_norm - Ψ*)·[1-Ψ_norm, dΨ/dt, d²Ψ/dt²] // Network gradient (from collective stability history) ∇L_network = f(network_errors, reward_signal) // Collective update with adaptive cooperation ∇L_collective = ∇L_local + β·∇L_network w_new = w_old - η·∇L_collective
ParameterSymbolValueDescription
Learning rateη0.01Weight update speed
Cooperation coefficientβ0.3-1.0How much nodes learn from neighbors
Momentumμ0.9Smoother weight updates

Variance-Sensitive Activation

// Networked threshold equation θ_net = θ_base + γ·Var(Ψ_i) // Higher variance → higher threshold (more cautious) // Parameters: θ_base = 1.4, γ = 2.5-20.0

Extended N = 20, 30, 50

NVariance (mean ± std)Linear PredictionDeviation
200.165380 ± 0.0021690.1689-0.0035
300.197713 ± 0.0022040.2699-0.0722
500.221481 ± 0.0006770.4719-0.2504
Linear (N≤15)
σ² = 0.0101·N - 0.0331
R² = 0.986
Saturation (N≥25)
σ² → 0.22
Variance ceiling
Crossover
N ≈ 15-25
Transition zone

Bounded Variance Growth

// Proposed saturation model σ²(N) = σ²_max · (1 - e^{-N/N₀}) // Fitted parameters (R² = 0.992) σ²_max = 0.228 (saturation ceiling) N₀ = 16.2 (characteristic scale) // Key insight: No catastrophic failure up to N=50 // Variance remains bounded, system self-regulates
"ENTRO-NET does not exhibit unbounded variance growth under scaling. Instead, it transitions from linear accumulation to a saturation regime, indicating intrinsic regulation mechanisms."

Quick setup

# Install from PyPI pip install entro-net # Clone repository git clone https://github.com/gitdeeper10/ENTRO-NET.git cd ENTRO-NET # Install with pip pip install -r requirements.txt pip install -e . # Verify installation python -c "from entro_net import __version__; print(__version__)"

Python interface

PsiSync
Ψ-Sync Protocol for entropy exchange between nodes
from entro_net import PsiSync sync = PsiSync(n_nodes=5, kappa=1.0, aggression=1.0) synced_states = sync.broadcast(psi_states)
CollectiveAEW
Collective Adaptive Entropy Weighting optimizer
from entro_net import CollectiveAEW aew = CollectiveAEW(eta=0.01, target=0.339, beta=1.0) weights = aew.step(avg_psi, avg_d_psi, avg_d2_psi, network_errors)
NetThreshold
Networked dynamic activation threshold
from entro_net import NetThreshold threshold = NetThreshold(theta_base=1.4, gamma=10.0) theta_net = threshold.update(psi_states)
FaultIsolation
Automatic node isolation for cascading failure prevention
from entro_net import FaultIsolation iso = FaultIsolation(psi_critical=0.8) iso.check_node(node_id, psi)

ENTRO-NET architecture

psi_sync.py
Ψ-Sync Protocol
Entropy exchange & coupling
collective_aew.py
Collective-AEW
Collaborative weight learning
net_threshold.py
Net Threshold
Variance-sensitive activation
fault_isolation.py
Fault Isolation
Cascading failure prevention

Principal investigator

🔴

Samir Baladi

Interdisciplinary AI Researcher — Theoretical Physics, Statistical Mechanics & Information Theory
Ronin Institute / Rite of Renaissance
Samir Baladi is an independent researcher affiliated with the Ronin Institute, developing the Rite of Renaissance interdisciplinary research program. ENTRO-NET is the sixth project (E-LAB-06) in a ten-project research program, building directly on ENTROPIA (E-LAB-01), ENTRO-AI (E-LAB-02), ENTRO-CORE (E-LAB-03), ENTRO-ENGINE (E-LAB-04) and ENTRO-EVO (E-LAB-05).
No conflicts of interest declared. All code and data are open-source under MIT License.

How to cite

@software{baladi2026entronet, author = {Samir Baladi}, title = {ENTRO-NET: Distributed Entropy Synchronization Protocols for Collective Neural Networks}, year = {2026}, version = {1.0.0}, publisher = {Zenodo}, doi = {10.5281/zenodo.19474217}, url = {https://doi.org/10.5281/zenodo.19474217}, note = {E-LAB-06. Builds on E-LAB-01 through E-LAB-05} } @software{baladi2026entropia, title = {ENTROPIA: Statistical Dynamics of Information Dissipation}, author = {Samir Baladi}, year = {2026}, doi = {10.5281/zenodo.19416737}, note = {E-LAB-01} } @software{baladi2026entroai, author = {Samir Baladi}, title = {ENTRO-AI: Entropy-Resistant Inference Architecture}, year = {2026}, version = {2.0.0}, doi = {10.5281/zenodo.19284086}, note = {E-LAB-02} } @software{baladi2026entrocore, author = {Samir Baladi}, title = {ENTRO-CORE: Self-Regulated Intelligence}, year = {2026}, version = {1.0.0}, doi = {10.5281/zenodo.19431029}, note = {E-LAB-03} } @software{baladi2026entroengine, author = {Samir Baladi}, title = {ENTRO-ENGINE: Entropy Flow Regulator}, year = {2026}, version = {1.0.0}, doi = {10.5281/zenodo.19441032}, note = {E-LAB-04} } @software{baladi2026entrovevo, author = {Samir Baladi}, title = {ENTRO-EVO: Adaptive Entropy Weighting for Self-Calibrating Systems}, year = {2026}, version = {1.0.0}, doi = {10.5281/zenodo.19464489}, note = {E-LAB-05} }
"Stability is not an individual property — it is a collective effort. ENTRO-NET proves that synchronized entropy flow prevents cascading failure and creates networks of physically honest intelligence."

Start Exploring

Access the complete framework, scaling data, and Python package.