Load dataset in FiftyOne
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fiftyone.zoo as foz | |
# Load COCO validation split | |
dataset = foz.load_zoo_dataset("coco-2017", split="validation") | |
classes = dataset.info["classes"] | |
# Explore the dataset in the App | |
session = fo.Session(dataset=dataset) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment