orbit.actions.ConditionalAction
Stay organized with collections
Save and categorize content based on your preferences.
Represents an action that is only taken when a given condition is met.
orbit.actions.ConditionalAction(
condition: Condition,
action: Union[controller.Action, Sequence[controller.Action]]
)
This class is itself an Action
(a callable that can be applied to train or
eval outputs), but is intended to make it easier to write modular and reusable
conditions by decoupling "when" something whappens (the condition) from "what"
happens (the action).
Args |
condition
|
A callable accepting train or eval outputs and returning
a bool.
|
action
|
The action (or optionally sequence of actions) to perform when
condition is met.
|
Methods
__call__
View source
__call__(
output: runner.Output
) -> None
Call self as a function.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2025-04-18 UTC.
[null,null,["Last updated 2025-04-18 UTC."],[],[],null,["# orbit.actions.ConditionalAction\n\n\u003cbr /\u003e\n\n|------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/models/blob/v2.19.1/orbit/actions/conditional_action.py#L33-L61) |\n\nRepresents an action that is only taken when a given condition is met. \n\n orbit.actions.ConditionalAction(\n condition: Condition,\n action: Union[controller.Action, Sequence[controller.Action]]\n )\n\nThis class is itself an `Action` (a callable that can be applied to train or\neval outputs), but is intended to make it easier to write modular and reusable\nconditions by decoupling \"when\" something whappens (the condition) from \"what\"\nhappens (the action).\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|-------------|------------------------------------------------------------------------------------|\n| `condition` | A callable accepting train or eval outputs and returning a bool. |\n| `action` | The action (or optionally sequence of actions) to perform when `condition` is met. |\n\n\u003cbr /\u003e\n\nMethods\n-------\n\n### `__call__`\n\n[View source](https://github.com/tensorflow/models/blob/v2.19.1/orbit/actions/conditional_action.py#L58-L61) \n\n __call__(\n output: runner.Output\n ) -\u003e None\n\nCall self as a function."]]