Quickstart#

A small dataset with ground truth bounding boxes and predictions.

The dataset consists of 200 images from the validation split of COCO-2017, with model predictions generated by an out-of-the-box Faster R-CNN model from torchvision.models.

Details

  • Dataset name: quickstart

  • Dataset size: 23.40 MB

  • Dataset license: CC-BY-4.0

  • Tags: image, quickstart

  • Supported splits: N/A

  • ZooDataset class: QuickstartDataset

Example usage

1import fiftyone as fo
2import fiftyone.zoo as foz
3
4dataset = foz.load_zoo_dataset("quickstart")
5
6session = fo.launch_app(dataset)
quickstart