From 3c1f984f8f4f3c45d037c77d3fbdec19b20aa807 Mon Sep 17 00:00:00 2001 From: Elizaveta Semenova Date: Tue, 26 Nov 2024 14:26:49 +0200 Subject: [PATCH] change 'evaluate probabiltiy of a continuos X' to 'evaluate PDF' --- 04_probability_distributions.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_probability_distributions.ipynb b/04_probability_distributions.ipynb index 984f5a9..0e9bb08 100644 --- a/04_probability_distributions.ipynb +++ b/04_probability_distributions.ipynb @@ -1294,7 +1294,7 @@ "\n", "All distributions in `numpyro` have an `event_shape` which describes how many dimensions the random variable is, e.g., for a 2-dimensional normal distribution this would be 2, and a `batch_shape` which describes how many sets of parameters the distribution has – it is probably easier to show what this means with the following examples rather than tell.\n", "\n", - "Let's first look at a simple univariate normal $\\mathcal{N}(x|0, 1)$. We will evaluate the probabilities of $X = 1$ and $X = 2$:" + "Let's first look at a simple univariate normal $\\mathcal{N}(x|0, 1)$. We will evaluate the PDFs at $X = 1$ and $X = 2$:" ] }, {