FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Doing_bayesian_data_analysis/10_ToyModelCompPyMC.py at master · lbfang/Doing_bayesian_data_analysis · GitHub
lbfang
/
Doing_bayesian_data_analysis
Public
forked from
aloctavodia/Doing_bayesian_data_analysis
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Doing_bayesian_data_analysis
/
10_ToyModelCompPyMC.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
66 lines (53 loc) · 1.74 KB
Breadcrumbs
Doing_bayesian_data_analysis
/
10_ToyModelCompPyMC.py
Copy path
File metadata and controls
66 lines (53 loc) · 1.74 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
Comparing models using Hierarchical modelling. Toy Model.
"""
from
__future__
import
division
import
numpy
as
np
import
pymc3
as
pm
import
matplotlib
.
pyplot
as
plt
plt
.
style
.
use
(
'seaborn-darkgrid'
)
# THE DATA.
N
=
30
z
=
8
y
=
np
.
repeat
([
1
,
0
], [
z
,
N
-
z
])
# THE MODEL.
with
pm
.
Model
()
as
model
:
# Hyperprior on model index:
model_index
=
pm
.
DiscreteUniform
(
'model_index'
,
lower
=
0
,
upper
=
1
)
# Prior
nu
=
pm
.
Normal
(
'nu'
,
mu
=
0
,
tau
=
0.1
)
# it is posible to use tau or sd
eta
=
pm
.
Gamma
(
'eta'
,
.1
,
.1
)
theta0
=
1
/
(
1
+
pm
.
math
.
exp
(
-
nu
))
# theta from model index 0
theta1
=
pm
.
math
.
exp
(
-
eta
)
# theta from model index 1
theta
=
pm
.
math
.
switch
(
pm
.
math
.
eq
(
model_index
,
0
),
theta0
,
theta1
)
# Likelihood
y
=
pm
.
Bernoulli
(
'y'
,
p
=
theta
,
observed
=
y
)
# Sampling
trace
=
pm
.
sample
(
1000
)
# EXAMINE THE RESULTS.
## Print summary for each trace
#pm.summary(trace)
## Check for mixing and autocorrelation
#pm.autocorrplot(trace, vars =[nu, eta])
## Plot KDE and sampled values for each parameter.
#pm.traceplot(trace)
model_idx_sample
=
trace
[
'model_index'
]
pM1
=
sum
(
model_idx_sample
==
0
)
/
len
(
model_idx_sample
)
pM2
=
1
-
pM1
nu_sample_M1
=
trace
[
'nu'
][
model_idx_sample
==
0
]
eta_sample_M2
=
trace
[
'eta'
][
model_idx_sample
==
1
]
plt
.
figure
()
plt
.
subplot
(
2
,
1
,
1
)
pm
.
plot_posterior
(
nu_sample_M1
)
plt
.
xlabel
(
r'$\nu$'
)
plt
.
ylabel
(
'frequency'
)
plt
.
title
(
r'p($\nu$|D,M2), with p(M2|D)={:.3}f'
.
format
(
pM1
),
fontsize
=
14
)
plt
.
xlim
(
-
8
,
8
)
plt
.
subplot
(
2
,
1
,
2
)
pm
.
plot_posterior
(
eta_sample_M2
)
plt
.
xlabel
(
r'$\eta$'
)
plt
.
ylabel
(
'frequency'
)
plt
.
title
(
r'p($\eta$|D,M2), with p(M2|D)={:.3f}'
.
format
(
pM2
),
fontsize
=
14
)
plt
.
xlim
(
0
,
8
)
plt
.
savefig
(
'figure_ex_10.2_a.png'
)
plt
.
show
()
Back
|
FazBrowse Home
|
New Git URL