OptimizerΒΆ

Class Arguments

Argument

Type

Default Value

actor_component

Parametrizable

actor_name

TStr

monitor_component

Measurable

monitor_name

TStr

Bold arguments are mandatory. For more documentation on the listed arguments refer to the class definition below. If parameters appear in this list but not in the class definition below, please recursively check the linked base classes for the definition of the parameter.

Inheritance Diagram

Inheritance diagram of atomiq.components.optimizers.Optimizer

Example Component Dictionary

   {
    "optimizers_example": {
        "classname": "atomiq.components.optimizers.Optimizer",
        "arguments": {
            "actor_component": "<mandatory parameter (Parametrizable)>",
            "actor_name": "<mandatory parameter (TStr)>",
            "monitor_component": "<mandatory parameter (Measurable)>",
            "monitor_name": "<mandatory parameter (TStr)>"
        }
    }
}

Class Description

class atomiq.components.optimizers.Optimizer(actor_component, actor_name, monitor_component, monitor_name, *args, **kwargs)[source]

Bases: Component

Parameters: