Skip to content

Commit 6979642

Browse files
Update README.md
1 parent 7e81e6c commit 6979642

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Before inference, we can use simulation-based calibration (SBC, https://arxiv.or
5656
```python
5757
fig = trainer.diagnose_sbc_histograms()
5858
```
59-
![SBC](https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_sbc.png?raw=true)
59+
<img src="https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_sbc.png" width=50% height=50%>
6060
Amortized inference on new (real or simulated) data is then easy and fast:
6161
```python
6262
# Simulate 200 new data sets and generate 500 posterior draws per data set
@@ -67,12 +67,12 @@ We can then quickly inspect the parameter recoverability of the model
6767
```python
6868
fig = bf.diagnostics.plot_recovery(posterior_draws, new_sims['parameters'])
6969
```
70-
![Recovery](https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_recovery.png?raw=true)
70+
<img src="https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_recovery.png" width=50% height=50%>
7171
or look at single posteriors in relation to the prior:
7272
```python
7373
fig = bf.diagnostics.plot_posterior_2d(posterior_draws[0], prior=generative_model.prior)
7474
```
75-
![Posterior](https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_posterior.png?raw=true)
75+
<img src="https://github.com/stefanradev93/BayesFlow/blob/Future/img/showcase_posterior.png" width=40% height=40%>
7676

7777
### Further Reading
7878

0 commit comments

Comments
 (0)