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 2024-11-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-01 UTC."],[],[]]