Skip to content

Commit bdd535c

Browse files
committed
fix algorithm names and ref links
1 parent 9b3194d commit bdd535c

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

README.md

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ how to run each of these methods
104104

105105
### Neural Posterior Estimation: amortized (NPE) and sequential (SNPE)
106106

107-
* [`SNPE_A`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snpe.snpe_a.SNPE_A)
107+
* [`(S)NPE_A`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.npe.npe_a.NPE_A)
108108
(including amortized single-round `NPE`) from Papamakarios G and Murray I [_Fast
109109
ε-free Inference of Simulation Models with Bayesian Conditional Density
110110
Estimation_](https://proceedings.neurips.cc/paper/2016/hash/6aca97005c68f1206823815f66102863-Abstract.html)
111111
(NeurIPS 2016).
112112

113-
* [`SNPE_C`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snpe.snpe_c.SNPE_C)
113+
* [`(S)NPE_C`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.npe.npe_c.NPE_C)
114114
or `APT` from Greenberg D, Nonnenmacher M, and Macke J [_Automatic Posterior
115115
Transformation for likelihood-free inference_](https://arxiv.org/abs/1905.07488) (ICML
116116
2019).
@@ -119,51 +119,53 @@ how to run each of these methods
119119
and hassle-free simulation-based inference_](https://arxiv.org/abs/2210.04815)
120120
(NeurIPS 2022).
121121

122-
* [`FMPE`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.fmpe.fmpe_base.FMPE)
122+
* [`FMPE`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.fmpe.fmpe.FMPE)
123123
from Wildberger, J., Dax, M., Buchholz, S., Green, S., Macke, J. H., & Schölkopf, B.
124-
[_Flow matching for scalable simulation-based inference_]
125-
(https://proceedings.neurips.cc/paper_files/paper/2023/hash/3663ae53ec078860bb0b9c6606e092a0-Abstract-Conference.html).
124+
[_Flow matching for scalable simulation-based
125+
inference_](https://proceedings.neurips.cc/paper_files/paper/2023/hash/3663ae53ec078860bb0b9c6606e092a0-Abstract-Conference.html).
126126
(NeurIPS 2023).
127127

128-
* [`NPSE`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.npse.npse.NPSE) from
129-
Geffner, T., Papamakarios, G., & Mnih, A. [_Compositional score modeling
130-
for simulation-based inference_]. (ICML 2023)
128+
* [`NPSE`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.npse.npse.NPSE) from
129+
Geffner, T., Papamakarios, G., & Mnih, A. [_Compositional score modeling for
130+
simulation-based inference_](https://proceedings.mlr.press/v202/geffner23a.html).
131+
(ICML 2023)
131132

132133
### Neural Likelihood Estimation: amortized (NLE) and sequential (SNLE)
133134

134-
* [`SNLE_A`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snle.snle_a.SNLE_A)
135+
* [`(S)NLE`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nle.nle_a.NLE_A)
135136
or just `SNL` from Papamakarios G, Sterrat DC and Murray I [_Sequential Neural
136137
Likelihood_](https://arxiv.org/abs/1805.07226) (AISTATS 2019).
137138

138139
### Neural Ratio Estimation: amortized (NRE) and sequential (SNRE)
139140

140-
* [`(S)NRE_A`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snre.snre_a.SNRE_A)
141+
* [`(S)NRE_A`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nre.nre_a.NRE_A)
141142
or `AALR` from Hermans J, Begy V, and Louppe G. [_Likelihood-free Inference with
142143
Amortized Approximate Likelihood Ratios_](https://arxiv.org/abs/1903.04057) (ICML
143144
2020).
144145

145-
* [`(S)NRE_B`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snre.snre_b.SNRE_B)
146+
* [`(S)NRE_B`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nre.nre_b.NRE_B)
146147
or `SRE` from Durkan C, Murray I, and Papamakarios G. [_On Contrastive Learning for
147148
Likelihood-free Inference_](https://arxiv.org/abs/2002.03712) (ICML 2020).
148149

149-
* [`BNRE`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snre.bnre.BNRE) from
150+
* [`(S)NRE_C`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nre.nre_c.NRE_C)
151+
or `NRE-C` from Miller BK, Weniger C, Forré P. [_Contrastive Neural Ratio
152+
Estimation_](https://arxiv.org/abs/2210.06170) (NeurIPS 2022).
153+
154+
* [`BNRE`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nre.bnre.BNRE) from
150155
Delaunoy A, Hermans J, Rozet F, Wehenkel A, and Louppe G. [_Towards Reliable
151156
Simulation-Based Inference with Balanced Neural Ratio
152157
Estimation_](https://arxiv.org/abs/2208.13624) (NeurIPS 2022).
153158

154-
* [`(S)NRE_C`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snre.snre_c.SNRE_C)
155-
or `NRE-C` from Miller BK, Weniger C, Forré P. [_Contrastive Neural Ratio
156-
Estimation_](https://arxiv.org/abs/2210.06170) (NeurIPS 2022).
157159

158160
### Neural Variational Inference, amortized (NVI) and sequential (SNVI)
159161

160-
* [`SNVI`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.posteriors.vi_posterior)
162+
* [`SNVI`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.posteriors.vi_posterior)
161163
from Glöckler M, Deistler M, Macke J, [_Variational methods for simulation-based
162164
inference_](https://openreview.net/forum?id=kZ0UYdhqkNY) (ICLR 2022).
163165

164166
### Mixed Neural Likelihood Estimation (MNLE)
165167

166-
* [`MNLE`](https://sbi-dev.github.io/sbi/reference/#sbi.inference.snle.mnle.MNLE) from
168+
* [`MNLE`](https://sbi-dev.github.io/sbi/latest/reference/#sbi.inference.trainers.nle.mnle.MNLE) from
167169
Boelts J, Lueckmann JM, Gao R, Macke J, [_Flexible and efficient simulation-based
168170
inference for models of decision-making_](https://elifesciences.org/articles/77220)
169171
(eLife 2022).
@@ -173,7 +175,7 @@ how to run each of these methods
173175
We welcome any feedback on how `sbi` is working for your inference problems (see
174176
[Discussions](https://github.com/sbi-dev/sbi/discussions)) and are happy to receive bug
175177
reports, pull requests, and other feedback (see
176-
[contribute](http://sbi-dev.github.io/sbi/contribute/)). We wish to maintain a positive
178+
[contribute](https://sbi-dev.github.io/sbi/latest/contribute/)). We wish to maintain a positive
177179
community; please read our [Code of Conduct](CODE_OF_CONDUCT.md).
178180

179181
## Acknowledgments

0 commit comments

Comments
 (0)