«
class documentation

class Configurable(etac.Configurable): (source)

Known subclasses: fiftyone.core.runs.BaseRun

Constructor: Configurable(config)

View In Hierarchy

Base class for classes that can be initialized with a Config instance that configures their behavior.

Configurable subclasses must obey the following rules:

  1. Configurable class Foo has an associated Config class FooConfig that is importable from the same namespace as Foo
  2. Configurable class Foo must be initializable via the syntax Foo(config), where config is a FooConfig instance
Parameters
configa Config
Method __init__ Undocumented
Instance Variable config Undocumented