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 76c1e1b commit 5e84c89Copy full SHA for 5e84c89
tutorials/16_implemented_methods.ipynb
@@ -187,7 +187,7 @@
187
"from sbi.inference import FMPE\n",
188
"\n",
189
"inference = FMPE(prior)\n",
190
- "# FMPE does support multiple rounds of inference\n",
+ "# FMPE does not support multiple rounds of inference\n",
191
"theta = prior.sample((num_sims,))\n",
192
"x = simulator(theta)\n",
193
"inference.append_simulations(theta, x).train()\n",
@@ -251,6 +251,7 @@
251
"source": [
252
"from sbi.inference import NLE\n",
253
254
+ "torch.manual_seed(42)\n",
255
"inference = NLE(prior)\n",
256
"proposal = prior\n",
257
"for _ in range(num_rounds):\n",
0 commit comments