Automation events and scopes

This feature requires a Pro or Enterprise plan.

An automation can start when a specific event occurs within a project or registry. This page describes the events that can trigger an automation within each scope.

Learn more about automations in the Automations overview or Create an automation.

Registry

This section describes the scopes and events for an automation in a Registry.

  1. Navigate to the Registry App at https://wandb.ai/registry/.
  2. Click the name of a registry, then view and create automations in the Automations tab.

Learn more about creating automations.

Scopes

You can create a Registry automation at these scopes:

  • Registry level: The automation watches for the event taking place on any collection within a specific registry, including collections added in the future.
  • Collection level: A single collection in a specific registry.

Events

A Registry automation can watch for these events:

  • Linking a new artifact to a collection: Test and validate new models or datasets when they are added to a registry.
  • Adding a new alias to a version of an artifact: Trigger a specific step of your workflow when a new artifact version has a specific alias applied. For example, deploy a model when it has the production alias applied.

Project

This section describes the scopes and events for an automation in a project.

  1. Navigate to your W&B project on the W&B App at https://wandb.ai/<team>/<project-name>.
  2. View and create automations in the Automations tab.

Learn more about creating automations.

Scopes

You can create a project automation at these scopes:

  • Project level: The automation watches for the event taking place on any collection in the project.
  • Collection level: All collections in the project that match the filter you specify.

Artifact events

This section describes the events related to an artifact that can trigger an automation.

  • Linking a new artifact: Test and validate new models or datasets automatically.
  • Creating a new version of an artifact: Apply recurring actions to each version of an artifact. For example, start a training job when a new dataset artifact version is created.
  • Adding a new alias to a version of an artifact: Trigger a specific step of your workflow when a new artifact version in a project or collection has a specific label or alias applied. For example, run a series of downstream processing steps when an artifact has the test-set-quality-check alias applied.

Run metrics events

For a given run, an automation can start when these events occur:

  • Run metrics threshold met: Trigger a workflow when for a given metric, a single logged value or the average logged values meets the threshold you specify.
  • Run metrics change threshold met: Trigger a workflow when the average logged values of a run change by the absolute or relative threshold you specify.

To set up a run metric automation, you configure how to compare the metric’s value with the threshold you specify. Your choices depend on the event type and on any filters you specify.

Metric names

You can create an automation triggered by:

  • A metric in a run’s history.
  • A system metric such as cpu, which tracks the percentage of CPU utilization. W&B logs system metrics automatically every 15 seconds.

Threshold

For Run metrics threshold met events, you configure:

  1. The number of logged values to average across (defaults to 5).
  2. How to compare the values with the threshold.

For example, trigger an automation when accuracy exceeds .6.

Change threshold

For Run metrics change threshold met events, the automation uses two “windows” of values to check whether to start:

  • The current window averages the 10 most recent values by default.
  • The prior window averages the 50 most recent logged values prior to the current window.

The windows are consecutive and do not overlap.

To create the automation, you configure:

  1. The current window (defaults to 10).
  2. The prior window (defaults to 50).
  3. Whether to evaluate the values as relative or absolute (defaults to Relative).
  4. How to compare the values with the threshold:
    • Increases by at least
    • Decreases by at least
    • Increases or decreases by at least

Run filters

This section describes how the automation selects runs to evaluate.

  • By default, any run in the project triggers the animation when the event occurs. To consider only specific runs, specify a run filter.
  • Each run is considered individually and can potentially trigger the automation.
  • Each run’s values are put into a separate window and compared to the threshold separately.
  • In a 24 hour period, a particular automation can fire at most once per run.

Next steps