Hi,
If I have some function that takes an array params [n,m], and i want to use it with the AIES kernel and MCMC, say with 20 chains, what shape should the inputs be?
aies = AIES(some_function,moves={AIES.DEMove(): 0.5, AIES.StretchMove(): 0.5})
mcmc = MCMC(aies,
num_warmup=1000,
num_samples=2000,
num_chains=num_chains,
chain_method="vectorized")
mcmc.run(
jax.random.PRNGKey(0),
params=initial_params)
i.e. what shape should initial_params be? [n,m] or something like [num_chains,n,m]
The docs dont seem to make it clear.
Thanks!