IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Base class for algorithm builder configuration. More...
Public Member Functions | |
def | __init__ (self, init_dict=None, key_list=None, new_allowed=True) |
![]() | |
def | __setattr__ (self, name, value) |
def | dump (self, **kwargs) |
Base class for algorithm builder configuration.
Many classes require an AlgConfig instance for specifying parameters and nested build configurations. However, some punt a lot of the creation to the external calling space. In that case, what will be passed is some type of build structure with the necessary contained instances. This class play the role of collecting the necessary ingredients, except for the actual parameter configurations. These should be passed separately to the class' static builder method.
def __init__ | ( | self, | |
init_dict = None , |
|||
key_list = None , |
|||
new_allowed = True |
|||
) |
Reimplemented from AlgConfig.
Reimplemented in BuildCfgMonitor, and BuildCfgProgress.