FiftyOne

1.14.1 · active · verified Wed Apr 15

FiftyOne is an open-source tool for building high-quality datasets and computer vision models. It enables users to visualize datasets, analyze models, and improve data quality more efficiently. The library is currently at version 1.14.1 and maintains a rapid release cadence with frequent minor updates.

Warnings

Install

Imports

Quickstart

This quickstart downloads a sample dataset from the FiftyOne Dataset Zoo and launches the interactive FiftyOne App to visualize and explore the data. If running in a script, `session.wait()` is necessary to keep the App open until manually closed.

import fiftyone as fo
import fiftyone.zoo as foz

# Load a small dataset from the FiftyOne Dataset Zoo
dataset = foz.load_zoo_dataset("quickstart")

# Launch the FiftyOne App to visualize the dataset
session = fo.launch_app(dataset)

# For scripts, use session.wait() to block execution until the App is closed
# session.wait()

view raw JSON →