You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contents/metropolis/metropolis.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ To understand how this works, let's call $$x_t$$ the position before the step, a
120
120
We then define the probability of __accepting the step__ to be
121
121
122
122
$$
123
-
A = \min \left(\frac{f(x')}{f(x_t)}, 1\right)
123
+
A = \min \left(\frac{f(x')}{f(x_t)}, 1\right).
124
124
$$
125
125
126
126
The $$\min$$ function above implies that $$A=1$$ if $$f(x') \gt f(x_t)$$, which means that the move will __always__ be accepted if it is toward a higher probability position.
@@ -148,12 +148,12 @@ And if global sampling is the goal, the process of exploration could be sped up
148
148
149
149
Let our target distribution be
150
150
$$
151
-
P(x) = \frac{f(x)}{\int_{-10}^{10} f(x)}
151
+
P(x) = \frac{f(x)}{\int_{-10}^{10} f(x)},
152
152
$$
153
153
154
154
where $$f(x)$$ is the function we know and is given by
0 commit comments