class documentation
class OperatorConfig(object): (source)
Known subclasses: fiftyone.operators.evaluation_metric.EvaluationMetricConfig
, fiftyone.operators.panel.PanelConfig
Constructor: OperatorConfig(name, label, description, dynamic, ...)
A configuration for an operator.
Parameters | |
name | the name of the operator |
label | a label for the operator |
description | a description of the operator |
dynamic | whether the operator inputs and outputs should be resolved when the input/output changes |
execute | whether the operator should be executed as a generator |
unlisted | whether the operator should be hidden from the Operator Browser |
on | whether the operator should be executed on startup |
on | whether the operator should be executed on opening a dataset |
disable | whether the operator built-in schema validation should be disabled |
icon | icon to show for the operator in the Operator Browser |
light | icon to show for the operator in the Operator Browser when the App is in the light mode |
dark | icon to show for the operator in the Operator Browser when the App is in the dark mode |
allow | whether the operator should allow immediate execution |
allow | whether the operator should allow delegated execution |
default | whether to default to delegated execution, if allowed |
resolve | whether to resolve execution options dynamically when inputs change. By default, this behavior will match the dynamic setting |
Method | __init__ |
Undocumented |
Method | to |
Undocumented |
Instance Variable | allow |
Undocumented |
Instance Variable | allow |
Undocumented |
Instance Variable | dark |
Undocumented |
Instance Variable | default |
Undocumented |
Instance Variable | delegation |
Undocumented |
Instance Variable | description |
Undocumented |
Instance Variable | disable |
Undocumented |
Instance Variable | dynamic |
Undocumented |
Instance Variable | execute |
Undocumented |
Instance Variable | icon |
Undocumented |
Instance Variable | kwargs |
Undocumented |
Instance Variable | label |
Undocumented |
Instance Variable | light |
Undocumented |
Instance Variable | name |
Undocumented |
Instance Variable | on |
Undocumented |
Instance Variable | on |
Undocumented |
Instance Variable | resolve |
Undocumented |
Instance Variable | unlisted |
Undocumented |
def __init__(self, name, label=None, description=None, dynamic=False, execute_as_generator=False, unlisted=False, on_startup=False, on_dataset_open=False, disable_schema_validation=False, delegation_target=None, icon=None, light_icon=None, dark_icon=None, allow_immediate_execution=True, allow_delegated_execution=False, default_choice_to_delegated=False, resolve_execution_options_on_change=None, **kwargs):
(source)
¶
overridden in
fiftyone.operators.evaluation_metric.EvaluationMetricConfig
, fiftyone.operators.panel.PanelConfig
Undocumented
overridden in
fiftyone.operators.evaluation_metric.EvaluationMetricConfig
, fiftyone.operators.panel.PanelConfig
Undocumented