An introduction to Rejection ABC
The Uniform Kernel: Rejection ABC
If we choose the ABC kernel to be a uniform kernel then we obtain Rejection-ABC. A uniform kernel is essentially an indicator function determining whether the true observation
In the expression above
To sample

Essentially the choice of an indicator function as our kernel implicitly defines an algorithm that either rejects or accepts samples. To see this, notice that this is one of those cases where in practice we can only evaluate an unnormalized kernel
Of course, this is extremely inefficient in high dimensions as the probability of “hitting the data”
As a side note, the posterior distribution targeted by Rejection Sampling is sometimes denoted
Two Moon Example
Again, we come back to the Two Moon example. Here is an example of how we could code a rejection sampler. Notice how I have set a maximum number of iterations to avoid the loop running indefinitely.
def rejection_abc(prior, simulator, distance, epsilon, N, y_star, maxiter=50):
"""General Rejection ABC Algorithm."""
samples = np.zeros((N, len(y_star))) # Accepted samples
n = 0 # Number of accepted samples so far
i = 0 # Number of iterations so far
while (n < N) and (i < maxiter):
# Sample from the prior
theta_n = prior()
# Run the simulator with new parameter
y_n = simulator(theta_n)
# Accept only if data is within epsilon distance from ystar
if distance(y_n, y_star) <= epsilon:
samples[n] = theta_n
n += 1
# Increase iteration count
i += 1
return samples
We can see below how Rejection ABC, imposing a “hard constraint”, gets fewer and fewer samples accepted as our tolerance

Once again, feel free to play around with this example with the following notebook.