Using pyAgrum

Creative Commons License

aGrUM

interactive online version

In [1]:
%matplotlib inline
from pylab import *
import matplotlib.pyplot as plt

import os

Initialisation

  • importing pyAgrum

  • importing pyAgrum.lib tools

  • loading a BN

In [2]:
import pyAgrum as gum
import pyAgrum.lib.notebook as gnb
gnb.configuration()
LibraryVersion
OSposix [darwin]
Python3.12.1 (main, Dec 7 2023, 20:45:44) [Clang 15.0.0 (clang-1500.1.0.2.5)]
IPython8.21.0
Matplotlib3.8.2
Numpy1.26.4
pyDot2.0.0
pyAgrum1.12.0
Wed Feb 14 15:31:28 2024 CET
In [3]:
bn=gum.loadBN("res/alarm.dsl")
gnb.showBN(bn,size='9')
../_images/notebooks_02-Tutorial_Tutorial2_5_0.svg

Visualisation and inspection

In [4]:
print(bn['SHUNT'])
SHUNT:Labelized({NORMAL|HIGH})
In [5]:
print(bn.cpt(bn.idFromName('SHUNT')))

             ||  SHUNT            |
PULMEM|INTUBA||NORMAL   |HIGH     |
------|------||---------|---------|
TRUE  |NORMAL|| 0.1000  | 0.9000  |
FALSE |NORMAL|| 0.9500  | 0.0500  |
TRUE  |ESOPHA|| 0.1000  | 0.9000  |
FALSE |ESOPHA|| 0.9500  | 0.0500  |
TRUE  |ONESID|| 0.0100  | 0.9900  |
FALSE |ONESID|| 0.0500  | 0.9500  |

In [6]:
gnb.showPotential(bn.cpt(bn.idFromName('SHUNT')),digits=3)
SHUNT
INTUBATION
PULMEMBOLUS
NORMAL
HIGH
NORMAL
TRUE
0.1000.900
FALSE
0.9500.050
ESOPHAGEAL
TRUE
0.1000.900
FALSE
0.9500.050
ONESIDED
TRUE
0.0100.990
FALSE
0.0500.950

Results of inference

It is easy to look at result of inference

In [7]:
gnb.showPosterior(bn,{'SHUNT':'HIGH'},'PRESS')
../_images/notebooks_02-Tutorial_Tutorial2_11_0.svg
In [8]:
gnb.showPosterior(bn,{'MINVOLSET':'NORMAL'},'VENTALV')
../_images/notebooks_02-Tutorial_Tutorial2_12_0.svg

Overall results

In [9]:
gnb.showInference(bn,size="10")
../_images/notebooks_02-Tutorial_Tutorial2_14_0.svg

What is the impact of observed variables (SHUNT and VENTALV for instance) on another on (PRESS) ?

In [10]:
ie=gum.LazyPropagation(bn)
ie.evidenceImpact('PRESS',['SHUNT','VENTALV'])
Out[10]:
PRESS
SHUNT
VENTALV
ZERO
LOW
NORMAL
HIGH
NORMAL
ZERO
0.05690.26690.20050.4757
LOW
0.02080.25150.05530.6724
NORMAL
0.07690.32670.17720.4192
HIGH
0.05010.16330.27960.5071
HIGH
ZERO
0.05890.27260.19970.4688
LOW
0.03180.22370.05210.6924
NORMAL
0.17350.58390.14020.1024
HIGH
0.07110.23470.25330.4410

Using inference as a function

It is also easy to use inference as a routine in more complex procedures.

In [11]:
import time
r=range(0,100)
xs=[x/100.0 for x in r]

tf=time.time()
ys=[gum.getPosterior(bn,evs={'MINVOLSET':[0,x/100.0,0.5]},target='VENTALV').tolist()
        for x in r]
delta=time.time()-tf

p=plot(xs,ys)
legend(p,[bn['VENTALV'].label(i)
          for i in range(bn['VENTALV'].domainSize())],loc=7);
title('VENTALV (100 inferences in %d ms)'%delta);
ylabel('posterior Probability');
xlabel('Evidence on MINVOLSET : [0,x,0.5]')
plt.show()
../_images/notebooks_02-Tutorial_Tutorial2_18_0.svg

Another example : python gives access to a large set of tools. Here the value for the equality of two probabilities of a posterior is easely computed.

In [12]:
x=[p/100.0 for p in range(0,100)]

tf=time.time()
y=[gum.getPosterior(bn,evs={'HRBP':[1.0-p/100.0,1.0-p/100.0,p/100.0]},target='TPR').tolist()
   for p in range(0,100)]
delta=time.time()-tf

p=plot(x,y)
title('HRBP (100 inferences in %d ms)'%delta);
v=bn['TPR']
legend([v.label(i) for i in range(v.domainSize())],loc='best');
np1=(transpose(y)[0]>transpose(y)[2]).argmin()
text(x[np1]-0.05,y[np1][0]+0.005,str(x[np1]),bbox=dict(facecolor='red', alpha=0.1))
plt.show()
../_images/notebooks_02-Tutorial_Tutorial2_20_0.svg

BN as a classifier

Generation of databases

Using the CSV format for the database:

In [13]:
print(f"The log2-likelihood of the generated base : {gum.generateSample(bn,1000,'out/test.csv',with_labels=True):.2f}")
The log2-likelihood of the generated base : -15408.53
In [14]:
with open("out/test.csv","r") as src:
    for _ in range(10):
        print(src.readline(),end="")
KINKEDTUBE,CVP,SHUNT,BP,FIO2,MINVOLSET,HYPOVOLEMIA,ANAPHYLAXIS,PVSAT,HREKG,VENTLUNG,ARTCO2,EXPCO2,INSUFFANESTH,PCWP,DISCONNECT,LVFAILURE,PAP,PULMEMBOLUS,STROKEVOLUME,PRESS,SAO2,VENTMACH,TPR,HR,HISTORY,MINVOL,INTUBATION,CATECHOL,HRBP,ERRLOWOUTPUT,LVEDVOLUME,HRSAT,ERRCAUTER,VENTTUBE,VENTALV,CO
FALSE,NORMAL,HIGH,HIGH,LOW,NORMAL,FALSE,FALSE,LOW,HIGH,ZERO,HIGH,LOW,FALSE,LOW,FALSE,FALSE,NORMAL,FALSE,NORMAL,NORMAL,LOW,NORMAL,LOW,HIGH,FALSE,NORMAL,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,LOW,ZERO,HIGH
FALSE,NORMAL,NORMAL,NORMAL,NORMAL,NORMAL,FALSE,FALSE,LOW,HIGH,ZERO,HIGH,LOW,TRUE,NORMAL,FALSE,FALSE,NORMAL,FALSE,NORMAL,LOW,LOW,NORMAL,LOW,HIGH,FALSE,ZERO,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,LOW,ZERO,HIGH
FALSE,HIGH,NORMAL,LOW,NORMAL,NORMAL,FALSE,FALSE,LOW,HIGH,ZERO,HIGH,LOW,FALSE,HIGH,FALSE,TRUE,NORMAL,FALSE,NORMAL,HIGH,LOW,NORMAL,LOW,NORMAL,TRUE,ZERO,NORMAL,HIGH,LOW,FALSE,HIGH,LOW,FALSE,LOW,ZERO,NORMAL
FALSE,NORMAL,NORMAL,HIGH,NORMAL,NORMAL,FALSE,FALSE,HIGH,HIGH,ZERO,HIGH,LOW,FALSE,NORMAL,FALSE,FALSE,NORMAL,FALSE,NORMAL,LOW,NORMAL,NORMAL,HIGH,HIGH,FALSE,ZERO,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,LOW,ZERO,HIGH
FALSE,HIGH,NORMAL,LOW,NORMAL,NORMAL,TRUE,FALSE,LOW,LOW,ZERO,HIGH,LOW,FALSE,HIGH,FALSE,FALSE,NORMAL,FALSE,LOW,HIGH,LOW,NORMAL,NORMAL,NORMAL,FALSE,ZERO,NORMAL,NORMAL,LOW,FALSE,HIGH,LOW,FALSE,LOW,ZERO,LOW
TRUE,NORMAL,NORMAL,LOW,NORMAL,NORMAL,FALSE,FALSE,NORMAL,HIGH,HIGH,HIGH,HIGH,FALSE,NORMAL,FALSE,FALSE,NORMAL,FALSE,NORMAL,HIGH,LOW,NORMAL,LOW,HIGH,FALSE,LOW,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,LOW,LOW,HIGH
FALSE,LOW,NORMAL,NORMAL,NORMAL,NORMAL,FALSE,FALSE,LOW,HIGH,ZERO,HIGH,LOW,FALSE,NORMAL,FALSE,FALSE,NORMAL,FALSE,HIGH,LOW,LOW,NORMAL,NORMAL,HIGH,FALSE,ZERO,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,LOW,ZERO,HIGH
FALSE,NORMAL,NORMAL,NORMAL,NORMAL,HIGH,FALSE,FALSE,NORMAL,HIGH,LOW,HIGH,NORMAL,FALSE,NORMAL,FALSE,FALSE,NORMAL,FALSE,NORMAL,HIGH,LOW,HIGH,NORMAL,HIGH,FALSE,LOW,NORMAL,HIGH,HIGH,FALSE,NORMAL,HIGH,FALSE,HIGH,LOW,HIGH
FALSE,NORMAL,NORMAL,HIGH,NORMAL,NORMAL,FALSE,FALSE,LOW,HIGH,ZERO,HIGH,LOW,FALSE,NORMAL,FALSE,FALSE,NORMAL,FALSE,NORMAL,LOW,LOW,ZERO,NORMAL,HIGH,FALSE,ZERO,NORMAL,HIGH,LOW,FALSE,NORMAL,HIGH,FALSE,ZERO,ZERO,HIGH

probabilistic classifier using BN

(because of the use of from-bn-generated csv files, quite good ROC curves are expected)

In [15]:
from pyAgrum.lib.bn2roc import showROC_PR

showROC_PR(bn,"out/test.csv",
        target='CATECHOL',label='HIGH',  # class and label
        show_progress=True,show_fig=True,with_labels=True)
out/test.csv: 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|
../_images/notebooks_02-Tutorial_Tutorial2_26_1.svg
Out[15]:
(0.9632542996321702, 0.9300899828, 0.9983407204094661, 0.1340682802)

Using another class variable

In [16]:
showROC_PR(bn,"out/test.csv",'SAO2','HIGH',show_progress=True)
out/test.csv: 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|
../_images/notebooks_02-Tutorial_Tutorial2_28_1.svg
Out[16]:
(0.9295594262295083, 0.0082631642, 0.6378475449014709, 0.09816538375)

Fast prototyping for BNs

In [17]:
bn1=gum.fastBN("a->b;a->c;b->c;c->d",3)

gnb.sideBySide(*[gnb.getInference(bn1,evs={'c':val},targets={'a','c','d'}) for val in range(3)],
              captions=[f"Inference given that $c={val}$" for val in range(3)])
structs Inference in   0.50ms a 2024-02-14T15:31:32.725756 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b b a->b c 2024-02-14T15:31:32.747503 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ a->c b->c d 2024-02-14T15:31:32.769436 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ c->d
Inference given that $c=0$
structs Inference in   0.56ms a 2024-02-14T15:31:32.989182 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b b a->b c 2024-02-14T15:31:33.023985 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ a->c b->c d 2024-02-14T15:31:33.052411 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ c->d
Inference given that $c=1$
structs Inference in   0.56ms a 2024-02-14T15:31:33.337368 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b b a->b c 2024-02-14T15:31:33.366297 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ a->c b->c d 2024-02-14T15:31:33.404423 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ c->d
Inference given that $c=2$
In [18]:
print(gum.getPosterior(bn1,evs={'c':0},target='c'))
print(gum.getPosterior(bn1,evs={'c':0},target='d'))

# using pyagrum.lib.notebook's helpers
gnb.flow.row(gum.getPosterior(bn1,evs={'c':0},target='c'),gum.getPosterior(bn1,evs={'c':0},target='d'))

  c                          |
0        |1        |2        |
---------|---------|---------|
 1.0000  | 0.0000  | 0.0000  |


  d                          |
0        |1        |2        |
---------|---------|---------|
 0.3195  | 0.6328  | 0.0477  |

c
0
1
2
1.00000.00000.0000
d
0
1
2
0.31950.63280.0477

Joint posterior, impact of multiple evidence

In [19]:
bn=gum.fastBN("a->b->c->d;b->e->d->f;g->c")
gnb.sideBySide(bn,gnb.getInference(bn))
G d d f f d->f c c c->d b b b->c e e b->e g g g->c e->d a a a->b
structs Inference in   2.17ms a 2024-02-14T15:31:33.656463 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b 2024-02-14T15:31:33.710497 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ a->b c 2024-02-14T15:31:33.741859 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b->c e 2024-02-14T15:31:33.804377 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ b->e d 2024-02-14T15:31:33.773996 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ c->d f 2024-02-14T15:31:33.835034 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ d->f e->d g 2024-02-14T15:31:33.866623 image/svg+xml Matplotlib v3.8.2, https://matplotlib.org/ g->c
In [20]:
ie=gum.LazyPropagation(bn)
ie.addJointTarget({"e","f","g"})
ie.makeInference()
gnb.sideBySide(ie.jointPosterior({"e","f","g"}),ie.jointPosterior({"e","g"}),
               captions=["Joint posterior $P(e,f,g)$","Joint posterior $P(e,f)$"])
g
f
e
0
1
0
0
0.12700.1345
1
0.15390.1622
1
0
0.08770.0928
1
0.11710.1248

Joint posterior $P(e,f,g)$
g
e
0
1
0
0.21470.2274
1
0.27100.2870

Joint posterior $P(e,f)$
In [21]:
gnb.sideBySide(ie.evidenceImpact("a",["e","f"]),ie.evidenceImpact("a",["d","e","f"]),
              captions=["$\\forall e,f, P(a|e,f)$",
                        "$\\forall d,e,f, P(a|d,e,f)=P(a|d,e)$ using d-separation"]
                        )
a
f
e
0
1
0
0
0.65180.3482
1
0.68840.3116
1
0
0.64970.3503
1
0.68940.3106

$\forall e,f, P(a|e,f)$
a
e
d
0
1
0
0
0.65440.3456
1
0.64340.3566
1
0
0.68670.3133
1
0.69160.3084

$\forall d,e,f, P(a|d,e,f)=P(a|d,e)$ using d-separation
In [22]:
gnb.sideBySide(ie.evidenceJointImpact(["a","b"],["e","f"]),ie.evidenceJointImpact(["a","b"],["d","e","f"]),
              captions=["$\\forall e,f, P(a,b|e,f)$",
                        "$\\forall d,e,f, P(a,b|d,e,f)=P(a,b|d,e)$ using d-separation"]
                        )
b
f
e
a
0
1
0
0
0
0.27620.3756
1
0.24380.1044
1
0
0.19880.4896
1
0.17550.1361
1
0
0
0.28050.3692
1
0.24760.1027
1
0
0.19670.4927
1
0.17360.1370

$\forall e,f, P(a,b|e,f)$
b
e
d
a
0
1
0
0
0
0.27070.3837
1
0.23890.1067
1
0
0.29400.3494
1
0.25940.0972
1
0
0
0.20230.4844
1
0.17860.1347
1
0
0.19210.4995
1
0.16950.1389

$\forall d,e,f, P(a,b|d,e,f)=P(a,b|d,e)$ using d-separation

Most Probable Explanation

The Most Probable Explanation (MPE) is a concept commonly used in the field of probabilistic reasoning and Bayesian statistics. It refers to the set of values for the variables in a given probabilistic model that is the most consistent with (that maximizes the likelihood of) the observed evidence. Essentially, it represents the most likely scenario or explanation given the available evidenceand the underlying probabilistic model.

In [23]:
ie=gum.LazyPropagation(bn)
print(ie.mpe())
<d:0|e:1|c:0|b:1|a:0|g:1|f:0>
In [24]:
evs={"e":0,"g":0}
ie.setEvidence(evs)
vals=ie.mpeLog2Posterior()
print(f"The most probable explanation for observation {evs} is the configuration {vals.first} for a log probability of {vals.second:.6f}")
The most probable explanation for observation {'e': 0, 'g': 0} is the configuration <g:0|e:0|d:0|f:0|c:0|b:1|a:0> for a log probability of -3.204400
In [ ]: