MCPcopy Create free account
hub / github.com/LeCAR-Lab/model-based-diffusion / rastrigin

Function rastrigin

mbd/blackbox/mbd_opt.py:39–41  ·  view source on GitHub ↗
(X)

Source from the content-addressed store, hash-verified

37
38
39def rastrigin(X):
40 X = x_min + (x_max - x_min) * (X + 1.0) / 2.0 # map to [-5, 10]
41 return 10.0 * dim + jnp.sum(X**2 - 10.0 * jnp.cos(2.0 * jnp.pi * X), axis=-1)
42
43
44def levy(X):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected