A plugin that contains utilities for working with custom runs.
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.
- Launch the App:
import fiftyone as fo
import fiftyone.zoo as foz
dataset = foz.load_zoo_dataset("quickstart")
session = fo.launch_app(dataset)
-
Press
`
or click theBrowse operations
action to open the Operators list -
Select any of the operators listed below!
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)
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)
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)
You can use this operator to delete runs.
This operator is essentially a wrapper around delete_run():
dataset_or_view.delete_run(run_key)