orbit.actions.ConditionalAction

Represents an action that is only taken when a given condition is met.

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).

condition A callable accepting train or eval outputs and returing a bool.
action The action (or optionally sequence of actions) to perform when condition is met.

Methods

__call__

View source

Call self as a function.