We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d668cf4 commit 33735e2Copy full SHA for 33735e2
lectures/ar1_turningpts.md
@@ -49,24 +49,24 @@ import matplotlib.pyplot as plt
49
import seaborn as sns
50
from typing import NamedTuple
51
52
+# numpyro
53
+import numpyro
54
+import numpyro.distributions as dist
55
+from numpyro.infer import MCMC, NUTS
56
+numpyro.set_host_device_count(4)
57
+
58
# jax
59
import jax
60
import jax.random as random
61
import jax.numpy as jnp
62
from jax import lax
63
-# numpyro
-import numpyro
-import numpyro.distributions as dist
-from numpyro.infer import MCMC, NUTS
-
64
# arviz
65
import arviz as az
66
67
sns.set_style('white')
68
colors = sns.color_palette()
69
key = random.PRNGKey(0)
-numpyro.set_host_device_count(4)
70
```
71
72
## A Univariate First-Order Autoregressive Process
0 commit comments