Source code for optilab.data_classes.function_metadata

"""
Metadata of objective function.
"""

from dataclasses import dataclass
from typing import Any, Dict


[docs] @dataclass class FunctionMetadata: """ Metadata of objective function. """ name: str "Name of the function." dim: int "Dimensionality of the function." hyperparameters: Dict[str, Any] "Other hyperparameters of the function."