Skip to content

Commit f624891

Browse files
authored
Merge pull request #19 from CloudChaoszero/replace-pymc3-arviz-plots_part7
Replacing PyMC3 plots w/ Arviz plots & sigma Param change [Part 7]
2 parents 65463ba + 72c74f0 commit f624891

9 files changed

+1053
-886
lines changed

Diff for: examples/samplers/DEMetropolisZ_EfficiencyComparison.ipynb

+3-7
Original file line numberDiff line numberDiff line change
@@ -451,9 +451,7 @@
451451
{
452452
"cell_type": "code",
453453
"execution_count": 5,
454-
"metadata": {
455-
"scrolled": false
456-
},
454+
"metadata": {},
457455
"outputs": [
458456
{
459457
"data": {
@@ -530,9 +528,7 @@
530528
{
531529
"cell_type": "code",
532530
"execution_count": 6,
533-
"metadata": {
534-
"scrolled": false
535-
},
531+
"metadata": {},
536532
"outputs": [
537533
{
538534
"data": {
@@ -1373,7 +1369,7 @@
13731369
"name": "python",
13741370
"nbconvert_exporter": "python",
13751371
"pygments_lexer": "ipython3",
1376-
"version": "3.6.10"
1372+
"version": "3.8.5"
13771373
},
13781374
"widgets": {
13791375
"application/vnd.jupyter.widget-state+json": {

Diff for: examples/samplers/DEMetropolisZ_tune_drop_fraction.ipynb

+2-11
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,7 @@
127127
{
128128
"cell_type": "code",
129129
"execution_count": 5,
130-
"metadata": {
131-
"scrolled": false
132-
},
130+
"metadata": {},
133131
"outputs": [
134132
{
135133
"name": "stderr",
@@ -1387,13 +1385,6 @@
13871385
"%load_ext watermark\n",
13881386
"%watermark -n -u -v -iv -w"
13891387
]
1390-
},
1391-
{
1392-
"cell_type": "code",
1393-
"execution_count": null,
1394-
"metadata": {},
1395-
"outputs": [],
1396-
"source": []
13971388
}
13981389
],
13991390
"metadata": {
@@ -1412,7 +1403,7 @@
14121403
"name": "python",
14131404
"nbconvert_exporter": "python",
14141405
"pygments_lexer": "ipython3",
1415-
"version": "3.6.10"
1406+
"version": "3.8.5"
14161407
},
14171408
"widgets": {
14181409
"application/vnd.jupyter.widget-state+json": {

Diff for: examples/samplers/GLM-hierarchical-jax.ipynb

+56-56
Large diffs are not rendered by default.

Diff for: examples/samplers/MLDA_gravity_surveying.ipynb

+711-540
Large diffs are not rendered by default.

Diff for: examples/samplers/MLDA_introduction.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"name": "python",
110110
"nbconvert_exporter": "python",
111111
"pygments_lexer": "ipython3",
112-
"version": "3.6.9"
112+
"version": "3.8.5"
113113
}
114114
},
115115
"nbformat": 4,

Diff for: examples/samplers/MLDA_simple_linear_regression.ipynb

+62-101
Large diffs are not rendered by default.

Diff for: examples/samplers/MLDA_variance_reduction_linear_regression.ipynb

+212-164
Large diffs are not rendered by default.

Diff for: examples/samplers/SMC-ABC_Lotka-Volterra_example.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@
136136
],
137137
"source": [
138138
"with pm.Model() as example:\n",
139-
" a = pm.Normal(\"a\", mu=0, sd=5)\n",
140-
" b = pm.HalfNormal(\"b\", sd=1)\n",
139+
" a = pm.Normal(\"a\", mu=0, sigma=5)\n",
140+
" b = pm.HalfNormal(\"b\", sigma=1)\n",
141141
" s = pm.Simulator(\"s\", normal_sim, params=(a, b), sum_stat=\"sort\", epsilon=1, observed=data)\n",
142142
"\n",
143143
" trace, sim_data = pm.sample_smc(kernel=\"ABC\", parallel=True, save_sim_data=True)\n",
@@ -509,9 +509,9 @@
509509
],
510510
"metadata": {
511511
"kernelspec": {
512-
"display_name": "Python 3",
512+
"display_name": "Python (PyMC3 Dev)",
513513
"language": "python",
514-
"name": "python3"
514+
"name": "pymc3-dev"
515515
},
516516
"language_info": {
517517
"codemirror_mode": {
@@ -523,7 +523,7 @@
523523
"name": "python",
524524
"nbconvert_exporter": "python",
525525
"pygments_lexer": "ipython3",
526-
"version": "3.7.6"
526+
"version": "3.8.5"
527527
}
528528
},
529529
"nbformat": 4,

Diff for: examples/samplers/SMC2_gaussians.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@
444444
"name": "python",
445445
"nbconvert_exporter": "python",
446446
"pygments_lexer": "ipython3",
447-
"version": "3.7.6"
447+
"version": "3.8.5"
448448
}
449449
},
450450
"nbformat": 4,

0 commit comments

Comments
 (0)