Runs Plugin#

A plugin that contains utilities for working with custom runs.

Installation#

fiftyone plugins download \
    https://github.com/voxel51/fiftyone-plugins \
    --plugin-names @voxel51/runs

Refer to the main README for more information about managing downloaded plugins and developing plugins locally.

Usage#

  1. Launch the App:

import fiftyone as fo
import fiftyone.zoo as foz

dataset = foz.load_zoo_dataset("quickstart")
session = fo.launch_app(dataset)
  1. Press ` or click the Browse operations action to open the Operators list

  2. Select any of the operators listed below!

Operators#

get_run_info#

You can use this operator to get information about runs.

This operator is essentially a wrapper around get_run_info():

info = dataset_or_view.get_run_info(run_key)
print(info)

load_run_view#

You can use this operator to load the view on which a run was performed.

This operator is essentially a wrapper around load_run_view():

view = dataset.load_run_view(run_key)

rename_run#

You can use this operator to rename runs.

This operator is essentially a wrapper around rename_run():

dataset_or_view.rename_run_run(run_key, new_run_key)

delete_run#

You can use this operator to delete runs.

This operator is essentially a wrapper around delete_run():

dataset_or_view.delete_run(run_key)