class documentation
class Configurable(etac.Configurable): (source)
Known subclasses: fiftyone.core.runs.BaseRun
Constructor: Configurable(config)
Base class for classes that can be initialized with a Config
instance that configures their behavior.
Configurable
subclasses must obey the following rules:
- Configurable class Foo has an associated Config class FooConfig that is importable from the same namespace as Foo
- Configurable class Foo must be initializable via the syntax Foo(config), where config is a FooConfig instance
Parameters | |
config | a Config |
overridden in
fiftyone.utils.annotations.AnnotationBackend
, fiftyone.utils.eval.detection.DetectionEvaluation
Undocumented