RosenbrockFunction#
- class RosenbrockFunction(n_dim: int = 2, A: float = 1, B: float = 100, objective: str = 'minimize', modifiers: List[BaseModifier] | None = None, memory: bool = False, collect_data: bool = True, callbacks: Callable | List[Callable] | None = None, catch_errors: Dict[type, float] | None = None)[source]#
Rosenbrock N-dimensional test function.
Also known as the “banana function” due to the shape of its contour lines. It is a classic optimization test problem with a narrow, curved valley leading to the global minimum.
The function is defined as:
\[f(\vec{x}) = \sum_{i=1}^{n-1} [B(x_{i+1} - x_i^2)^2 + (A - x_i)^2]\]where \(A = 1\) and \(B = 100\) by default.
The global minimum is \(f(\vec{1}) = 0\).
- Parameters:
n_dim (int) – Number of dimensions.
A (float, default=1) – First coefficient.
B (float, default=100) – Second coefficient controlling the steepness of the valley.
objective (str, default="minimize") – Either “minimize” or “maximize”.
modifiers (list of BaseModifier, optional) – List of modifiers to apply to function evaluations.
References
Examples
>>> from surfaces.test_functions import RosenbrockFunction >>> func = RosenbrockFunction(n_dim=2) >>> result = func({"x0": 1.0, "x1": 1.0}) >>> abs(result) < 1e-10 True
- __call__(params: Dict[str, Any] | ndarray | list | tuple | None = None, *, fidelity: float | None = None, **kwargs)[source]#
Evaluate the objective function.
- Args:
params: Parameter values as dict, array, list, or tuple fidelity: Optional fidelity level in (0, 1]. Controls evaluation
cost vs accuracy trade-off for multi-fidelity optimization (e.g. Hyperband, BOHB). None means full-fidelity evaluation. Only supported by ML test functions; ignored by algebraic functions.
**kwargs: Parameters as keyword arguments (only with dict input)
- Returns:
The objective function value
- batch(X: ArrayLike) ArrayLike[source]#
Evaluate multiple parameter sets in a single call.
- Parameters:
X (ArrayLike) – 2D array of shape (n_points, n_dim) where each row is a parameter set.
- Returns:
1D array of shape (n_points,) with evaluation results.
- Return type:
ArrayLike
- Raises:
NotImplementedError – If the function does not implement _batch_objective.
ValueError – If X has wrong number of dimensions or wrong n_dim.
- pure(params: Dict[str, Any] | ndarray | list | tuple | None = None, *, fidelity: float | None = None, **kwargs)[source]#
Evaluate the function without modifiers.
Returns the true (deterministic) function value, bypassing any configured modifiers. Does not update search_data, n_evaluations, or callbacks. Ignores memory caching.
- Parameters:
- Returns:
The true function value without modifiers, with direction applied.
- Return type:
float or np.ndarray