Skip to content

Files

Latest commit

4b4e6e7 · Jan 6, 2025

History

History

runs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 10, 2024
Jan 6, 2025
Nov 23, 2024

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)