pip install entro-dasa
from entro_dasa import DASAGovernor # Initialize with sovereign attractor at origin governor = DASAGovernor(attractor=[0.0, 0.0, 0.0]) # X: trajectory state matrix (n_points, 3) result = governor.run(X, T_max=500) print(result.label) # "CONSISTENCY_LOCK" | "MONITORING" | "CRITICAL" print(result.ccs_score) # float in [0, 1] print(result.breakdown) # {"DCE": 0.94, "ALG": 0.97, "CL": 0.96, "SAM": 0.99} print(result.entropy_ceri) # Cognitive Entropy Reduction Index (0.94 at σ=0.15)
from entro_dasa import DASAGovernor governor = DASAGovernor( attractor=[0.0, 0.0, 0.0], params={ "alpha": 1.05, # amplification: critical deviation response "beta": 0.98, # damping: near-attractor softening "theta": 0.80, # critical deviation threshold "gamma": 0.05, # computational step rate "kappa_s": 0.10, # inter-trajectory sync coefficient "sigma": 0.15, # environmental noise level } ) result = governor.run(X, T_max=500, n_swarms=3) print(result.ccs_score, result.label)
from entro_dasa import DASAGovernor from entro_dasa.adaptive import AdaptiveFeedback # Load outer-loop adaptive parameter optimizer adapter = AdaptiveFeedback.from_pretrained("default") governor = DASAGovernor( attractor=[0.0, 0.0, 0.0], adapter=adapter ) # Adapter recalibrates α, β, θ, κ_s at runtime result = governor.run(X, T_max=500) print(result.adapted_params) # final calibrated parameter values print(result.meta_confidence) # P(Lock | score_vector)
# Launch real-time 3D Streamlit dashboard # Live trajectory rendering · CCS time-series · SAM signals $ streamlit run examples/streamlit_live.py # Dashboard at: http://localhost:8501 # Features: # · 3D Plotly point-cloud: T₁ T₂ T₃ swarms + A* attractor # · Live CCS / deviation time-series (200-step rolling window) # · Consistency Basin sphere overlay # · 🔴🟠🟢 SAM signal status panel # · JSON/CSV archive with SHA-256 checksums
git clone https://github.com/gitdeeper12/ENTRO-DASA.git
git clone https://gitlab.com/gitdeeper12/ENTRO-DASA.git
git clone https://bitbucket.org/gitdeeper-12/ENTRO-DASA.git
git clone https://codeberg.org/gitdeeper12/ENTRO-DASA.git
@software{baladi2026entrodasa_pypi,
author = {Baladi, Samir},
title = {{ENTRO-DASA}: Dynamic Autonomous Sovereignty Algorithm},
year = {2026},
version = {10.2.0},
publisher = {Python Package Index},
url = {https://pypi.org/project/entro-dasa},
note = {Python package, MIT License, EntropyLab Series E-LAB-12}
}
@dataset{baladi2026entrodasa_zenodo,
author = {Baladi, Samir},
title = {{ENTRO-DASA}: Dynamic Autonomous Sovereignty Algorithm —
Research Paper and Simulation Data},
year = {2026},
publisher = {Zenodo},
version = {10.2.0},
doi = {10.5281/zenodo.20353988},
url = {https://doi.org/10.5281/zenodo.20353988},
series = {E-LAB-12}
}
@misc{baladi2026entrodasa_osf,
author = {Baladi, Samir},
title = {{ENTRO-DASA} Framework: Pre-registered Study Protocol for
Cybernetic Governance of Dissipative Cognition Systems},
year = {2026},
publisher = {Open Science Framework},
doi = {10.17605/OSF.IO/XXXXX},
url = {https://doi.org/10.17605/OSF.IO/XXXXX},
note = {OSF Preregistration}
}
@article{baladi2026entrodasa,
author = {Baladi, Samir},
title = {{ENTRO-DASA}: A Cybernetic Framework for Multi-Trajectory
Attractor Guidance and Self-Regulating Consistency Locks
in Dissipative Cognition Systems},
year = {2026},
month = {May},
series = {E-LAB-12},
version = {10.2.0},
doi = {10.5281/zenodo.20353988},
url = {https://doi.org/10.5281/zenodo.20353988}
}
Baladi, S. (2026). ENTRO-DASA: A Cybernetic Framework for Multi-Trajectory Attractor Guidance and Self-Regulating Consistency Locks in Dissipative Cognition Systems (Version 10.2.0, Series E-LAB-12). Zenodo. https://doi.org/10.5281/zenodo.20353988