Skip to content

Commit 069e312

Browse files
authored
Merge pull request #86 from CUQI-DTU/fix_small_typo
Fix a typo and remove redundant display of sample shape
2 parents 2ed61f9 + e9c69bb commit 069e312

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
**Note: the mini-book is under construction**
2-
31
It is available at https://cuqi-dtu.github.io/CUQI-Book

chapter03/basics_distributions.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"source": [
88
"# Introduction to distributions and basic sampling in CUQIpy\n",
99
"\n",
10-
"This notebooks describes basic usage of distributions in CUQIpy including visualizing their probability density function (PDF) and cumulative distribution function (CDF), and generating samples. Then conditional distributions are demonstrated along with the creation of user-defined distributions.\n",
10+
"This notebook describes basic usage of distributions in CUQIpy including visualizing their probability density function (PDF) and cumulative distribution function (CDF), and generating samples. Then conditional distributions are demonstrated along with the creation of user-defined distributions.\n",
1111
"\n",
1212
"\n",
1313
"## Learning objectives of this notebook:\n",
@@ -470,8 +470,7 @@
470470
"outputs": [],
471471
"source": [
472472
"y_samples = y.sample(1000)\n",
473-
"print(y_samples)\n",
474-
"y_samples.shape"
473+
"print(y_samples)"
475474
]
476475
},
477476
{

intro.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
# Uncertainty Quantification in Inverse Problems with CUQIpy
22

3-
**Note: this mini-book is under construction**
4-
53
Welcome to the mini-book on "Uncertainty Quantification in Inverse Problems with CUQIpy".
64
This mini-book contains training material on how to use the [CUQIpy](https://github.com/CUQI-DTU/CUQIpy) library for uncertainty quantification in inverse problems. It also covers some of the theoretical background behind the methods implemented in CUQIpy.
75

86
> ⚠️ **Disclaimer:** The code in this book runs without a fixed random seed, so results will vary with each re-compilation and user run. While conclusions should remain consistent, specific values may differ due to the probabilistic nature of Bayesian sampling, which is fundamental when working with uncertainty quantification.
97
10-
11-
12-
13-
148
## Table of contents
159

1610
```{tableofcontents}
@@ -25,4 +19,4 @@ This mini-book contains training material on how to use the [CUQIpy](https://git
2519

2620
- [Chao Zhang](https://github.com/chaozg)
2721

28-
- [Felipe Uribe](https://github.com/furibec)
22+
- [Felipe Uribe](https://github.com/furibec)

0 commit comments

Comments
 (0)