A Python toolkit for risk assessment in high-dimensional systems
MBNpy is a Python implementation of the Matrix-based Bayesian Network (MBN) — a scalable Bayesian network (BN) framework designed to handle complex, high-dimensional system events.
It focuses on discrete-state component events, which present distinct characteristics compared to continuous-state models.
MBNpy enables the construction of interpretable and updatable BN models, even in systems with a large number of components. Its core functionalities include:
Encoding high-dimensional system event distributions to enable scalable Bayesian inference.
Automated encoding algorithms tailored to different types of systems (e.g., parallel/series, multi-state k-out-of-N systems, and general coherent systems).
For general system events, interpretability and real-time updates through automatic identification of failure and survival rules.
Bayesian network
BN is a probabilistic graphical model that visualises statistical dependencies between variables. A typical BN graph for a system event is as follows:
BN is a very useful tool for probabilistic analysis of engineering systems:
a complex joint probability distribution can be readily quantified by being broken down to local distributions between directly connected components; and
new information can be systematically incorporated to update an entire model through observation nodes.
However, the problem arises from the converging structure between components X1,⋯,XN and system S. The relationship is defined by the (N+1)-dimensional distribution P(S|X1,⋯,XN).
When a system has 50 binary-state components, there are more than 1015 possible state combinations; if a combination can be analysed for 0.001 seconds, it takes 35,702 years to complete computation.
MBN vs. BN
MBN solves the challenge by two approahces:
It provides encoding algorithms to quantify P(S|X1,⋯,XN) for various classes of system events. A summary of solvable system classes is available at MBNPy's system catalogue.
It provides advanced BN inference and optimisation algorithms specialised for handling large-scale systems.
Citation
For general use of MBNPy, Byun and Song (2021) can be cited. For other specific uses, a summary of developments and publications are available at Publications.